Hello, I am trying to use SOAP to modify call forward all in a DN. I am not sure if the scheme I have is the correct:
Win2003 with IIS
CCM 6.1
I have created an example webpage with the follwing code:
POST: 8443/axl/
Host: 10.200.0.7:8443
Accept: text/*
Authorization: Basic bGFycnk6Y3VybHkgYW5kIG1vZQ==
Content-type: text/xml
SOAPAction: "CUCM

B ver=6.1"
Content-length: 613
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<axl:getPhone xmlns:axl="http://www.cisco.com/AXL/1.0" xsi:schemaLocation="http://www.cisco.com/AXL/1.0 http://ccmserver/schema/axlsoap.xsd" sequence="1234">
<phoneName>SEP000000000001</phoneName>
</axl:getPhone>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
I have saved it as .asp, .soap, .xml, .html... and it doesn't work, we receive an error in the first line. What is it wrong?
Thanks in advance.
Regards.