Search the web
Sign In
New User? Sign Up
in-phpug · Indian PHP User Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
another soap problem i am facing   Message List  
Reply | Forward Message #3238 of 3263 |
Re: [in-phpug] another soap problem i am facing

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]




Sat May 30, 2009 6:43 am

shasankar
Offline Offline
Send Email Send Email

Forward
Message #3238 of 3263 |
Expand Messages Author Sort by Date

Hi exprts, I am getting the folowing errors regarding soap. Please help me *Fatal error*: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL:...
Surajit Koly
chan_suro
Offline Send Email
May 29, 2009
4:03 pm

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 //...
Krishna Shasankar
shasankar
Offline Send Email
May 30, 2009
7:25 am
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help