people, I'm trying to a javascript soap client to access a cgi SOAP server running on linux and display the results using DHTML. I've tried to send a soap...
1001
Paul Kulchenko
paulclinger
Nov 14, 2001 6:19 pm
Hi, Geoff! And how the response envelope looks like? ... According to the log file server sends something back. Could you show this response? The reason for...
1002
mrdamnfrenchy@...
mrdamnfrenchy
Nov 14, 2001 11:17 pm
First, congratulation on Geoff Ellis for sending message 1000 to this group :) The problem: I have a SOAP::Lite client sending xml documents to a SOAP::Lite...
1003
Rob Torop
robt@...
Nov 15, 2001 2:28 am
1. If $x is the result of a SOAP::Lite call, how can I print an XML representation of $x? I was hoping that SOAP::SOM would have an asString method or...
1004
eat_lemon@...
eat_lemon
Nov 15, 2001 7:08 pm
Consider the following code: %maps = ("123", "3"); $map = SOAP::Data->type("map") ->value(92;%maps); Now, this will serialize the key "123" as an integer,...
1005
John T. Brown
jobrownatmpi
Nov 15, 2001 8:22 pm
I'm also having a problem passing an array from a Perl client using SOAP::Lite to a java server implemented with Glue1.2. I made the changes suggested to the...
1006
Rajeev Dave
rmdave
Nov 16, 2001 10:34 pm
Has anyone used http://www.xmethods.net/detail.html?id=95 and the SOAP LIte VB i/f? I would like to see the Create Object call. I can successfully use example...
1007
Kent Sandvik
kent_sandvik
Nov 16, 2001 11:13 pm
Hi, I'm trying to implement a global ticket-based authentication system where the ticket info is passed in a //authInfo SOAP field or something similar between...
1008
francis_reader@...
francis_reader
Nov 17, 2001 2:44 pm
How do you force the same behaviour when using mod_soap and Apache?...
1009
L Miller
kowalski
Nov 19, 2001 6:10 am
Paul: I'm doing some development for a simple SOAP client using your excellent module, but I've run into one issue: In order for my client to talk to a WSDL...
1010
Dana Powers
beatdown_1_2
Nov 19, 2001 7:31 am
The CPAN module you need is Crypt::SSLeay (http://search.cpan.org/search?dist=Crypt-SSLeay). It requires having installed openssl first, however. Once...
1011
Paul Kulchenko
paulclinger
Nov 19, 2001 3:29 pm
... Dana Powers already gave the right answer. ... what's the ->data method? Would you show the code example, it'll refresh my memory ;)? Thanks. Best wishes,...
1012
Paul Kulchenko
paulclinger
Nov 19, 2001 5:57 pm
Hi, Rajeev! ... probably something like this will work (untested): Set soaplite = CreateObject("SOAP.Lite") Set hash = soaplite.hash("symbol", "MSFT") Set data...
1013
Paul Kulchenko
paulclinger
Nov 19, 2001 6:09 pm
Hi, Kent! Probably the easiest (niciest? ;)) way to do that is to override on_dispatch method for SOAP::Server, check authInfo and decide what to do. my...
1014
Paul Kulchenko
paulclinger
Nov 19, 2001 6:32 pm
Hi, Simon! ... Unfortunately there is no easy way to do that. That's because key in hash will always be stringified in Perl, so you can't use SOAP::Data to...
1015
Sean.Meisner@...
Nov 19, 2001 7:32 pm
Hi, Having not used mod_soap, I may stand to be corrected on this. However, I would suspect that if forking is not working properly under Apache, then a fix...
1016
Enrique Melero
quiquee
Nov 20, 2001 8:58 am
A very short question: which is the equivalent to $soap -> call ( new => 100 ) -> result in VB ? I recognise I still dont understand either the perl...
1017
eat_lemon@...
eat_lemon
Nov 20, 2001 2:13 pm
Hi Paul, Sorry if you are seeing triples of this message, but when I click reply, I forgot to change the "To" field to this group. ... Thanks a lot for your...
1018
nalbela@...
nalbela
Nov 21, 2001 3:26 am
HI, I'm trying to get the server to send a file as an attachment in the response. I'm really not sure how to go about doing it. I tried looking at MIME::Lite...
1019
kowalski
Nov 21, 2001 3:56 pm
Hi, I know there are lots of other questions on the thread but I think this would be of benefit to many other SOAP::Lite developers. If there's a reference or...
1020
Sean.Meisner@...
Nov 21, 2001 5:47 pm
Hi, The way I do this type of thing is, after the SOAP call returns, I grab the XML fragment as a string ($acme_response in your case) and process it in my...
1021
Paul Kulchenko
paulclinger
Nov 21, 2001 5:55 pm
Hi, Lon! ... That's correct advice, however there is one more thing. Your XML code isn't valid, because it has more than one root. XML parser will complain if...
1022
werner ackerl
cjbecjbe
Nov 22, 2001 10:41 am
after i upgraded my server to 0.52, apache soap refuses to parse the array type 1) error message No Deserializer found to deserialize a ...
1023
Paul Kulchenko
paulclinger
Nov 22, 2001 3:31 pm
Hi, werner! ... Looks like a bug to me, but I can't reproduce it. Arrays that my code is generating are always have SOAP-ENC:Array type. What's your code on...
1024
eat_lemon@...
eat_lemon
Nov 22, 2001 10:01 pm
Hi, I have a perl client and a Java server using Apach Soap. When I pass a number to the Java server and it is expecting a "long", but soaplite packages it as...
1025
werner ackerl
cjbecjbe
Nov 23, 2001 8:55 am
... wrote:> Hi, werner!> > > SOAP-ENC:arrayType="xmlsoap:Map[11]" > > xsi:type="namesp2:Array">> Looks like a bug to me, but I can't...
1026
Paul Kulchenko
paulclinger
Nov 23, 2001 5:06 pm
Hi, Simon! ... It depends on Java impelemtation. You may type it as long to be on a safe side. It could be as simple as this: $long = SOAP::Data->type(long =>...
1027
Paul Kulchenko
paulclinger
Nov 23, 2001 5:53 pm
Hi, Werner! ... You can always combine explicit typing with autotype. autotype only works for values where type is not specified. ... Why do you need to do...
1028
eat_lemon@...
eat_lemon
Nov 23, 2001 8:31 pm
Hi Paul, ... server ... I tried using SOAP::Data->type(long => 123); SOAP::Lite complained saying no deserializer found. It only stops complaining after I...
1029
Paul Kulchenko
paulclinger
Nov 23, 2001 8:42 pm
Hi, Simon! ... Why would it? Could you show your code? That's code for serializer (not for deserializer). Here is the code that works for me: my $long =...