Hi! ... Yep. ;o) At least AFAICT, there is nothing like that in SOAP::Lite. There is a way to do that with CGI.pm though, maybe you are mixing that up. ...
3930
Mark Fuller
amigo_boy2000
Sep 16, 2004 2:55 pm
... He may be recalling something described in the POD under the heading "IN/OUT, OUT PARAMETERS AND AUTOBINDING". It shows an example of a client's variable...
3931
Klaus Guenter
klaus.guenter@...
Sep 16, 2004 3:07 pm
OK, then I never saw this in the POD. Nice to know. Anyone ever tried that? Regards, Klaus -- People often find it easier to be a result of the past than a...
3932
chriswhicks
Sep 18, 2004 10:55 am
Is it possible to get SOAP::Lite to return an array that conforms to what folks have defined in a WSDL file? I'm trying to get SOAP::Lite to produce something...
3933
qt4jpf86
Sep 18, 2004 6:37 pm
I have bad credit, I am self employed and I was able to re-finance at a really low rate. I am saving hundreds a month Just fill out this simple FREE form ...
3934
Issac Goldstand
margol_il
Sep 19, 2004 7:58 am
... From: "aviannachao" <aviannachao@...> To: <soaplite@yahoogroups.com> Sent: Wednesday, September 15, 2004 7:42 PM Subject: [soaplite] specifying xmlns...
3935
Issac Goldstand
margol_il
Sep 19, 2004 8:05 am
See, the problem with doing something new is that you become the "resident expert", which I really shouldn't be as I didn't succeed from deep understanding of...
3936
glaucon74
Sep 19, 2004 10:37 pm
I've written a SOAP HTTP server daemon using SOAP::Lite. It works great. I can connect to it fine across the network when running it at the command line. I've...
3937
ar_munich
Sep 20, 2004 9:58 am
Hi, a webservice expects me to send an empty array (params) represented by the following xml: <params xsi:type="soapenc:Array"...
3938
Steven N. Hirsch
hirschs@...
Sep 20, 2004 2:44 pm
... Whether or not there is a way to coerce SOAP::Lite into doing this, you should be aware that the XML specification does not permit or support the notion of...
3939
James McGovern
jm04469
Sep 20, 2004 6:14 pm
I am the lead author for an upcoming book entitled: Enterprise SOA. I am looking for ten individuals to review a portion of the manuscript and provide timely...
3940
Colin Magee
colin@...
Sep 20, 2004 6:40 pm
Mark, Any chance you could mail the same examples to me? I too am new to web services but not to Perl, have bought the book "Web Services with Perl" and am...
3941
Neil Quiogue
nquiogue@...
Sep 21, 2004 4:36 am
Hello, Apologies from a newbie if this was discussed before. I kept getting an error: org.xml.sax.SAXException: Deserializing parameter ...
3942
wbm111us
Sep 21, 2004 5:22 am
Hello - I have installed the latest SOAP::Lite on a HPUX machine (HPUX 11.11, apache 1.3.31, mod_ssl 2.8.19, mod_ssl 1.29, perl 5.8.3). SOAP::Lite is running...
3943
poulkornmod
Sep 21, 2004 8:41 am
Dear all, This question might be a FAQ question, but I have searched and found no answers to my question. When defining the WSDL - I understand that the...
3944
aviannachao
Sep 21, 2004 3:25 pm
In searching for information on deserializers I stumbled upon this gem: ...
3945
Graham Bright
bright_g2001
Sep 22, 2004 8:52 am
Hi Colin, I gave up using Soap::Lite instead I used a mixture of LWP and MIME tools for perl to simply post the formulated xml request to the server. I found ...
3946
naterajj
Sep 23, 2004 5:41 pm
Hello, I have a Daemon: use SOAP::Transport::HTTP; use strict; my $daemon = SOAP::Transport::HTTP::Daemon -> new ( LocalAddr => 'localhost39;, LocalPort =>...
3948
flarneater
Sep 27, 2004 4:45 pm
I'm trying to configure a SOAP server using MIME::Lite. I'm using this code on the client side: my $sl = SOAP::Lite -> proxy( 'http://localhost:7070/soaptest39;...
3949
flarneater
Sep 27, 2004 4:51 pm
... Ditto. Some simple, complete examples, would be much appreciated. I will say that I did have SOAP operating on some mod-perl enabled servers, but it was...
3950
justin122345
Sep 27, 2004 8:14 pm
Hello, Please bear with me, as I'm new to using the SOAP::Lite module. I have to write a client app that makes a request to a .NET service and according to the...
3951
Andrew Koebrick
exlibrismn
Sep 27, 2004 8:26 pm
Greetings, I am attempting to connect to a WSDL (for an Ultraseek search engine) and call a basic method. My SOAP::Lite client consistanly fails. I am,...
3952
Neil Quiogue
nquiogue@...
Sep 28, 2004 2:41 am
Hello, How does one maintain the data type of a returned complex structure? Part of the response from a request returns: <multiRef id="id0" soapenc:root="0"...
3953
Duncan Cameron
duncan_camer...
Sep 28, 2004 10:24 am
... When I used SOAP::Lite to connect to dot net a couple of years ago I found that I had to do these 1) specify 2001 schema on the soap constructor ...
3954
tyndyll
Sep 28, 2004 2:47 pm
Hi All (and apologies in advance if this is a double post) I am trying to write a SOAP client which requires authentication on the server. The code i have so...
3955
mshtuk_dev
Sep 28, 2004 10:11 pm
Hello. How to get XML message, which generated and sent by SOAP::Lite? Can I get XML before sending request to WS? Thanks, Mikhail...
3956
jpeyser
Sep 29, 2004 5:24 pm
See Message 3217 and the replies....
3957
Igor Korolev
ikorolev@...
Sep 29, 2004 9:10 pm
Just override SOAP::Trace::debug method and add you prints there: sub SOAP::Trace::debug { my $caller = (caller(1))[3]; $caller = (caller(2))[3] if $caller =~...
3958
Mikhail Shtuk
mshtuk_dev
Sep 29, 2004 9:12 pm
Note: forwarded message attached. ... Do you Yahoo!? Express yourself with Y! Messenger! Free. Download now. Just override SOAP::Trace::debug method and add...
3959
Andrew Koebrick
exlibrismn
Sep 30, 2004 12:53 pm
I am posting a solution to my own question, in case future programmers face an identical/similar problem. Thanks for the off-list assistace I received. The...