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 6044 - 6073 of 6629   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
6044 t_elia Send Email 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 Send Email
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@... Send Email
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 Send Email 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 Send Email 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 Send Email
Nov 15, 2007
10:49 am
... The first parameter is SOAP::SOM object and the last one is envelope. -- Radek...
6050 rahed
raherh Send Email
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 Send Email
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 Send Email 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 Send Email Nov 16, 2007
11:48 pm
Hi all I'm using the following: SOAP::Lite->uri($uri) -> proxy($svr) -> outputxml(&#39;TRUE&#39;) -> uri( 'http://gsk.com/cix/' ) -> autotype(0) -> call( $method =>...
6054 Ragnar Hakonarson
lormidorido Send Email
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...
6055 Byrne Reese
byrnereese Send Email
Nov 20, 2007
1:47 am
Question for the community - as the mailing list moderator I am curious if the community wants me to approve SOAP::Lite job postings to this mailing list. I...
6056 just4phun11 Send Email Nov 20, 2007
1:47 am
Hi All, I am trying to connect to a .Net SOAP Service using Perl SOAP::Lite. I have been able to retrieve a correct result from a method that does not require...
6057 Oeschey, Lars (I/EK-1...
lars.oeschey Send Email
Nov 20, 2007
2:15 am
Hi, I'm very new to SOAP in general, and I need to work with a SOAP interface of another application. I tried to generate a stub file and use it, but get an...
6058 Mike South
msouth@... Send Email
Nov 20, 2007
11:37 am
My personal experience with this is that it doesn't turn out to be a lot of volume, and so doesn't detract from the conversation. They approve them on the...
6059 Oeschey, Lars (I/EK-1...
lars.oeschey Send Email
Nov 20, 2007
4:14 pm
... I found the reason. The stubmaker left out the uri, so it couldn't work. Everythings ok now so far. Lars...
6060 rl_jcb Send Email Nov 20, 2007
5:42 pm
I don't know how much my opinion is worth, given I am new to the list and I am the person who sent a job posting that wasn't approved, but I agree. :) I've...
6061 rl_jcb Send Email Nov 20, 2007
5:42 pm
Hey all, ReachLocal has an opening on our development team for a talented Perl Software Engineer. Optimally the developer would have experience working with...
6062 Gregor Goldbach
goldbach@... Send Email
Nov 20, 2007
5:42 pm
Hi list, I'm having problems with serializing complex data types. SOAP::Lite seems to be able to serialize a rather small set of standard types, even such...
6063 Ragnar Hakonarson
lormidorido Send Email
Nov 20, 2007
5:54 pm
Hi Radek, I must have been somewhat tired when I wrote the email below; what it is is that I am not getting the envelope as the last parameter. The last...
6064 rahed
raherh Send Email
Nov 20, 2007
8:46 pm
... You can always construct a message with raw xml: $xml = "<foo><bar>abc</bar></foo>"; $soap_data_element = SOAP::Data->type('xml' => $xml); -- Radek...
6065 Oeschey, Lars (I/EK-1...
lars.oeschey Send Email
Nov 22, 2007
7:43 am
Hi, I test a little script currently that talks to a SOAP server (Deplhi I think). I have used stubgenerator to get a perl module. Although the server should...
6066 Sarah Carter
sarah1878carter Send Email
Nov 22, 2007
9:42 am
Hello guys, I'm just starting out with visual studio 2005 and I'm trying to use c++ to send messages to a Perl based web service at my ISP internet website. I...
6067 Oeschey, Lars (I/EK-1...
lars.oeschey Send Email
Nov 22, 2007
6:25 pm
... my fault, I solved it. The SOAP server checks the values, so the returned "1" was indeed correct, since my values were illegal ;) Lars...
6068 mark_elrod Send Email Nov 23, 2007
8:05 am
Hello - I have a client sending data to a server and the XML is blowing up during parsing. I need to view the envelope before SOAP::Lite parses it. I tried...
6069 Ivor Durham
ivordurham Send Email
Nov 26, 2007
8:55 pm
I have a simple service for uploading a file to a server with authentication. If the authentication fails, I generate a fault. If I invoke the operation using...
6070 mike@...
michaelptaylor Send Email
Dec 3, 2007
5:22 pm
Hi. First-time SOAP::Lite user here. So I have to make a Perl program that acts as a SOAP client; and as far as I can see, the only realistic option for doing...
6071 Edward Kawas
kawas7 Send Email
Dec 4, 2007
5:33 am
I believe that the latest version is 0.69 http://search.cpan.org/~byrne/SOAP-Lite-0.69/ Eddie _____ From: soaplite@yahoogroups.com...
6072 mike@...
michaelptaylor Send Email
Dec 5, 2007
4:58 pm
I am trying to make a SOAP::Lite client that accesses a service described by WSDL. Here is the simplest possible version: #!/usr/bin/perl -w use strict; use...
6073 Chuck
chuck_cochems Send Email
Dec 8, 2007
8:20 pm
Okay i'm trying to talk to this api that returns data structurs as results. Here's my code to talk to it. $result =...
Messages 6044 - 6073 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