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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 6010 - 6039 of 6386   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6010
... Replying to myself; the vendor fixed this on the server side. Thanks for the feedback. Morgan...
Morgan Fletcher
fnagrom
Offline Send Email
Sep 4, 2007
7:14 pm
6011
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...
alexfranco73
Offline Send Email
Sep 12, 2007
2:26 pm
6012
#!/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...
Mike
mw487
Offline Send Email
Sep 13, 2007
5:59 pm
6013
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...
jtjustman
Offline Send Email
Sep 14, 2007
6:26 am
6014
Hello! i'm getting xml-escaped output back from a .Net SOAP server. It looks like: %lt;row&gt;data%lt;/row&gt;data anyone have any idea how i can get that to...
guymatz
Offline Send Email
Sep 17, 2007
9:04 pm
6015
... 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@...
Send Email
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: ...
Eddie
kawas7
Offline Send Email
Sep 18, 2007
8:48 pm
6017
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...
Bill Moseley
whmoseley
Online Now Send Email
Sep 19, 2007
7:45 pm
6018
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 => ...
leegee23
Offline Send Email
Sep 19, 2007
7:46 pm
6019
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...
leegee23
Offline Send Email
Sep 19, 2007
7:47 pm
6020
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...
leegee23
Offline Send Email
Sep 19, 2007
8:34 pm
6021
Nested XML can be produced by making use of references to SOAP::Data objects. Perhaps best illustrated by an example: $_ = SOAP::Data->name( 'smiles' => ...
Eric Bridger
ebridger2004
Offline Send Email
Sep 19, 2007
10:29 pm
6022
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@...
Send Email
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 ...
rahed
raherh
Offline Send Email
Sep 20, 2007
8:14 pm
6024
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...
Paul Gallagher
paulpg_sg
Offline Send Email
Sep 23, 2007
2:54 pm
6025
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...
axis_2_user
Offline Send Email
Oct 1, 2007
9:53 pm
6026
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...
Chintana Wilamuna
cwilamuna
Offline Send Email
Oct 2, 2007
5:59 am
6027
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...
Michael Ablassmeier
blssmr
Offline Send Email
Oct 2, 2007
10:10 am
6028
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...
bolasnenhumda
Offline Send Email
Oct 2, 2007
5:37 pm
6029
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/" ...
oldfic4
Offline Send Email
Oct 15, 2007
6:41 pm
6030
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...
bolasnenhumda
Offline Send Email
Oct 15, 2007
6:41 pm
6031
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...
Edward Kawas
kawas7
Offline Send Email
Oct 15, 2007
6:49 pm
6032
Hi, I think that you need to create your own serializer to gain access to the envelope. you might want to refer to ...
Edward Kawas
kawas7
Offline Send Email
Oct 15, 2007
6:57 pm
6033
... something like this will do it. my $soap = SOAP::Lite->proxy($proxy); $soap->serializer->soapversion("1.2"); $soap->serializer->namespaces({ ...
Graham Irvine
graham23sk
Offline Send Email
Oct 15, 2007
10:16 pm
6034
... 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...
Graham Irvine
graham23sk
Offline Send Email
Oct 15, 2007
10:18 pm
6035
Thank you Graham - that worked perfectly. From: soaplite@yahoogroups.com [mailto:soaplite@yahoogroups.com] On Behalf Of Graham Irvine Sent: 15 October 2007...
chris
oldfic4
Offline Send Email
Oct 17, 2007
7:10 pm
6036
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...
Paul Gallagher
paulpg_sg
Offline Send Email
Oct 18, 2007
1:01 am
6037
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...
khurrumi2002
Offline Send Email
Oct 19, 2007
11:47 pm
6038
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...
sarah1878carter
Offline Send Email
Oct 24, 2007
5:59 pm
6039
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...
ntang_work
Offline Send Email
Oct 24, 2007
5:59 pm
Messages 6010 - 6039 of 6386   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