SOAP::Lite parses the WSDL and creates the stub in memory which is time consuming. If you have the WSDL, you can use stubmaker.pl to create the stub and then...
I have a SOAP method which returns a date (currently as a string). Reading SOAP::Lite documentation <URL:http://guide.soaplite.com/#types%20and%20names>, I do...
Stephane Bortzmeyer
bortzmeyer@...
Apr 2, 2004 10:58 am
3463
On Fri, Apr 02, 2004 at 12:58:52PM +0200, Stephane Bortzmeyer <bortzmeyer@...> wrote ... Using the above module to format the date and ...
Stephane Bortzmeyer
bortzmeyer@...
Apr 2, 2004 1:55 pm
3464
Hi, I'm trying to use SOAP::Lite as a client to interface with an internal SOAP based API at my company. My client platform is Linux/mod_perl and the server ...
At 13:52:48 on 02-04-2004 Stephane Bortzmeyer <bortzmeyer@...> ... The type is dateTime not datetime and your server needs to specify the 2001 namespace not...
I have been lagging in packaging the latest set of updates for SOAP::Lite because they are all tied into WSDL2Perl, but in the next release, the 2001 schema...
... Byrne, Will the upcoming release properly handle literalxml encoding? I recently posted a workaround to enable the current version to handle this, but it ...
Steven N. Hirsch
hirschs@...
Apr 3, 2004 1:40 am
3468
On Fri, Apr 02, 2004 at 10:19:16PM +0000, Duncan Cameron <dcameron@...> wrote ... Yes, sorry for the stupid bug. Although it is not enough to solve the ...
Stephane Bortzmeyer
bortzmeyer@...
Apr 3, 2004 12:23 pm
3469
... From memory, on the server side something like my $daemon = SOAP::Transport::HTTP::Daemon # etc $daemon->serializer->xmlschema('2001'); or ...
... Sorry to reply to my own posting but the soapversion() call doesn't work on a server in the same way as a client. Try SOAP::Lite->soapversion('1.2'); ...
Which UDDI specification does UDDI::Lite support? I read in the O'Reilly book that it only supports version 1. I don't see anything in the POD indicating which...
I am having trouble accessing the complex output from a web service. If I do it this way: ======================================================= my $s =...
After poking around I'm able to make this work enough for my purposes (or learn more). One thing I was doing wrong was using ")->result" on the end of the...
On Sat, Apr 03, 2004 at 02:30:54PM +0100, Duncan Cameron <duncan_cameron2002@...> wrote ... It seems completely ignored, I get the same namespace. My...
Stephane Bortzmeyer
bortzmeyer@...
Apr 5, 2004 8:20 am
3475
I'm trying to return a fault object from a soap::lite server to a java client, however tcptunnel tells me this: <?xml version="1.0"...
This is the proper way to return a SOAP::Fault from SOAP::Lite: die SOAP::Fault->faultcode("Client") ->faultstring(...) ->faultactor(...); Is that you are...
Ok folks - I am in need of a little help. Before I bang my head against the keyboard one last time, I thought I might consult my follow perl hackers for some...
On Tue, Apr 06, 2004 at 12:49:05PM -0700, Byrne Reese <byrne@...> wrote ... I know it and mentioned it in my first message. It only handles ...
Stephane Bortzmeyer
bortzmeyer@...
Apr 7, 2004 7:08 am
3480
On Tue, Apr 06, 2004 at 10:19:38PM -0000, Byrne Reese <byrne@...> wrote ... RedHat, like FreeBSD, does not really support upgrades. It is probably ...
Stephane Bortzmeyer
bortzmeyer@...
Apr 7, 2004 7:19 am
3481
Ok folks - I am in need of a little help. Before I bang my head against the keyboard one last time, I thought I might consult my follow perl hackers for some...
A majordomo installed as RPM will necessarily use the Perl installed as RPM, that would be 5.8.0. I guess you have installed 5.8.3 under /usr/local, but 5.8.0...
Hi all.. Trying to get a perl client working correctly with a WebMethods Glue server. The problem I'm running into is that I need to send back an array of...
SOAP::Lite can do the same... or as you point out: should do that same. Again, I see no impedement to getting a result from a server, and then fetching a...
Stephane, You saved me. The strace did the trick - I should've known that trick. ... Anyway - strace told me exactly where the permission problem was - there ...
Hi, I'm trying to send a multipart/related SOAP message with an attachment to a webservice (implemented in Java using Apache Axis). (I know that this is not...
I generated a custom SOAP::Lite client using stubmaker.pl and an appropriate WSDL file. What I want to do is to override the endpoint at runtime. I tried: my...
Hi, I'm trying to create an attribute of type xsd:dateTime using: my $x = SOAP::Data->value($date)->type('dateTime')); The error I get is: Schema/namespace for...
hi all, I have released some ebXML perl modules (using XML::Xerces and/or SOAP::Lite) as a proof of concept -- with a little hand-holding they can ping a...