Hi, i've had a problem with getting no responses from my SOAP::Lite Server. This "error" was due to the fact that i used "perl -W" in the first line of my...
Hi Malte, ... I think I had the same problem some time ago. When using perl -w and a Pure Perl XML::Parser it becomes soooo sloooooooow. Take a look at...
Dear all: This is also the answer to my previous post: [soaplite] CGI: IIS 6 behaving differently to IIS 5. Removed the shebang line from the server side...
Hi, as i can see there are more people having problems with this. I think there should really be a note on the soap-lite site for other developers. Btw: I only...
... Internally SOAP::Lite does turn off warnings at various points because of deliberate coding techniques that would otherwise cause warnings to be issued....
I have 1gb documents to be passed around using the soap protocol. is it possible to just send the xml as is with out serialization?? The only way i can see to...
Hi, I have a soap lite client at a customer, which hangs sometimes, the sysread function doesn't come back. I suppose this is caused by a transparent proxy....
Here's how I did it... it works... if it's incorrect, someone can comment... 'sXML' is the root tag of my xml... $xml is the inner xml... sub call_via_soap { ...
Hi all, Has anyone here tried to make use of a web service where the function name for calling the service has a hyphen in it? Some languages (e.g., Lisp)...
... I believe you can use something like my $res = $service->call($func); or maybe my $res = $service->call($func => ()); It depends on whether the call()...
Hello All, I am a complete newbie to both SOAP::Lite and perl.I haveinstalled Soap::Lite and also managed to write a simple client andserver program.Its...
... Well, I am using a CGI-Server - no daemon. When starting a request, nothing happens, the client is waiting for a response. A couple of Minutes later, the...
Group- I have to migrate my perl/soaplite based webservices (accessed by apache soap clients) and also my perl/soaplite clients which access java based...
Adding an environment variable for HTTP_proxy on my client wxPerl app worked great to get around proxy firewalls - you gotta love when Perl makes hard things...
Mike Schroeder
MikeSchroeder@...
Jun 4, 2004 3:10 pm
3641
For ssl usage at the server side, i used mod_proxy from apache. In an ssl activatet apache location: ProxyPass /proxy-url http://127.0.0.1:10000/ So you can...
Tilman Baumann
Tilman.Baumann@...
Jun 4, 2004 3:36 pm
3642
Hi, I'm trying to get our perl client to handle a very simple Fault message from the server that has the following format: <?xml version="1.0"...
thanks.. You last suggestion was very high level. Could you let me how to build with SSL support. what extra things i need? also how do i supply certificates?...
A simpler way: $soap_response= SOAP::Lite -> uri('<URI of the service>') -> proxy('http://address_here') -> methodName() -> result -> on_fault(sub { my($soap,...
Hi all I have been using soap::lite for some time now, but have never had to change the default way the input xml looks like. I have to call a web service that...
According to sopalite.com: By default client will die with diagnostic on transport errors and do nothing for faulted calls, so, you'll be able to get fault...
I has written a perl soap server, it it sample return an array sub testarray { my @var2; push @var2, '123'; push @var2, 'efg'; push @var2, 'hig'; return @var2;...
... This is actually returning three individual values, not an array. You need to return a reference to the array return \@var2; ... Then your perl client can...
Dear all, security is really important for my future Web Services. Which standardization is the best to implement with soap::lite - or better: which one is...
Hi, is it possible to handle more than 1 request with SOAP::Transport::HTTP::Daemon at the same time? Mit freundlichen Grüßen Jens Puruckherr...
Jens Puruckherr
jpuruckherr@...
Jun 9, 2004 9:01 am
3655
... eval { require SOAP::Transport::HTTP::Daemon::ForkOnAccept } or die <<EOW; $@ WARNING: module for Daemon::ForkOnAccept is not installed by default. It's in...
Hi, I'm having little problems with functions having to return data containing strings with (french) accents (éè...). What should I use to get it passed...