Hi All, I am trying to connect to a web-service, implemented in Perl (uses SOAP::Lite) and get back a text file as attachment; when i call the service...
6026
Chintana Wilamuna
cwilamuna
Oct 2, 2007 5:59 am
Hi, An initial release of the bindings to WSF/C [1] is in CPAN [2]. This initial release has the client side support only with WS-Addressing and REST. The...
6027
Michael Ablassmeier
blssmr
Oct 2, 2007 10:10 am
hi guys, im currently working on accessing a service with SOAP::Lite. This service uses cookie based authentification, so i need to pass a cookie_jar using the...
6028
bolasnenhumda
Oct 2, 2007 5:37 pm
Hi all, I've started to use SOAP::Lite, and I have a bunch of questions: 1 - The default style used by SOAP::Lite is RPC encoded. Is this the only style...
6029
oldfic4
Oct 15, 2007 6:41 pm
How do get soaplite to add the xmlns:intf ns to get the soap envelope to look as below? <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" ...
6030
bolasnenhumda
Oct 15, 2007 6:41 pm
Hi all, I'm starting now to use SOAP::Lite, and I have a bunch of questions: 1 - From what I read, the default encoding and style used in SOAP::Lite are RPC...
6031
Edward Kawas
kawas7
Oct 15, 2007 6:49 pm
Hi Mario, ... I use soap lite for my project. as far as i know, soap-lite does not create wsdls for you. Sorry, but i dont know the answers to the other...
6032
Edward Kawas
kawas7
Oct 15, 2007 6:57 pm
Hi, I think that you need to create your own serializer to gain access to the envelope. you might want to refer to ...
6033
Graham Irvine
graham23sk
Oct 15, 2007 10:16 pm
... something like this will do it. my $soap = SOAP::Lite->proxy($proxy); $soap->serializer->soapversion("1.2"); $soap->serializer->namespaces({ ...
6034
Graham Irvine
graham23sk
Oct 15, 2007 10:18 pm
... using the default methods unaltered with generate RPC encoded envelopes. However this is Perl so you can manipulate those pretty easily to get it to do...
6035
chris
oldfic4
Oct 17, 2007 7:10 pm
Thank you Graham - that worked perfectly. From: soaplite@yahoogroups.com [mailto:soaplite@yahoogroups.com] On Behalf Of Graham Irvine Sent: 15 October 2007...
6036
Paul Gallagher
paulpg_sg
Oct 18, 2007 1:01 am
Hi Chris. Yes, overridding the serializer is the trick. Example: #!/usr/bin/perl -w use strict; #NB: SOAP::serializer->register_ns requires 0.65 use SOAP::Lite...
6037
khurrumi2002
Oct 19, 2007 11:47 pm
Hi i am just exploring the SOAP Lite package and have been trying to get a simple example to work but have been unsuccessful. I am trying to get a simple WCF...
6038
sarah1878carter
Oct 24, 2007 5:59 pm
I have tried just about everything I can think of to get this simple soap service to work. I just can't make it work. It's my first time trying this. It's my...
6039
ntang_work
Oct 24, 2007 5:59 pm
I've written a quick test soap script and it seems to work but parsing the WSDL takes forever (and by that I mean over 1 minute per run, the WSDL file is 14000...
6040
Nicholas Tang
ntang_work
Oct 24, 2007 6:17 pm
ARGH. I apologize. Figures - after wrestling with it for 2 hours, I figure it out 10 minutes after emailing the list. my $cookies =...
6041
Lev Lvovsky
levl289
Oct 25, 2007 11:37 pm
Is there any way to split up the http request created by the SOAP::Lite package so that instead of an http header like this: POST...
6042
Jimmy Zhang
jzhang_ximpl...
Oct 26, 2007 1:06 am
I am proud to announce the the release of version 2.2 of VTD-XML, the next generation open source XML parsers/indexer/slicer/editor. This release significantly...
6043
Nicholas Tang
ntang_work
Oct 31, 2007 4:24 pm
Here's what I ended up doing, which is working beautifully and is a lot more "clever"... #!/usr/bin/perl -w use HTTP::Cookies; use Getopt::Long; use lib...
6044
t_elia
Nov 1, 2007 4:14 pm
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...
6045
Lev Lvovsky
levl289
Nov 1, 2007 5:59 pm
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...
6046
Dave Howorth
dhoworth@...
Nov 2, 2007 10:34 am
... 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 ...
6047
parimal_b2000
Nov 8, 2007 8:10 am
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 ...
6048
lormidorido
Nov 15, 2007 9:42 am
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...
6049
rahed
raherh
Nov 15, 2007 10:49 am
... The first parameter is SOAP::SOM object and the last one is envelope. -- Radek...
6050
rahed
raherh
Nov 15, 2007 6:47 pm
... 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...
6051
Ragnar Hakonarson
lormidorido
Nov 16, 2007 11:47 pm
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...
6052
viperformance
Nov 16, 2007 11:47 pm
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...
6053
leegee23
Nov 16, 2007 11:48 pm
Hi all I'm using the following: SOAP::Lite->uri($uri) -> proxy($svr) -> outputxml(39;TRUE39;) -> uri( 'http://gsk.com/cix/' ) -> autotype(0) -> call( $method =>...
6054
Ragnar Hakonarson
lormidorido
Nov 18, 2007 7:21 pm
Hi Radek, If I enclose the complete content of the IDES packages within the BEGIN statement it works! File IDES.pm: ___________________________ BEGIN { package...