Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

soaplite · SOAP::Lite for Perl (soaplite.com)

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1205
  • Category: Protocols
  • Founded: Jan 28, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 5922 - 5951 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
5922 Kirti Bodhmage
mkirti Send Email
Apr 10, 2007
4:38 pm
Thanks for the suggestion. I followed the suggestion but now axis is throwing an exception while getting the soap response. any suggestion? Exception in thread...
5923 Kirti Bodhmage
mkirti Send Email
Apr 12, 2007
2:36 pm
Hi, I am trying to run samples from the soap lite When I am trying to run client.pl from command prompt perl client.pl it does return value but if I try to do ...
5924 edsgarddaniel Send Email Apr 14, 2007
2:40 pm
Hi, I would be very grateful for some help regarding adding an attachment to a server response. The problem is that the attachment is not present in the...
5925 Himanshu Garg
pathrachar Send Email
Apr 16, 2007
11:27 am
Hi, I return a hashref one value in which is a URL containing &'s. If the URL begins with http, SOAP::Lite doesn't escape the &'s and the xml at the client is...
5926 mkirti Send Email Apr 16, 2007
3:23 pm
Hi, I am trying to run hibye.cgi sample from documentation. I am getting Method Not Allowed The requested method GET is not allowed for the URL...
5927 s82martin Send Email Apr 16, 2007
3:24 pm
Hi, Hope someone can help with this problem - I am trying to construct a web service that accepts a file containing data as input, however I am struggling to...
5928 kameron
kernelkole Send Email
Apr 16, 2007
4:47 pm
having a lot of trouble accessing a pretty simple method with SOAP::Lite. ... <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope ...
5929 ebincar Send Email Apr 18, 2007
7:46 am
Hi, i have a SOAP::Lite service (currently it does not do much since i'm testing this). The only method that is implemented is called "AuthenticationRequest"....
5930 dclaarit Send Email Apr 18, 2007
7:49 am
With WSRF::Lite, I get back the structure below. There can be multiple ITEM entries. <?xml version=\'1.0&#92;' encoding=\'utf-8\'?> <soapenv:Envelope ...
5931 Paul Gallagher
paulpg_sg Send Email
Apr 24, 2007
3:07 pm
Hi, sounds similar to a question posted on my blog. I posted an answer too (see http://tardate.blogspot.com/2007/02/complex-soaplite-requests-my-rules-for.html...
5932 Efim Furman
efimfurman Send Email
Apr 27, 2007
9:16 pm
Hello, I have a very simple SOAP::Lite mod_perl server and a simple SOAP::Lite client. Everything works great on the perl side, however when I tried to ...
5933 ivan_555 Send Email May 1, 2007
7:23 pm
hi, How can I use the : my $service = SOAP::Lite->service($wsdl_url); and preserve the authentication and cookies over the next calls to the service ? I cant...
5934 ivan_555 Send Email May 1, 2007
7:23 pm
hi, How can I add additional attributes to <soap:Envelope ...> i.e. what I want is to add something like this : ...
5935 Thomas J Pinkl
tpinkl Send Email
May 2, 2007
2:57 pm
... Something like: my $soap = new SOAP::Lite; ... my $serializer = $soap->serializer(); $serializer->register_ns(...
5936 testoutput Send Email May 4, 2007
2:52 pm
I'm trying to connect a SOAP::Lite perl client to a .Net service and pass arguments to one of the service methods. By all indications the call succeeds; I get...
5937 ivan_555 Send Email May 6, 2007
3:24 am
hi, How can I force SOAP::Lite when it does deserialization to set the xml-attributes like object-attributes. When I make the soap request I get structure like...
5938 Efim Furman
efimfurman Send Email
May 6, 2007
3:24 am
Here's a simple question I could not find an answer for: Does SOAP:Lite support Document/literal binding style? I am only able to get it to work with...
5939 Rick Measham
rick_measham Send Email
May 9, 2007
4:05 pm
Looking through the docs and modules on CPAN, I'm starting to think that there's no DIME integration. Is this the case? I know nothing about DIME and only a...
5940 jewalker2680 Send Email May 9, 2007
8:43 pm
I am running a SOAP server using Apache2::SOAP and using SOAP::Lite for the clients. Most of the time there are no problems, but occasionally I get the...
5941 jrpfinch Send Email May 11, 2007
3:20 pm
I am completely new at SOAP, SSL and internet-related protocols generally and am looking to build a SOAP client server interface in Perl. I have managed to...
5942 tommyfliu_ocho Send Email May 11, 2007
11:52 pm
Hello everyone thanks for a great tool I am having problems passing the parameter of type ArrayOfArrayOfArrayOf_xsd_string calling the method ...
5943 Greg Wittel
gwittel Send Email
May 14, 2007
5:55 pm
Hi, I'm trying to set up a SOAP::Lite client/server that both submits and retrieves UTF8 data from a database. While I can submit valid UTF8 data (required...
5944 testoutput Send Email May 15, 2007
10:04 pm
Reposting out of desperation: I'm trying to connect a SOAP::Lite perl client to a .Net service and pass arguments to one of the service methods. By all...
5945 Michael
mikeybsae Send Email
May 16, 2007
11:48 pm
I am attempting to write a simple SOAP client using the SOAP::Lite module, but I can't seem to make my SOAP requests produce any results. I am wondering if...
5946 Eric Bridger
ebridger2004 Send Email
May 17, 2007
11:51 am
To see the xml sent: $soap->transport->http_request->content() To see the xml received: $soap->transport->http_response->content() Must be done after the SOAP...
5947 quique_jh Send Email May 17, 2007
1:40 pm
... In order to see the SOAP messages and HTTP headers (if your using HTTP transport) you should add SOAP::Trace like this: use SOAP::Lite +trace =>...
5948 Enrique J. Hernán...
quique_jh Send Email
May 17, 2007
1:41 pm
... In order to see the SOAP messages and HTTP headers (if your using HTTP transport) you should add SOAP::Trace like this: use SOAP::Lite +trace =>...
5949 Paul Gallagher
paulpg_sg Send Email
May 17, 2007
2:04 pm
Hi Michael, Iremember struggling with the same issue when I started using SOAP::Lite. I searched for a SOAP::Data->get_as_string function in vain. What I rely...
5950 Enrique J. Hernán...
quique_jh Send Email
May 22, 2007
12:06 am
Hi, Firstly, I'd introduce myself. I'm one of the developer from eBox platform [1], a perl-based SME server. The GUI currently relies on a Web interface but we...
5951 FreX
min4100 Send Email
May 22, 2007
5:24 pm
Hi, I would like to know how is it possible to get from the server side (like in on_action method) to be able to read the variables from the header/data that...
Messages 5922 - 5951 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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