I'll start out by saying I have no idea what so ever about what I am trying to do. My PHP skills is -beginner- and my experience with webservices is NULL.
I have a WSDL URL http://example.com/ws/3.1/NNE?WSDL. I would like to call the searchTargetGroup method from a PHP script, so I can loop through the answer and save the data to my database.
Anywho, I have no idea how to create the call from PHP. :-( I've looked at NuSOAP for PHP and also the built in SoapClient, but without luck. I think the problem is that I'm trying to call a complex method without fully understanding what the frog I'm messing around with.
So I used SoapUI to retrieve the definition file and creating a request, which works perfectly and I'm getting all the info I want. Problem is, I have no clue how I should make a PHP file creating exact same request as SoapUI (and thereby getting the correct answer).
The XML request SoapUI generates for me looks like this:
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:nne="http://example.com/ws/NNE">
<soapenv:Header/>
<soapenv:Body>
<nne:searchTargetGroup soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<QuestionTargetGroup_1 xsi:type="nne:QuestionTargetGroup" xmlns:nne="http://example.com/ws/NNE">
<companyFormCodeList xsi:type="xsd:string">10,60,80</companyFormCodeList>
<companyStatus xsi:type="xsd:string">0</companyStatus>
<hasPhoneOnly xsi:type="xsd:boolean">true</hasPhoneOnly>
</QuestionTargetGroup_1>
<int_2 xsi:type="xsd:int">500</int_2>
<int_3 xsi:type="xsd:int">1</int_3>
<int_4 xsi:type="xsd:int">1</int_4>
<String_5 xsi:type="xsd:string">passstring</String_5>
</nne:searchTargetGroup>
</soapenv:Body>
</soapenv:Envelope>
Can anyone help me in some direction? Preferably the right one. :-)
I'm aware that you can't test on the URL, since it's IP protected, but I would really just like to know how to make above call from a PHP file/function.