I think WSDL support is not enabled in your SOAP Server code.
To enable WSDL support, you will need to initialize WSDL using the following
settings
// Initialize WSDL support
$server->configureWSDL('hellowsdl', 'urn:hellowsdl');
Check this URL for reference
http://www.scottnichol.com/nusoapprogwsdl.htm
After setting it, if you invoke the WSDL URL,
http://localhost/nusoap/helloworld.php?wsdl in Firefox/IE, you will see an
XML file like this
<definitions targetNamespace="urn:hellowsdl">
<types>
<xsd:schema targetNamespace="urn:hellowsdl">
<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>
</xsd:schema>
</types>
<message name="helloRequest"/>
<message name="helloResponse"/>
<portType name="hellowsdlPortType">
<operation name="hello">
<input message="tns:helloRequest"/>
<output message="tns:helloResponse"/>
</operation>
</portType>
<binding name="hellowsdlBinding" type="tns:hellowsdlPortType">
.
.
.
.
Regards,
Krishna Shasankar
http://www.krishnashasankar.com | http://www.clickoffline.com
On Fri, May 29, 2009 at 6:55 PM, Surajit Koly <chansuro@...> wrote:
>
>
> Hi exprts,
> I am getting the folowing errors regarding soap. Please help me
>
> *Fatal error*: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing
> WSDL: Couldn't load from 'http://www.domain.com/soap/helloworld.php?wsdl'
> in
> /home/test/public_html/soap/helloclient.php:3 Stack trace: #0
> /home/webmama/public_html/soap/helloclient.php(3): SoapClient->SoapClient('
> http://www.domai...') #1 {main} thrown in *
> /home/test/public_html/soap/helloclient.php* on line *3*
>
> **
> Can you please suggest me how can i solve this....
>
> Thanks
> Surajit
>
> [Non-text portions of this message have been removed]
>
>
>
[Non-text portions of this message have been removed]