Hello! I m getting crazy. I m trying to comunicate with a service what requires stringArray as one of the parameters. Sending Integer or String works fine, but...
#!/usr/bin/perl -w use SOAP::Lite; # +trace => ['debug'] ; print 'SOAP Lite version ', $SOAP::Lite::VERSION ,"\n"; #tested on 0.69 use MIME::Entity; my $soap...
Hi! I've got a project going, a part of which is the development of a WSDL-based SOAP client. I built a SOAP service from WSDL a few years ago, but ended up...
Hello! i'm getting xml-escaped output back from a .Net SOAP server. It looks like: %lt;row>data%lt;/row>data anyone have any idea how i can get that to...
... HTML::Entities, decode_entities() - Sebastian -- Progress (n.): The process through which Usenet has evolved from smart people in front of dumb terminals...
Sebastian Jaenicke
sjaenick+SOAPLITE@...
Sep 18, 2007 12:07 pm
6016
Hi, I am not sure if this is a soaplite problem or not, so I am looking for some guidance. Basically, I have the following code snippet: ...
Just starting out with SOAP::Lite, and I have a few basic questions. I'm using SOAP::Transport::HTTP with Apache/2.2.3 mod_perl/2.0.2 and I have a few classes...
After reading on this group the question "Need additional info on setting up complex data types" by rawill4u, my answer was clear: SOAP::Data->name( smiles => ...
I posted a problem earlier which turns out to boil down to complex types. The code below works but outputs an element named 'c-gensym4' and I can't find a way...
I'm having a few problems getting to grips with some software I've inherited that uses SOAP::Lite. A line reads $_ = SOAP::Data->name('smiles' => $val ); and...
Nested XML can be produced by making use of references to SOAP::Data objects. Perhaps best illustrated by an example: $_ = SOAP::Data->name( 'smiles' => ...
I have a very simple test web service. I can call it successfully without using the WSDL. When I try to use the WSDL it throws an error. I'm guessing there is...
Ian Harisay
imharisa@...
Sep 20, 2007 7:36 pm
6023
... From SOAP::Server doc: Alternately, when the value is a package-qualified name of a subroutine or method, that specific routine is made available. This ...
Hi Ian, I think the problem is that SOAP::Lite assumes an input message (although not required by the spec). Try something like this ... seems to work: <?xml...
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...
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...
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...
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...
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/" ...
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...
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...
... 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...
Thank you Graham - that worked perfectly. From: soaplite@yahoogroups.com [mailto:soaplite@yahoogroups.com] On Behalf Of Graham Irvine Sent: 15 October 2007...
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...
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...
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...
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...