Log In
Technologies
Join the Network
Member Services
Events & Community
AXL Developer
Administrative XML
What is Administrative XML?
AXL Versioning
Develop and Test
Get Started
Documentation
Latest Version
Previous Versions
Operations By Release
Product Related Documentation
Build a Development Lab
Learn
Sample Apps
How To
AXL Developer Cookbook
Community and Support
Forums
Blogs
CDN Membership
Open a Support Case
Report Site Problems
FAQs
Collaboration Developer Sites
Collaboration Hub
Jabber Developer
WebEx Web Conferencing Developer
WebEx Social Developer
Voice and UC Developer
Voice and UC PAWS Developer
Contact Center Developer
Breadcrumbs
Community and Support
Forums
Administration XML Questions
updatePhoneReqLines
Message Boards Home
Recent Posts
Statistics
Answer
(
Unmark
)
Mark as an Answer
« Back to Administration XML Questions
updatePhoneReqLines
Threads [
Previous
|
Next
]
Ehren Koler
Posts:
2
Join Date:
7/31/12
Recent Posts
updatePhoneReqLines
Answer
2/8/13 7:14 PM
Mark as an Answer
Submit
Reply with Quote
Quick Reply
I have seen this object referred to in a few different posts but I am not able to find it in version 7 of the wsdl i used for my Java project.
Does anyone know with what version this object became available? I have been able to apply the getPhone object to return the line array and then using Iteration to set the device specific line changes to display and label but I have not be successul in applying the changes via updatePhone.
Disclaimer: I am newer to Java and the AXL API but have been fairly successful up to this point.
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Ehren Koler
Posts:
2
Join Date:
7/31/12
Recent Posts
RE: updatePhoneReqLines
Answer
2/20/13 7:09 PM as a reply to Ehren Koler.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
I initially found reference to the updatePhoneReqLines items in the following thread.
http://developer.cisco.com/web/axl/forums/-/message_boards/view_message/2192224
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
David Staudt
Posts:
553
Join Date:
6/4/08
Recent Posts
RE: updatePhoneReqLines
Answer
2/20/13 10:56 PM as a reply to Ehren Koler.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
From an XML perspective, getPhone provides a <result> that has <device>/<lines> list:
...
<return>
<device ctiid="41" uuid="{0BD09152-AEAE-4173-4ABB-B7310F47DD36}">
<name>SEP00215ACAAAAA</name>
<description>SEP00215ACAAAAA</description>
<product>Cisco 6941</product>
...
<associatedPC/>
<lines>
<line index="1" uuid="{3EABB7BB-7A42-64E6-3C50-622EF0A9C3F1}">
<label>(114)</label>
<asciiLabel>(114)</asciiLabel>
<display>(114)</display>
...
You can then use this structure in <updatePhone>/<lines>:
<ns:updatePhone sequence="1">
<name>SEP00215ACAAAAA</name>
<lines>
<line index="1" uuid="{3EABB7BB-7A42-64E6-3C50-622EF0A9C3F1}">
<label>newlabel</label>
<asciiLabel>(114)</asciiLabel>
<display>(114)</display>
...
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top