Hello, In partial answer to my own question, I did find a very similar post in #668. I think that this is the same issue (in my case, the "tns" namespace is...
1065
Alex Harper
aharperwork
Dec 3, 2001 11:37 pm
Hi, we've been frozen against SOAP::Lite 0.46 (client) and SOAP::Lite 0.50 (server) since our last code freeze many months ago. For various reasons we're now...
1066
Paul Kulchenko
paulclinger
Dec 4, 2001 12:03 am
Hi, Alex! ... Would you send me offlist detailed example of what's wrong? XML fragment and client/server code (if I'll be able to run them) would be helpful. ...
1067
Jean Philippe DURRIOS
jpdurrios
Dec 4, 2001 5:51 am
Hi all, I am new to the group. I tried to use UDDI::Lite but I lack info on how to use it in order to get other things than the name of the first servie only,...
1068
Chris Davies
roaima
Dec 4, 2001 11:36 am
Ah. Yes, well spotted! Unfortunately you can't specify -T on the "command line" under mod_perl, since perl's already running and it can't enable the taint...
1069
Paul Kulchenko
paulclinger
Dec 4, 2001 5:54 pm
Hi, Jean Philippe! ... You may find examples in examples/fullsearch.pl and examples/UDDI/*. All methods that can return list will return list in list context...
1070
Paul Kulchenko
paulclinger
Dec 4, 2001 9:16 pm
Hi, Mental! ... Sure your can ;). Take a look here for more information: http://groups.yahoo.com/group/soaplite/message/830 For you code may look like: $s =...
1071
Mental
mental@...
Dec 4, 2001 10:42 pm
... <SNIP> ... Forgive the question, but can you set a timeout for something you're accessing via ->service similarly? Detecting a fault is great! No results ...
1072
Mental
mental@...
Dec 4, 2001 10:50 pm
... Hey, thanks! I was reading through the code and was thinking.... why not add a new entry to SOAP::Constants. Something like $CONNECT_TIMEOUT with a...
1073
magnus1er
Dec 5, 2001 5:43 am
Hello, A very basic question but I can't find an answer (on the web at least). I'm learning XMLRPC::Lite but I can't find a way to access a returned array from...
1074
Paul Kulchenko
paulclinger
Dec 5, 2001 3:07 pm
Hi, Emmanuel! ... From my understanding XML-RPC spec [1] allows you to return only one value, so when you do return (1,2,3); client side will have access only...
1075
Paul Kulchenko
paulclinger
Dec 5, 2001 3:13 pm
Hi, Emmanuel! In addition to that, you still can access array if you want to (just use 'paramsall39; method instead of 'result39;): my @res = XMLRPC::Lite ->...
1076
magnus1er
Dec 5, 2001 9:10 pm
test - please disregard...
1077
emmanueldecarie
Dec 6, 2001 4:03 pm
Thanks Paul for the reply. I'm not sure if you saw my previous messages, but anyway, it worked in both case and you are right about the xml-rpc spec. ...
1078
davent
Dec 6, 2001 8:51 pm
Hello all. This is a simple, stupid question, but I cannot seem to find an answer. I'm using SOAP::Lite to run a simple client. $lite = SOAP::Lite ->uri(...
1079
Gisle Aas
gisle@...
Dec 6, 2001 9:49 pm
... print "1..192;n"; use SOAP::Lite; my $p = SOAP::Lite->service("http://soaptest.activestate.com:8080/PSDBService.wsdl"); my $f =...
1080
vaibhav_arya
Dec 8, 2001 10:45 am
Hi: I am building an application with a SOAP::Lite server and clients in Perl, .NET, PHP and Java. While trying to use my .NET client against my SOAP::Lite...
1081
immortal_123
Dec 9, 2001 5:14 am
1082
peterfwilkinson_au
peterfwilkin...
Dec 10, 2001 3:01 pm
Hi, Is there a way to set the ip address/hostname to use when using a stubmaker generated module rather than the ip address that was passed in as the host in...
1083
kowalski
Dec 10, 2001 3:46 pm
I am attempting to call my SOAP server ACME (implemented in Java & published via WSDL) using SOAP::Lite. The name of the method I would like to invoke is...
1084
Paul Kulchenko
paulclinger
Dec 10, 2001 4:24 pm
Hi, Peter! ... Yes. There are two types of WSDL files: "full" WSDL that has interface description as well as service (endpoint) address and "tModel" WSDL that...
1085
kayotix
Dec 10, 2001 4:31 pm
I am trying to get certificate authenication working with an XMLRPC::Lite server that is using HTTP::CGI for its transport. More specifically, I want to...
1086
Paul Kulchenko
paulclinger
Dec 10, 2001 4:36 pm
Hi, Lon! you're right, service-based call will return result, so you don't need to call result() method. ... In this case $response already has the result of...
1087
Paul Kulchenko
paulclinger
Dec 10, 2001 4:42 pm
Hi, Vaibhav! ... Would it be possible to post a request wiredump? Thank you. Best wishes, Paul. ... __________________________________________________ Do You...
1088
Paul Kulchenko
paulclinger
Dec 10, 2001 4:49 pm
Hi, Gisle! Yes, there's an issue. It was done in attempt to implement full support for namespaces in WSDL which didn't happen yet. You can get previous...
1089
Paul Kulchenko
paulclinger
Dec 10, 2001 4:57 pm
... You need to use pseudotype 'xml' to not escape your XML fragment: return SOAP::Data->type(xml => '<foo>bar</foo>'); You can specify attributes for method...
1090
kowalski
Dec 10, 2001 9:07 pm
Hi Paul,
Thanks for the help. I got the first part of your reply, but I'm so= rt of confused on the second. Is the < escaped XML? If so and my XML...
1091
Vaibhav Arya
vaibhav_arya
Dec 11, 2001 10:37 am
Hi Paul: Thanks for your help. The following is the Soap Request from the COM object using MS SOAP SDK (It seems like MS SOAP is sending an empty string ...
1092
bnsoundar
Dec 11, 2001 10:13 pm
Hi, I am using SOAP::Lite to call a method in a Java class that returns a java object. Could someone please send/point me to a code snippet that would help me ...
1093
Paul Kulchenko
paulclinger
Dec 11, 2001 10:53 pm
Hi, Balaji! ... examples/oo-apache.pl file from SOAP::Lite distribution has an example on how to send and receive back object from Apache SOAP. Java example...