« Back to Administration XML Questions

Need to get The PilotPoint members and Update them after

Combination View Flat View Tree View
Threads [ Previous | Next ]
Here is what I have so far:

NameAndGUIDRequest pilotPointReq = new NameAndGUIDRequest();
pilotPointReq.Item = "2001";
pilotPointReq.ItemElementName = ItemChoiceType61.uuid;
pilotPointReq.sequence = 2001;

GetPilotPointRes pilotPointRes = new GetPilotPointRes();
pilotPointRes = axl.getPilotPoint(pilotPointReq);

So far this return nothing. Is there something I'm missing out??

In order to really troubleshoot, will need to look at the actual XML request and response objects as they are sent over the wire.

Two best ways to do this are via the AXL logs on CUCM (accessible via RTMT tool) or via the SOAP Monitor tool (see the AXL API developer guide.)

Specific how-to usage/troubleshooting of native code stubs compiled from WSDL will be outside the scope of what Cisco can support, though perhaps another user can provide some input.

Here is my XML query for my pilotpoint

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<getPilotPoint xmlns="http://www.cisco.com/AXL/API/6.1">
<uuid xmlns="">2001</uuid>
</getPilotPoint>
</soap:Body>
</soap:Envelope>

Thank you for your help