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...
3628
Víctor A. Rodrí...
bitman09
Jun 1, 2004 7:31 pm
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...
3629
Phil Franklin
pwf_cf
Jun 2, 2004 7:34 am
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...
3630
Huebner, Malte
mrcake77
Jun 2, 2004 8:07 am
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...
3631
Duncan Cameron
duncan_camer...
Jun 2, 2004 11:02 am
... Internally SOAP::Lite does turn off warnings at various points because of deliberate coding techniques that would otherwise cause warnings to be issued....
3632
alcurry22
Jun 2, 2004 11:59 am
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...
3633
herbert.melcher@...
herbertmelcher
Jun 2, 2004 2:10 pm
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....
3634
Mitchell, Louise M
d3j051
Jun 2, 2004 7:25 pm
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 { ...
3635
Andrew Dolbey
adolbey2004
Jun 2, 2004 8:33 pm
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)...
3636
eric-amick@...
eamick
Jun 3, 2004 2:31 pm
... 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()...
3637
sidd_c8304
Jun 4, 2004 6:29 am
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...
3638
Huebner, Malte
mrcake77
Jun 4, 2004 7:26 am
... 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...
3639
Madhukar Sinha
madhukar_sinha
Jun 4, 2004 2:17 pm
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...
3640
Mike Schroeder
MikeSchroeder@...
Jun 4, 2004 3:10 pm
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...
3641
Tilman Baumann
Tilman.Baumann@...
Jun 4, 2004 3:36 pm
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...
3642
chenlyc7
Jun 4, 2004 6:09 pm
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"...
3643
Sinha, Madhukar [IT]
madhukar_sinha
Jun 4, 2004 6:30 pm
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?...
3644
Mitchell, Louise M
d3j051
Jun 4, 2004 7:27 pm
if ($response->fault) { die $response->faultstring; } else { my $result = $response->result; return $result; #my %result = %{$response->result}; #print...
3645
YU Fan
fanyu_ca
Jun 6, 2004 1:24 am
A simpler way: $soap_response= SOAP::Lite -> uri('<URI of the service>39;) -> proxy('http://address_here') -> methodName() -> result -> on_fault(sub { my($soap,...
3646
supra, morne
mornesupra
Jun 7, 2004 6:36 am
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...
3647
Chen, Li Ye (Research)
chenlyc7
Jun 7, 2004 12:30 pm
Hmm...I've tried the code below as well, but it turns out that the compiler does't like it: "Can't call method "on_fault" on unblessed reference at...
3648
YU Fan
fanyu_ca
Jun 7, 2004 5:41 pm
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;...
3651
Duncan Cameron
duncan_camer...
Jun 8, 2004 7:56 am
... 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...
3652
Gordon Pate
gpate3
Jun 9, 2004 2:17 am
How do you specify the location of an ssl certificate in an ssl soap call?...
3653
Huebner, Malte
mrcake77
Jun 9, 2004 8:12 am
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...
3654
Jens Puruckherr
jpuruckherr@...
Jun 9, 2004 9:01 am
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...
3655
OVH - Sylvain Trias
bozo2020
Jun 9, 2004 10:12 am
... eval { require SOAP::Transport::HTTP::Daemon::ForkOnAccept } or die <<EOW; $@ WARNING: module for Daemon::ForkOnAccept is not installed by default. It's in...
3656
OVH - Sylvain Trias
bozo2020
Jun 9, 2004 10:30 am
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...