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
RE: Cannot insert a null into column (speeddial.label). (UCM 7)
Message Boards Home
Recent Posts
Statistics
Answer
(
Unmark
)
Mark as an Answer
« Back to Administration XML Questions
RE: Cannot insert a null into column (speeddial.label). (UCM 7)
Threads [
Previous
|
Next
]
Rusheel Jain
Posts:
0
Join Date:
7/24/12
Recent Posts
Cannot insert a null into column (speeddial.label). (UCM 7)
Answer
11/7/12 1:12 PM
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Hi
I am working on version 7
I followed the other post related to same error on CUCM 8.0 but I am still getting the same error.
It shows error when I am not giving <label> tag but infact when I remove <dirn> tag then it shows no error but the changes are not reflected in CUCM web portal
here is what i have written:
string soap = "<SOAP-ENV:Envelope xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\" ";
soap += "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">";
soap += "<SOAP-ENV:Body>";
soap += "<axl:updatePhone xmlns:axl=\"http://www.cisco.com/AXL/API/7.0\">";
soap += "<name>";
soap += "SEP3212";
soap += "</name>";
soap += "<speeddials>";
soap += "<speeddial>";
soap += "<dirn>";
soap += "3212";
soap += "</dirn>";
soap += "<label>";
soap += "rush";
soap += "</label>";
soap += "<asciiLabel>";
soap += "7";
soap += "</asciiLabel>";
soap += "</speeddial>";
soap += "</speeddials>";
soap += "</axl:updatePhone>";
soap += "</SOAP-ENV:Body>";
soap += "</SOAP-ENV:Envelope>";
Console.Write("getting version");
string version = SoapVersion(soap);
Console.Write(version);
Any suggestions will be quite helpful
Thanks
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Florian Kroessbacher
Posts:
32
Join Date:
2/27/09
Recent Posts
RE: Cannot insert a null into column (speeddial.label). (UCM 7)
Answer
11/7/12 6:39 PM as a reply to Rusheel Jain.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Hy Rusheel,
i think the index (positive integer) is missing, so the cucm didn't know where to insert the speedial
cheers Floh
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top