I am creating a website with the Commission Junction links,. Now I need to process the commission reports for dividing the commissions. I am planning to use Daily Publisher Commission Service as it provides a provision for including the date in the request. Now I am not able to do a purchase through the CJ link and so I am using a sample query that has given in CJ site itself. I am new to these wbservices and so have some doubts here.
The actual respone will be exactly same as the one given. I mean will it includes the
<soapenv:Envelope
things or it is begin with just the ns1.???I have assigned the response to a variable $result and give
$result_xml=simplexml_load_string($result);
but it is showing the error that ns1 is not defined in namespace. Then I have given the <soapenv:Envelope
things to the top. Now the error has gone. But the result_xml variable is blank .
Please help me if someone has done it before. or please suggest me some good tutorials so that I can learn and do it. It will be much helpful if someone can give the complete sample response and so I can check the code with it.
Thanks in Advance.
An XML response to a SOAP request will be something like:
You maybe having issues parse the xml response into a SimpleXml Object because SimpleXML doesn't like colons (:) in the tag and attribute names SOAP & SimpleXML. Also check here SimpleXML & Namespaces
Your SOAP request should already be an object so I am uncertain as to why you are trying to parse it using SimpleXML. If you need the response as XML then you could always use a serializer.
In my own script as an example I use something like this:
//code here $cj_devkey = "CJ KEY HERE";
A sample response using print_r($object) will return :
If you want to traverse the object elements you can use stuff like:
or loop through each commission payment with stuff like: