Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

#

Requirement title

Functionality 

ImportanceNotes
1

D8XX_BLF-XML_FR-1

On D8xx IP phones, any PFK (programmable function key - physical or virtual) can be assigned to a function, which allows monitoring state changes of the configured SIP extension on another IP phone. This function shall be called "BLF-XML". The following state changes shall be visualized:

  • monitored SIP extension is in idle mode => idle
  • monitored SIP extension seizes a line => busy
  • monitored SIP extension receives an incoming call => ringing
  • monitored SIP extension places an outgoing call => busy
  • monitored SIP extension dials or accepts an incoming call => busy

Must Have

This means, that the D8xx phone acts as a User Agent Client (UAC) and the IP phone of the monitored extension acts as User Agent Server (UAS).

2

D8XX_BLF-XML_FR-2

On Snom IP phones acting as UAS, any SIP extension having an active subscription of its state changes, shall sent a notification SIP message (NOTIFY) to the UAC, at least when one of the following state changes occur:

  • from any state => idle
  • from any state => trying
  • from any state => ringing early
  • from any state => busy

Must Have

Fully implemented

3D8XX_BLF-XML_FR-3The assignment shall be configured either manually via web user interface (WUI) and/or phone user interface (PUI), and automatically via auto-provisioning (HTTP/TFTP setting server), SRAPS, or remote management (TR-069).

Must Have

Fully implemented
4D8XX_BLF-XML_FR-1-1

On D8xx series, during an active subscription, state changes of the monitored SIP extension shall be visualized on both, PFK LED and PFK label.

Must Have

Fully implemented

5D8XX_BLF-XML_FR-1-1-1

The PFK LED behaviour and colour shall be according to this table

stateidleringingbusy
LED behaviouroffblinkingon
LED colour-redred


Must Have

Fully implemented

6D8XX_BLF-XML_FR-1-1-2

The PFK label shall be composed of 3 areas:

Label area

Screenshot

(A) icon area

(B) name area

(C) state area


Must Have

Fully implemented

7D8XX_BLF-XML_FR-1-1-2-1

The label icon area (A) shall contain the following distinguishable graphical symbol, representing the state

Stateidleringingbusy
Descriptionperson with a handsetperson with a handset plus an arrow (pointing towards the handset)person with a handset and 2 sound waves (heading away from the handset)
Graphical symbol
Idle
Ringing
Busy
Colourwhiteredred


Must Have

Fully implemented

8D8XX_BLF-XML_FR-1-1-2-2

The label name area (B) shall contain the following text representing the display name or number (configurable) of the monitored / calling party

stateidleringingbusy
rolesMonitored partyCalling party > monitored partyCalling party <> monitored party
text101 or Alex102 > 101 or
Alice > Alex
102 <> 101 or
Alice <> Alex
text colourwhitewhitewhite


Must Have

Partly implemented

9D8XX_BLF-XML_FR-1-1-2-3

The label state area (C) shall contain the following text representing the state

stateidleringingbusy
textidleringingbusy
colourwhitewhitewhite


Must Have

Fully implemented

...

User interaction
Protocol referenceDesign reference
UASUACStateUASUACFigmaScreenshot
does nothingdoes nothingIdle

Figma requirement (702 "idle")

seizes a linedoes nothingTrying


Code Block
languagexml
titleNOTIFY
linenumberstrue
collapsetrue
NOTIFY
...
<?xml version="1.0"?>
<dialog-info
	xmlns="urn:ietf:params:xml:ns:dialog-info"
	version="12"
	state="full"
	entity="sip:101@...">
	<dialog id="..." >
		<state>trying</state>
	</dialog>
</dialog-info>





hangs updoes nothingTerminated


Code Block
languagexml
titleNOTIFY
linenumberstrue
collapsetrue
NOTIFY
...
<?xml version="1.0"?>
<dialog-info
	xmlns="urn:ietf:params:xml:ns:dialog-info"
	version="124"
	state="full"
	entity="sip:101@192.168.245.1">
	<dialog id="0204e48c15abcbfc72bfc6d57ad7d36e"
		direction='initiator'
		call-id='f6bb00647f9d-tq2si6sz97bz'
		local-tag=""
		remote-tag="">
		<state>terminated</state>
		<local>
			<identity display="B">sip:101@...</identity>
			<target uri="sip:101@...;line=caioqij3">
				<param pname="x-line-id" pval="0" />
			</target>
		<state>trying<</state>local>
	</dialog>
</dialog-info>





incoming calldoes nothingEarly


Code Block
languagexml
titleNOTIFY
linenumberstrue
collapsetrue
NOTIFY
...
<?xml version="1.0"?>
<dialog-info
	xmlns="urn:ietf:params:xml:ns:dialog-info"
	version="20"
	state="full" entity="...">
	<dialog
		id="..."
		direction='recipient'
		call-id='...'
		local-tag="..."
		remote-tag="...">
		<state>early</state>
		<local>
			<identity display="B">
				sip:101@...
			</identity>
			<target uri="sip:101@...;line=...">
				<param pname="x-line-id" pval="0" />
			</target>
		</local>
		<remote>
			<identity display="C">
				sip:102@...
			</identity>
			<target uri="sip:102@..."/>
		</remote>
	</dialog>
</dialog-info>















































...