Yes, it works, though it's undocumented, because it might not work with non-SOAP::Lite servers. SOAP::Lite gets information about binding class from URI and...
61
Duncan Cameron
dcameron@...
Feb 23, 2001 9:18 pm
Paul nmake test doesn't work on Win32 due to t/0*.t not being expanded into individual filenames. If the filenames are listed individually then it works...
62
Paul Kulchenko
paulclinger@...
Feb 23, 2001 9:34 pm
Hi, Duncan! Thank you for the info. Will fix. Best wishes, Paul. ... __________________________________________________ Do You Yahoo!? Yahoo! Auctions - Buy...
63
Tony Hong
thong@...
Feb 25, 2001 10:39 pm
We all know how great SOAP::Lite is - now's the time to show it! Paul's been nominated for ActiveState39;s "Active" Award, in the Perl Developers category. Make...
64
Clain, Dominique
Dominique.Clain@...
Feb 26, 2001 7:08 pm
Hi , Is it possible to get the value of a Attribute (from a Hashtable) from the Response Envelope..? Here is my Response Envelope obtained thanks to...
65
Paul Kulchenko
paulclinger@...
Feb 26, 2001 7:30 pm
Hi, Clain! ... you need to use just $vm->valueof; valueof() returns value of last match without parameters and MAKEs match and then returns the result if...
66
Clain, Dominique
Dominique.Clain@...
Feb 26, 2001 8:16 pm
Thanks. 1. Can i specify, like you say, an attribute just for -ONE- SOAP Response Element, even if they are several calls in my perl script..or the add of the...
67
Paul Kulchenko
paulclinger@...
Feb 26, 2001 9:58 pm
Hi, Clain! I'm not sure I understood you right, but you can always return element with attribute, providing SOAP::Data object instead of plain element, return...
68
Clain, Dominique
Dominique.Clain@...
Feb 26, 2001 10:47 pm
Hi paul, my second question is: I use a Map (De)Serializer in order to get my Map Object received from a SOAP Call, like you use a BeanSerializer for a simple...
69
Paul Kulchenko
paulclinger@...
Feb 27, 2001 1:22 am
Hi, Clain! ... Actually you shouldn't worry about underlying structure, because deserializer will make from Map elements proper hash, so you'll just need to...
70
Clain, Dominique
Dominique.Clain@...
Feb 28, 2001 2:07 am
Hi, I 've always the same error with the examples about SOAP::Schema --> Undefined subroutine &main::getQuote called at -e line 1. ... ...
71
Paul Kulchenko
paulclinger@...
Feb 28, 2001 2:47 am
Hi, Clain! I tried all combinations and all of them work fine (with both 0.46 and 0.47). This example has problem, you need to drop ';' If you run it with...
72
Chris Davies
Chris.Davies@...
Feb 28, 2001 11:11 am
I've just started using SOAP::Lite as a client/server to talk with an MS .NET client/server. I've read the bit in the docs about needing to fix up the encoding...
73
Tony Hong
thong@...
Feb 28, 2001 12:42 pm
Hi Chris, An SDL file is an XML description of interface and binding information for a service. Using an XML-based SDL document, a program can derive...
74
Michael J. Freeman
mfreeman@...
Feb 28, 2001 4:31 pm
I am having some problems getting my SOAP client to get data back from the SOAP server. I am using autodispatch and trying a call on a method that will return...
75
Paul Kulchenko
paulclinger@...
Feb 28, 2001 5:19 pm
Hi, Michael! Difficult to say, because there is no full information, but I don't see something wrong in your code. You may try little bit more simple example...
76
Michael J. Freeman
mfreeman@...
Feb 28, 2001 8:08 pm
Let me see if I can explain this better, I'll paste more code: use SOAP::Lite + autodispatch => uri => 'http://localhost/EG/POE', proxy =>...
77
Paul Kulchenko
paulclinger@...
Feb 28, 2001 8:56 pm
Hi, Michael! Right, but the key to the answer is here ... in commented line. If you'd use mod_perl you should get proper response, but since you're using CGI...
78
Duncan Cameron
dcameron@...
Feb 28, 2001 10:29 pm
Michael Can you see whether the following is substantially different to your code? This code produces the expected results: C:\My...
79
Clain, Dominique
Dominique.Clain@...
Mar 1, 2001 2:09 am
Hi, I' m trying to set my own WSDL File, and i receive this error with the "trace=>all" method: Is it due to a bad WSDL File or a configuration error... if I...
80
Paul Kulchenko
paulclinger@...
Mar 1, 2001 2:18 am
Hi, Clain! ... HTTP/1.0 404 Not Found Endpoint mentioned in WSDL file is not found. Either you didn't start the web server or endpoint specified in WSDL is...
81
Clain, Dominique
Dominique.Clain@...
Mar 1, 2001 2:43 am
Thanks, it's doesn't work with http://localhost.... i change with my ip adress, and it works now... Thanks again.. Dominique CLAIN Lumos Technologies Inc. ...
82
Ray Rizzuto
ray.rizzuto@...
Mar 1, 2001 8:07 pm
Hi! I'm using the SOAP::Transport::HTTP::Daemon for my server side. The machine running the server (saw) has 2 lan connections. If I use use...
83
Michael Percy
mpercy@...
Mar 1, 2001 9:08 pm
When using the Daemon, if you do not specify LocalAddr then you can access it with any hostname/IP alias, including localhost or 127.0.0.1. If you specify...
84
Paul Kulchenko
paulclinger@...
Mar 1, 2001 9:17 pm
Hi, Ray! ... Short answers are Yes and No (it's documented in HTTP::Daemon and I tried to introduce as few changes as possible into underlying modules). ... ...
85
Ray Rizzuto
ray.rizzuto@...
Mar 1, 2001 10:49 pm
Paul, I found that even the HTTP::Daemon package doesn't describe LocalAddr - it defers you to IO::Socket::INET! I think your daemon examples shouldn't specify...
86
Paul Kulchenko
paulclinger@...
Mar 1, 2001 11:04 pm
Hi, Ray! ... addresses. Good point. Will do. At least will mention both cases. Thanks. Best wishes, Paul. __________________________________________________ Do...
87
Dave Seidel
dave@...
Mar 3, 2001 5:28 pm
Forwarded from the Radio Userland mailing list. - Dave ... From: Dave Seidel [mailto:dave@...] Sent: Thursday, March 01, 2001 9:56 AM To:...
88
Paul Kulchenko
paulclinger@...
Mar 3, 2001 6:10 pm
Hi, Dave! That's the part of the price we pay for out-of-the-box interoperability. ApacheSOAP requires SOAPStruct type for structures to be bind to...
89
Dave Seidel
dave@...
Mar 4, 2001 1:39 pm
Hi Paul, Thanks for the speedy reply -- took me a while to try it because I was traveling. I added the maptype line immediately before the call into Radio, but...