« Back to Technical Questions

What are the meanings of the elements in ExtMapStatus

Combination View Flat View Tree View
Threads [ Previous | Next ]
The Javadoc definition for ExtMapStatus states what I have pasted below. Can someone tell me what the definitions are its elements and/or where I can find the documentation for them? I have tried the AXL docs, but it's not defined there as far as I can tell.
Thanks.
 

Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.

<pre> <complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{cisco_cme_xml_namespace}LineId"/>
<element ref="{cisco_cme_xml_namespace}ExtId"/>
<element ref="{cisco_cme_xml_namespace}ExtNumber"/>
<element ref="{cisco_cme_xml_namespace}ExtStatus" minOccurs="0"/>
<element ref="{cisco_cme_xml_namespace}LineState"/>
</sequence>
</restriction>
</complexContent>
</complexType>
</pre>

This was inherited from Call Manager¿s AXL schema.
Basically it's telling the extensions directory number and status on a phone.
You can find the complete Call Manager AXL schema set here:
http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_programming_reference_guides_list.html
Thanks,

Any possibility of being more specific? I have looked through the AXL documentation (various versions) and could not find these elements at all.

Specifically, I am trying to understand:
1) the difference between the LineID and the ExtID.
2) what are the possible values of ExtStatus?
3) the difference between ExtStatus and LineState
4) what are the possible values of LineState?

Thanks

My suggestion is to post your last questions on CUCM AXL forum

http://developer.cisco.com/web/axl/forums

Thanks

Hi christopher,

i think below answers might help you to understand better

1) the difference between the LineID and the ExtID.

lineID is line button number given in ephone (example: button 1:1 2:2)
extID is ephone-dn number (example: ephone-dn 3 )

2) what are the possible values of ExtStatus?

true,false

3) the difference between ExtStatus and LineState

extstatus is to get ext is up or not and linestate is line button status

4) what are the possible values of LineState?

idle,inuse

Thanks,
Raghavendra

Perfect. Thank you.