I have been working on this for a while now. I am trying to have CUCM6 push its trace files to an external SFTP server. I tried to mirror everying from RTMT but I still can not get a response to my SOAP requests. The following is my SOAP request:
<soapenv:Envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:soap="
<soapenv:Header/>
<soapenv:Body>
<soap:SelectLogFiles soapenv:encodingStyle="
<FileSelectionCriteria xsi:type="log:SchemaFileSelectionCriteria" xmlns:log="
<ServiceLogs xsi:type="log:ArrayOfString">
<!--Zero or more repetitions:-->
<item xsi:type="xsd:string">Cisco CallManager</item>
</ServiceLogs>
<SystemLogs xsi:type="log:ArrayOfString">
<!--Zero or more repetitions:-->
<item xsi:type="xsd:string">Cisco CDP</item>
</SystemLogs>
<SearchStr xsi:type="xsd:string">?</SearchStr>
<Frequency xsi:type="log:Frequency">OnDemand</Frequency>
<JobType xsi:type="log:JobType">PushtoSFTPServer</JobType>
<ToDate xsi:type="xsd:string">?</ToDate>
<FromDate xsi:type="xsd:string">?</FromDate>
<TimeZone xsi:type="xsd:string">ClientGMT-6:0)Central Standard Time</TimeZone>
<RelText xsi:type="log:RelText">Hours</RelText>
<RelTime xsi:type="xsd:byte">10</RelTime>
<Port xsi:type="xsd:byte">22</Port>
<IPAddress xsi:type="xsd:string">172.29.212.20</IPAddress>
<UserName xsi:type="xsd:string">drop</UserName>
<Password xsi:type="xsd:string">test</Password>
<ZipInfo xsi:type="xsd:boolean">false</ZipInfo>
<RemoteFolder xsi:type="xsd:string">/pub</RemoteFolder>
</FileSelectionCriteria>
</soap:SelectLogFiles>
</soapenv:Body>
</soapenv:Envelope>
And this is what I am getting for response:
<soapenv:Envelope xmlns:soapenv=" xmlns:xsd=" xmlns:xsi="
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server.userException</faultcode>
<faultstring>java.rmi.RemoteException: Error encountredjava.rmi.ServerException: LogCollectionUtils:getOnDemandList::Job not found</faultstring>
<detail>
<ns1:hostname xmlns:ns1="
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
Any idea is greatly appreciated
Thanks in advance,
<soapenv:Envelope xmlns:xsi=" xmlns:xsd=" xmlns:soapenv=" xmlns:soap="
<soapenv:Header/>
<soapenv:Body>
<soap:SelectLogFiles soapenv:encodingStyle="
<FileSelectionCriteria xsi:type="log:SchemaFileSelectionCriteria" xmlns:log="
<ServiceLogs xsi:type="log:ArrayOfString">
<!--Zero or more repetitions:-->
<item xsi:type="xsd:string">Cisco CallManager</item>
</ServiceLogs>
<SystemLogs xsi:type="log:ArrayOfString">
<!--Zero or more repetitions:-->
<item xsi:type="xsd:string">Cisco CDP</item>
</SystemLogs>
<SearchStr xsi:type="xsd:string">?</SearchStr>
<Frequency xsi:type="log:Frequency">OnDemand</Frequency>
<JobType xsi:type="log:JobType">PushtoSFTPServer</JobType>
<ToDate xsi:type="xsd:string">?</ToDate>
<FromDate xsi:type="xsd:string">?</FromDate>
<TimeZone xsi:type="xsd:string">ClientGMT-6:0)Central Standard Time</TimeZone>
<RelText xsi:type="log:RelText">Hours</RelText>
<RelTime xsi:type="xsd:byte">10</RelTime>
<Port xsi:type="xsd:byte">22</Port>
<IPAddress xsi:type="xsd:string">172.29.212.20</IPAddress>
<UserName xsi:type="xsd:string">drop</UserName>
<Password xsi:type="xsd:string">test</Password>
<ZipInfo xsi:type="xsd:boolean">false</ZipInfo>
<RemoteFolder xsi:type="xsd:string">/pub</RemoteFolder>
</FileSelectionCriteria>
</soap:SelectLogFiles>
</soapenv:Body>
</soapenv:Envelope>
And this is what I am getting for response:
<soapenv:Envelope xmlns:soapenv=" xmlns:xsd=" xmlns:xsi="
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server.userException</faultcode>
<faultstring>java.rmi.RemoteException: Error encountredjava.rmi.ServerException: LogCollectionUtils:getOnDemandList::Job not found</faultstring>
<detail>
<ns1:hostname xmlns:ns1="
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
Any idea is greatly appreciated
Thanks in advance,