Mark, I got the following response from the server: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/ "> <SOAP-ENV:Body> <call:sayHelloResponse xmlns:call="urn:helloservice"> <SOAP-ENV:Fault xmlns:call="urn:helloservice"> <faultcode>SOAP-ENV:Server.notImplemented</faultcode> <faultstring>procedure sayHello for SOAP11 is not yet implemented</faultstring> <faultactor>http://schemas.xmlsoap.org/soap/actor/next</faultactor> </SOAP-ENV:Fault> </call:sayHelloResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
How do I add the SOAP11 procedure for sayHello? Thanks for your help Theo On Thu, May 30, 2013 at 9:40 AM, Mark Overmeer <[email protected]> wrote: > * Theo Bot ([email protected]) [130530 07:21]: > > When it runs and I call it I get the following error messages: > > ./SoapServer.pl --live > > info: added 1 operations from WSDL > > info: switching to run mode 2, accept ASSERT- > > SOAP11: > > sayHello > > Use of uninitialized value $maxmsgs in numeric eq (==) at > > > /usr/local/perl5.16.3/lib/site_perl/5.16.3/XML/Compile/SOAP/Daemon/LWPutil.pm > > line 97. > > Use of uninitialized value $reqbonus in addition (+) at > > > /usr/local/perl5.16.3/lib/site_perl/5.16.3/XML/Compile/SOAP/Daemon/LWPutil.pm > > line 101. > > Those are just warnings. Apparently, the defaults are set with the > wrong name. I think this should solve the warnings: patch file > XML/Compile/SOAP/Daemon/AnyDaemon.pm > > $self->{XCSDA_conn_opts} = > - { client_timeout => ($args->{client_timeout} || 30) > - , client_maxreq => ($args->{client_maxreq} || 100) > - , client_reqbonus => ($args->{client_reqbonus} || 0) > + { expires => ($args->{client_timeout} || 30) > + , maxreq => ($args->{client_maxreq} || 100) > + , reqbonus => ($args->{client_reqbonus} || 0) > , postprocess => $args->{postprocess} > }; > > Result of a merge of the common functionality in ::NetServer and > ::AnyDaemon > -- > Met vriendelijke groet, > > MarkOv > > ------------------------------------------------------------------------ > drs Mark A.C.J. Overmeer MARKOV Solutions > [email protected] [email protected] > http://Mark.Overmeer.net http://solutions.overmeer.net > > -- Met vriendelijke groet, Theo Bot Network Management Engineer Website: http://www.proxy.nl LinkedIn: http://www.linkedin.com/in/theobot
_______________________________________________ Xml-compile mailing list [email protected] http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/xml-compile
