Rusheel Jain | Hi all I wanted to apply MOH using .net code (axl api). The changes are reflecting on CUCM page but how to save and apply these configurations through code as these changes were not yet reflected on IP communicator. As of now I am forced to manually click on "save" and "apply config" buttons but I wanted to do them through .net code / axl api This was the soap request used: 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 += "<userHoldMOHAudioSourceId>"; soap += "1"; soap += "</userHoldMOHAudioSourceId>"; soap += "</axl:updatePhone>"; soap += "</SOAP-ENV:Body>"; soap += "</SOAP-ENV:Envelope>"; Thanks |
| Please sign in to flag this as inappropriate. |