in reply to Re: SOAP::Lite server with c sharp client
in thread SOAP::Lite server with c sharp client
In C# the url is in "Service Reference" configuration. It takes the url of the WSDL file... The problem is that the XML response sent from server perl is different from the XML response aspected from C#. I use this code in PM file to return the response from server:
# $return elaborated my $response = SOAP::Data -> new() ->name('response') ->prefix('') ->type('string') ->uri('FUNCTION') ->value($result); return $response;
I need to know how the server can make a correct XML response for DotNet. Probably the solution is a better use of "SOAP::Data -> new()" to write the correct tags and header...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: SOAP::Lite server with c sharp client
by Anonymous Monk on Apr 28, 2014 at 08:29 UTC | |
by grifhis (Novice) on Apr 28, 2014 at 15:17 UTC | |
by Anonymous Monk on Apr 28, 2014 at 22:57 UTC | |
by grifhis (Novice) on Apr 29, 2014 at 09:53 UTC |