Hi,
I'm new in AXL, xml, etc. so please forgive me
I can do LDAP synchronization using cURL.
curl -k -u user:pass -H "Content-type: text/xml" -d @request.xml https://172.17.63.21:8443/axl/
request:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.5">
<soapenv:Header/>
<soapenv:Body>
<ns:doLdapSync>
<name>MRlab</name>
<sync>true</sync>
</ns:doLdapSync>
</soapenv:Body>
</soapenv:Envelope>
This is simple but now want to check synchonization status. I tried this
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/11.5">
<soapenv:Header/>
<soapenv:Body>
<ns:GetLdapSyncStatusRes>
<return></return>
</ns:GetLdapSyncStatusRes>
</soapenv:Body>
</soapenv:Envelope>
but I'm getting error
<faultcode>axis2ns20:Client</faultcode><faultstring>The endpoint reference (EPR) for the Operation not found is https://172.17.63.21:8443/axl/services/AXLAPIService and the WSA Action = CUCM:DB ver=11.5 GetLdapSyncStatusRes</faultstring><detail /></soapenv:Fault>
actually I don't know how to properly use GetLdapSyncStatusRes. Can someone help me?