Hullo :) I've developed some modules based on the tutorial at http://www.perl.com/pub/a/2001/04/24/soap.html using their 'Ticket-based authentication39; as a...
I have a SOAP::Lite client talking to a .NET server (this part is working fine), but I have a problem with the way SOAP::Lite converts the returned results...
If I have a method that takes two strings, but only the first one is required: setName(lastname, firstname) How do I convey that in the WSDL file? Do I need...
I've got a simple cgi server with client running like one of the examples in a tutorial, however, it doesn't print the return. I tried the +trace=>all option...
Hello everyone, I have looked through the mailing lists and found a couple of instances where people have attached examples of their client, wsdl and server...
Apologies for the length of this message but I've tried to include everything relevent. Unfortunately, I can't make the web service available outside our...
Hi, I try to call via a perl client a GLUE soap service and want to send a string with special characters (german umlaute). I thought xml is in use so that the...
SOAP::Lite is working really well on our development servers. However I¹ve just moved the code to our production machines and it seems to be causing a ...
How do I set the charset for the server to something other than utf-8? I see that a client can be set like: $client = SOAP::Lite->encoding('iso-8859-1'); I'm...
I have a question about passing ComplexTypes to a server. I have the following ComplexType defined: Types: <xsd:complexType name="Fullname"> <xsd:all> ...
Folks, I am trying to write a bit of code on the server side to evaluate the incoming parameters from my client. My incoming XML looks like this: <soap...
Hi, at http://guide.soaplite.com/#types%20and%20names I found some information about using types and names for SOAP-calls by names. But I couldn't any trick on...
Hello, Is it possible to have the server take an array from the client, run a script on the server side and return a hash to the client? If so are there any...
Hello, I'm trying to use SOAP::Lite on a server. It's easy to get the parameters values, by order or by name. It's what I need for most of the calls but one. ...
Hello, After many tries, and after reading newsgroup messages, I still have a problem.: I was running my SOAP service with dynamic dispatching (using ...
Hi, I suppose you are using soap as a cgi. I had the same problem and the reason was that the wwwrun user (who is executing the soap code) didn't have the ...
Hi: I am pretty new to Soap::Lite and Web Services. I am looking into calling a soap::lite server application through Oracle's PL/SQL. The nearest thing I can...
Hi all, "let me introduce myself". I'm currently working on a messaging gateway called TRex (http://trex.sourceforge.net/) and one of its technology supporters...
Hi all, Have any of you managed to generate a wsdl file from a soap service that is not using the mod_perl apache interface? I have succesfully made myself a...
Server: sub getElements{ my $self = shift; my @a = $self->{objects}; } Client my $exist->new(); my @array = $exist->getElements(); @array returns the number of...
Folks, I am building a web service in SOAP::Lite. Part of the results returned is a set of repeating elements e.g. <response> <statusMsg>foo</statusMsg> ...
Hi, I'm getting an error when I'm trying to use the Authentication Basic in SOAP::Lite. I'm using a Soap::Lite based Perl client accessing Apache Axis based on...