Hi, Mathieu! ... This is the header that XMLRPC::Lite39;s debug shows, but it's not exactly header that is presented on wire. Low-level LWP::Protocol library...
908
mrdamnfrenchy@...
Oct 13, 2001 12:02 am
Thanks Paul, adding $XMLRPC::Constants::DO_NOT_USE_CHARSET = 1; works great in all cases. I'll send this to zope-dev to get them to change the content-type...
909
John Liu
johnl@...
Oct 15, 2001 10:38 pm
Hi, there, Tony provided an example of sending a struct from SOAP::Lite. I tried to test echoStructArray use the php SOAPx4 endpoint, I couldnot make it work: ...
910
Paul Kulchenko
paulclinger@...
Oct 15, 2001 11:08 pm
Hi, John! ... arrayType that SOAPx4 returns doesn't look valid to me, hence SOAP::Lite complains. Dietrich? Best wishes, Paul. ... ...
Paul, Thanks for the quick response. 1. I realized this is not an easy issue - [am i right, Dietrich?] 1) there're other implementations treat ':struct[]' as a...
Paul's SOAP::Lite package also provides a wonderful implementation of the XML-RPC protocol, which is a much lighter weight way to do what SOAP does. Check out...
How can one use long-running RPC-functions? The problem is it usually returns the "500 read timeout" message when calculations on the other side take a lot of...
914
Sergei Dolmatov
sergei@...
Oct 17, 2001 12:28 pm
... I'm very stupid, but I didn't found a way how to do trace... :( I use on_debug(sub{print@_}) method - isn't it correct? But problem now is solved by adding...
Hi, Sergei! ... It's correct. It does exactly the same as use SOAP::Lite +trace => debug => sub {print@_}; ... Right. You need to provide your strings in...
Hi, I'm trying to connect a server and a client using TCP transport. When I use autodispatch, it works fine; the example works fine, but when I try to create a...
SOAPLite 0.51 is available if you: ppm verify --upgrade SOAP-Lite I just discovered this this morning. Thought it might be useful to others. --Ivan .............
919
Mental
mental@...
Oct 18, 2001 5:04 pm
Hello there. Sorry to jump right in with questions.
Currently I'm setting up a SOAP::Lite server and clients. Everything has
been easy to use and has worked...
Hey, So I'm using activestate perl, and soaplite 0.51 and I have the following odd thing happening: 1) one side I have a server starting and instantiating some...
My problem also appears to be platform dependant. When the 'being called' side is windows it works, when it's linux, it screws up the inheritance. --Ivan...
Hi, Ivan! I'm not aware of any platform-dependant issues. Client/server code definitely will help (you can send it offlist at paulclinger@...). Only one...
923
Sheth, Niraj
niraj_sheth@...
Oct 18, 2001 7:51 pm
Hi, Can anyone provide me code-example(or URL) to pass hash from perl (SOAP::Lite server) to java client(as Vector)? I am pretty much newbie to SOAP(on both...
Hi, I found using the Map datatype to be best. You can create a hash in perl, tell it (via Soap::Datatype) it is a type of map and send it over. Java will...
Hi, Right now we have a soap cgi-based server. We would like better performance. I read the guide and there were four options...which one is the best (as far...
how do i effectivily shutdown a daemon (SOAP::Transport::TCP::Server) under a forked process. your help is appreciated. Jeremy. ################### Loop(); sub...
Hi, I managed to fix the problem with the client/server (thanks, Paul), but now I have another problem. The client sends objects to the server, a complicated...
... From my own experiments, the fastest option is to use the TCP server/client. Of course, it works better within the same machine. ... Plain vanilla CGI; but...
... Hm, did you read the manual, right? Did you read the IO::Socket::Inet Manual? You didn't? Well, if you had bothered to do so, you would have noticed this: ...
... Now _you_ should read the manual yourself, man! If you kept reading, you would have noticed: Timeout Timeout value for various operations in the...
In my neverending quest for going into the deepest depth of the TCP connections, now I'm trying to connect, through TCP, two different machines, using the same...
Hi, I have been trying to get this remote TCP connection running. I use this server: use SOAP::Transport::TCP; $SIG{PIPE} = $SIG{INT} = 'IGNORE39;; # don't want...
933
Sheth, Niraj
niraj_sheth@...
Oct 19, 2001 6:03 pm
Thanks Dave, I got it working ... but thought of writing down few lines so might be helpful to someone. From SOAP::Lite server ====================== ...
934
Sergei Dolmatov
sergei@...
Oct 20, 2001 7:46 am
... Well, my english is very poor :( I'd try to describe it more detailed - in perl client using SOAP::Lite I set encoding('iso-8859-1') property in request. ...
935
Bill Jones
sneex@...
Oct 20, 2001 1:53 pm
Subject: (Perl) WWW-Authenticate: NTLM using Soap or Soap::Lite? Is there a way to perform NTLM WWW-Authentication via Soap or Soap::Lite? I am on Solaris 8...
I created my first data-based connected SOAP client/server combination using SOAP-Lite. Now I want my business partner to be able to use my HTTPS/CGI SOAP...