Search the web
Sign In
New User? Sign Up
soaplite · SOAP::Lite for Perl (soaplite.com)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3627 - 3656 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3627
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...
Huebner, Malte
mrcake77
Offline Send Email
Jun 1, 2004
1:09 pm
3628
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...
Víctor A. Rodrí...
bitman09
Offline Send Email
Jun 1, 2004
7:31 pm
3629
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...
Phil Franklin
pwf_cf
Offline Send Email
Jun 2, 2004
7:34 am
3630
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...
Huebner, Malte
mrcake77
Offline Send Email
Jun 2, 2004
8:07 am
3631
... Internally SOAP::Lite does turn off warnings at various points because of deliberate coding techniques that would otherwise cause warnings to be issued....
Duncan Cameron
duncan_camer...
Offline Send Email
Jun 2, 2004
11:02 am
3632
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...
alcurry22
Offline Send Email
Jun 2, 2004
11:59 am
3633
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....
herbert.melcher@...
herbertmelcher
Offline Send Email
Jun 2, 2004
2:10 pm
3634
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 { ...
Mitchell, Louise M
d3j051
Offline Send Email
Jun 2, 2004
7:25 pm
3635
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)...
Andrew Dolbey
adolbey2004
Offline Send Email
Jun 2, 2004
8:33 pm
3636
... 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()...
eric-amick@...
eamick
Offline Send Email
Jun 3, 2004
2:31 pm
3637
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...
sidd_c8304
Offline Send Email
Jun 4, 2004
6:29 am
3638
... 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...
Huebner, Malte
mrcake77
Offline Send Email
Jun 4, 2004
7:26 am
3639
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...
Madhukar Sinha
madhukar_sinha
Online Now Send Email
Jun 4, 2004
2:17 pm
3640
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@...
Send Email
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@...
Send Email
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"...
chenlyc7
Offline Send Email
Jun 4, 2004
6:09 pm
3643
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?...
Sinha, Madhukar [IT]
madhukar_sinha
Online Now Send Email
Jun 4, 2004
6:30 pm
3644
if ($response->fault) { die $response->faultstring; } else { my $result = $response->result; return $result; #my %result = %{$response->result}; #print...
Mitchell, Louise M
d3j051
Offline Send Email
Jun 4, 2004
7:27 pm
3645
A simpler way: $soap_response= SOAP::Lite -> uri('<URI of the service>') -> proxy('http://address_here') -> methodName() -> result -> on_fault(sub { my($soap,...
YU Fan
fanyu_ca
Offline Send Email
Jun 6, 2004
1:24 am
3646
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...
supra, morne
mornesupra
Offline Send Email
Jun 7, 2004
6:36 am
3647
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...
Chen, Li Ye (Research)
chenlyc7
Offline Send Email
Jun 7, 2004
12:30 pm
3648
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...
YU Fan
fanyu_ca
Offline Send Email
Jun 7, 2004
5:41 pm
3649
... -> on_fault(sub { my($soap, $res) = @_; die ref $res ? $res->faultstring : $soap->transport->status, "\n"; }) ... ; Paul....
Paul Kulchenko
paulclinger
Offline Send Email
Jun 7, 2004
7:26 pm
3650
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;...
yuet_mei2002
Offline Send Email
Jun 8, 2004
5:31 am
3651
... 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...
Duncan Cameron
duncan_camer...
Offline Send Email
Jun 8, 2004
7:56 am
3652
How do you specify the location of an ssl certificate in an ssl soap call?...
Gordon Pate
gpate3
Offline Send Email
Jun 9, 2004
2:17 am
3653
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...
Huebner, Malte
mrcake77
Offline Send Email
Jun 9, 2004
8:12 am
3654
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@...
Send Email
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...
OVH - Sylvain Trias
bozo2020
Offline Send Email
Jun 9, 2004
10:12 am
3656
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...
OVH - Sylvain Trias
bozo2020
Offline Send Email
Jun 9, 2004
10:30 am
Messages 3627 - 3656 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help