Mark,

The fix worked partially. I fannly made this, but I think it could be
lesser:
$self->{XCSDA_conn_opts} =
      { expires  => ($args->{client_timeout}  ||  30)
      , client_timeout  => ($args->{client_timeout}  ||  30)
      , maxmsgs   => ($args->{client_maxreq}   || 100)
      , reqbonus => ($args->{client_reqbonus} ||   0)
      , postprocess     => $args->{postprocess}
      };

maxreg should be maxmsgs, and expires, maybe, should be client_timeout.

Theo




On Thu, May 30, 2013 at 1:45 PM, Mark Overmeer <[email protected]> wrote:

> * Theo Bot ([email protected]) [130530 11:25]:
> > I got the following response from the server:
> >    <faultcode>SOAP-ENV:Server.notImplemented</faultcode>
> > How do I add the SOAP11 procedure for sayHello?
>
> Did the patch work?
>
> > >    $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}
> > >       };
>
> Answer: see manual XML::Compile::SOAP::Daemon
>
>   $daemon->operationsFromWSDL($wsdl, ...
>     , callbacks => {sayHello => \&sayHelloHandler}
>    );
>
> Or
>
>   $daemon->addHandle(sayHello => SOAP11 => \&sayHelloHandler);
> --
> Regards,
>
>                MarkOv
>
> ------------------------------------------------------------------------
>        Mark Overmeer MSc                                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

Reply via email to