Hi
We have AddDevice( Phone) using AXL Web service reference of UCCE 7.1. It was working fine with UCCE 9.x version. But now we have upgraded UCCE 11.5 and same code is failing with ""System.Net.WebException: The request failed with HTTP status 599:"
Can one of you please let us know is 11.5 CUCM workes with UCCE 7.1 AXL reference. or do i need to update web proxy with 11.5?
GetRoutePartitionRes routePartitionRes = _axlapiService.getRoutePartition(new GetRoutePartitionReq
{
Item = deviceProfile.CallManagerRoutePartition,
ItemElementName = ItemChoiceType52.partitionName
});
Service Reference.
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("CUCM:DB ver=7.1 getRoutePartition", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
[return: System.Xml.Serialization.XmlElementAttribute("getRoutePartitionResponse", Namespace="http://www.cisco.com/AXL/API/7.1")]
public GetRoutePartitionRes getRoutePartition([System.Xml.Serialization.XmlElementAttribute("getRoutePartition", Namespace="http://www.cisco.com/AXL/API/7.1")] GetRoutePartitionReq getRoutePartition1) {
object[] results = this.Invoke("getRoutePartition", new object[] {
getRoutePartition1});
return ((GetRoutePartitionRes)(results[0]));
}