Hi Tim, SOAP::Lite cookbook might be a good source of information for questions like that. Check "using cookie" item: ...
2121
Keanan Smith
KSmith@...
Nov 22, 2002 7:58 pm
That's actually a perl error, nothing whatsoever to do with soap, your 'demo' package needs to end with a true value (typically by simply placing a '1;' at the...
2122
tigerdarla
Nov 22, 2002 11:34 pm
Hello all, I am using SOAP::Lite for my client and GLUE (using Java) as my server. I created some simple tests on the server that just return the argument...
2123
Jason Yates
jaywhy2@...
Nov 23, 2002 4:04 pm
Thanks for responding. I think you misunderstood my question. I'm didn't have any trouble understanding your example client, other then the fact of being...
2124
Mohd Zaid Md Fazil
zaidmf
Nov 25, 2002 2:00 am
Hi group, I manage to install and run soaplite server and client under normal CGI and and http deamon. But now i would like to use apache/mod_perl because of ...
2125
Paul Kulchenko
paulclinger
Nov 25, 2002 2:40 am
Hi Nelson, ... don't do it. It will set to use the same prefix for two (encoding and envelope) namespaces. You don't need to use them at all, and if you do...
2126
Paul Kulchenko
paulclinger
Nov 25, 2002 2:43 am
Hi Zaid, ... you need to have Apache server and mod_perl extension installed. See http://perl.apache.org/ for more information. Best wishes, Paul. ...
2127
Paul Kulchenko
paulclinger
Nov 25, 2002 3:00 am
Hi Jason, I guess there are several points that have to be clarified. First of all, SOAP::Lite converts module names into URIs simply converting '::' into '/'....
2128
Paul Kulchenko
paulclinger
Nov 25, 2002 3:04 am
Hi Darla, It seems like your best bet is to disable autotyping since the most of the information is generated from WSDL anyway. Something like this might work:...
2129
Mohd Zaid Md Fazil
zaidmf
Nov 25, 2002 4:23 am
I already have Apache and mod_perl installed on the system ... From: "Paul Kulchenko" <paulclinger@...> To: "Mohd Zaid Md Fazil" <zaid@...>;...
2130
Paul Kulchenko
paulclinger
Nov 25, 2002 5:15 am
Hi Zaid, ... Then try "use Apache;" in your debugger. For some reason Makefile.PL doesn't see your Apache.pm. Would it be possible that you have several...
2131
Paul Kulchenko
paulclinger
Nov 25, 2002 5:27 am
Hi Thyaga, Don't see anything wrong in your code; Java server may not be able to find a method because SOAPAction header or namespace in the request is...
2132
Jason Yates
jaywhy2@...
Nov 25, 2002 6:45 pm
Thanks a lot. I understand a lot better now. Probably should have read the SOAP::Lite documentation a little closer, and could have saved myself a lot of...
2133
Paul Kulchenko
paulclinger
Nov 25, 2002 7:16 pm
Hi Jason, ... I don't see anything wrong with the code either and you shouldn't have this error unless you're using Perl 5.8.0 that has bug in ...
2134
Darla Weiss
tigerdarla
Nov 25, 2002 7:22 pm
Thanks, but that didn't seem to help. Now the SOAP message looks like this: <namesp2:testDoubleArray ...
2135
Jason Yates
jaywhy2@...
Nov 25, 2002 7:28 pm
I'm using perl 5.8. But it works perfectly fine using dispatch_from. Thanks. Jason Yates...
2136
Paul Kulchenko
paulclinger
Nov 25, 2002 7:33 pm
Hi Jason, ... Yes, it does. dispatch_from uses AUTOLOAD for a specific package, whereas autodispatch uses UNIVERSAL::AUTOLOAD. The bug in 5.8 is in ...
2137
Andersson, Kimmo
Kimmo.Andersson@...
Nov 26, 2002 8:34 am
Hi ! First some background information. I am using SOAP::Lite from C++ in HP-UX environment. I have embedded the Perl interpreter into my C++ program but ...
2138
Jason Yates
jaywhy2@...
Nov 26, 2002 7:27 pm
In the simple example below, I import the CGI module but only the :html2 export group. Then I use SOAP::Lite to dispatch the CGI module. The problem is...
2139
Paul Kulchenko
paulclinger
Nov 26, 2002 8:27 pm
Hi Jason, ... True, but import is more convenience than protection mechanism. Even if you import :html2 only you still can access any other function using full...
2140
Keanan Smith
KSmith@...
Nov 26, 2002 11:19 pm
dispatch_to('Module39;) dispatches to the *entire* module (It has nothing whatsoever to do with the export list) if you want only certain functions to be...
2141
robertsumca
Nov 27, 2002 3:31 am
I have question regarding serializer. I want to convert a perl hash into the following output. The has is defined as follows my %hash = (USER_ID => 24875227,...
2142
Mohd Zaid Md Fazil
zaidmf
Nov 27, 2002 3:48 am
Hi group, Does anybody successfully deploy soaplite with mod_perl 1.99 and apache 2.0.40?. I manage to install and configure httpd.conf but get an error when...
2143
c002928
Nov 27, 2002 4:56 am
I need to access an asp.net web service that requires username and password. A working soap message looks like this: <soap:Envelope...
2144
Andersson, Kimmo
Kimmo.Andersson@...
Nov 27, 2002 9:08 am
Hi ! I sent Yesterday a message about a "proxy: transport protocol not specified" problem. Fortunately I am now able to cancel it, the problem is solved. I...
2145
Duncan Cameron
dcameron@...
Nov 27, 2002 9:34 am
... Yes, funnily enough the 'map' type. Try this: SOAP::Data->type(map => \%hash)->name('hash39;) It produces a sequence of item elements, each with pairs of...
2146
robertsumca
Nov 27, 2002 6:08 pm
A follow up question on this. If I have a nested hash likes this my %hash = ( PROFILES => { ADDRESS2 => '#20', STATEORPROVINCE => 'CA'. COUNTRY...
2147
aun_ok
Nov 28, 2002 4:26 am
Hi all, Actually I have Activeperl on Win2000 server. I have used activeperl to implement my web page on IIS. Now I try to use Soap with my server. I put ...
2148
Peter Sykora
peter_sykora...
Nov 29, 2002 7:34 am
Hallo, has anybody of you examples of how to create a soap client using fastcgi? I'm currently trying to create a webservice based on it and wonder if I can...
2149
floriantreml
Nov 29, 2002 2:52 pm
Hi! I'm using a webservice which takes a complex object, which is defined in an xsd file, as parameter. I have to set the namespace of this element by using...