Hey Guys,
I appreciate any and all help.
I'm trying to print out the results of a query I've made to another server using the nusoap client. I'm successfully sending my XML Array to their WSDL web service and they are sending an XML response back. <RESULTS><TEXT>Success</TEXT></RESULTS>
However all < and > symbols are missing. Quotes and every other symbol is intact.
I'm using the nusoap classes and functions, and I'm wondering if there is a parameter perhaps that I need to pass so that the data retains its XML structure or?
So when they send back their results it looks like this....
RESULTSTEXTSuccess/TEXT/RESULTS
The code I'm using to open the soapclient and gather the results its pretty simply. I'm not setting any paramters outside
$args = array ("xml"=>$str);
$client = new soapclient($url,"wsdl"); $results = $client->call("User_Data", $args);
Thanks again.
Edit/Delete Message