I am writing a web service using PHP5's SOAP extension. I have a client and a server set up locally, and the client can connect to the server. However when I try to call one of the functions defined in the server's WSDL file, I get a SoapFault object back rather than the desired function return value. The SoapFault object has an error string:
...
public 'faultstring' => 'looks like we got no XML document' (length=33)
...
I have checked that the script containing the server runs (it does) and if the RPC function is called (it's not). Anyone have any ideas what the error means? Docs for this are a bit thin on the ground.