I have created successfully my first simple wsdl from perl code using pod::wsdl. However i am having a difficult time to figure out how to include complex...
Replying to my own post here, perhaps this is a developer question (not sure if the developer of SOAP::Lite is on this list): It seems that according to this...
... I'm not an expert on HTTP but nobody else has answered so here's my 2p worth ... FWIW, my reading of the spec agrees with you and your server ...
Dave Howorth
dhoworth@...
Nov 2, 2007 10:34 am
6047
Hi All, I want to pass an array argument to the java webservice from perl client using SOAP::LITE package. The web method declaration in java is like this ...
Hi All, I have been trying to access headers and envelope in my soap handler without success. For some reason I do not seem to get the SOAP::SOM object. Maybe...
... What I said may hold true when a dispatch_to method requests a module. Is it ok when you omit the methods and dispatch only to the IDES package? -- Radek...
Hi Radek, I would like to start by thanking you for taking time and looking at this! I have tried to omit the methods and dispatched only to the IDES packages...
I wonder if anyone could help me with a few details of the internals of SOAP::Lite. Here is the situation. I have a SOAP::Lite server (server.pl) that is...
Hi Radek, If I enclose the complete content of the IDES packages within the BEGIN statement it works! File IDES.pm: ___________________________ BEGIN { package...
Question for the community - as the mailing list moderator I am curious if the community wants me to approve SOAP::Lite job postings to this mailing list. I...
Hi All, I am trying to connect to a .Net SOAP Service using Perl SOAP::Lite. I have been able to retrieve a correct result from a method that does not require...
Hi, I'm very new to SOAP in general, and I need to work with a SOAP interface of another application. I tried to generate a stub file and use it, but get an...
My personal experience with this is that it doesn't turn out to be a lot of volume, and so doesn't detract from the conversation. They approve them on the...
Mike South
msouth@...
Nov 20, 2007 11:37 am
6059
... I found the reason. The stubmaker left out the uri, so it couldn't work. Everythings ok now so far. Lars...
I don't know how much my opinion is worth, given I am new to the list and I am the person who sent a job posting that wasn't approved, but I agree. :) I've...
Hey all, ReachLocal has an opening on our development team for a talented Perl Software Engineer. Optimally the developer would have experience working with...
Hi list, I'm having problems with serializing complex data types. SOAP::Lite seems to be able to serialize a rather small set of standard types, even such...
Gregor Goldbach
goldbach@...
Nov 20, 2007 5:42 pm
6063
Hi Radek, I must have been somewhat tired when I wrote the email below; what it is is that I am not getting the envelope as the last parameter. The last...
... You can always construct a message with raw xml: $xml = "<foo><bar>abc</bar></foo>"; $soap_data_element = SOAP::Data->type('xml' => $xml); -- Radek...
Hi, I test a little script currently that talks to a SOAP server (Deplhi I think). I have used stubgenerator to get a perl module. Although the server should...
Hello guys, I'm just starting out with visual studio 2005 and I'm trying to use c++ to send messages to a Perl based web service at my ISP internet website. I...
Hello - I have a client sending data to a server and the XML is blowing up during parsing. I need to view the envelope before SOAP::Lite parses it. I tried...
I have a simple service for uploading a file to a server with authentication. If the authentication fails, I generate a fault. If I invoke the operation using...
Hi. First-time SOAP::Lite user here. So I have to make a Perl program that acts as a SOAP client; and as far as I can see, the only realistic option for doing...
I am trying to make a SOAP::Lite client that accesses a service described by WSDL. Here is the simplest possible version: #!/usr/bin/perl -w use strict; use...