I'm trying to submit an apxml request to my ping integration service through soapUI and each time I'm getting this error:
<faultstring>java.lang.IllegalArgumentException: Unrecognized APXML method: Add</faultstring>
This is my current soapUI code:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sch="http://www.alarmpoint.com/webservices/schema">
<soapenv:Header/>
<soapenv:Body>
<sch:SubmitAPXML>
<sch:apxml>
<transaction>
<header>
<method>Add</method>
<subclass>Event</subclass>
</header>
<data>
<agent_client_id>ping|ping</agent_client_id>
<recipients>bsmith</recipients>
<situation>Server down.</situation>
<device>localhost</device>
<incident_id>TICKET-0100-0302</incident_id>
</data>
</transaction>
</sch:apxml>
</sch:SubmitAPXML>
</soapenv:Body>
</soapenv:Envelope>
My integration agent is running and being detected by the xm webserver just fine as well as the ping integration service. I am trying to send this request from a different computer but I have succesfully been able to inject events into xm from the same computer through soapUI. Any ideas as to why this error is being thrown would be greatly appreciated.