Hello, Briefly, I'm having trouble with the Java hash types; our environment is a Java server (GLUE 1.3) communicating with Java and Perl clients. One of the...
1269
gyles19
Mar 2, 2002 1:03 am
I'm prototyping a distributed build system modeled vaguely after Mozilla's Tinderbox, but using SOAP for the message passing. I have a client/server pair which...
1270
Duncan Cameron
dcameron@...
Mar 2, 2002 9:25 am
... Unless you are running under mod_perl, there's no persistence when you run a CGI script. The web server runs your script as a separate process for each...
1271
Joi Ellis
gyles19
Mar 2, 2002 6:10 pm
... Thanks for responding. I'm still confused, though. I've been writing CGI scripts without mod_perl for years, so I'm quite familar with the data...
1272
Paul Kulchenko
paulclinger
Mar 2, 2002 6:30 pm
Hi, Joi! ... They are not the same. you're trying to do this: use vars qw($foo); print &page(); $foo="bar"; sub page { return "Foo: $foo"; } It's not...
1273
William McCracken
usiwill
Mar 5, 2002 10:24 pm
I was wondering if anyone knows of a way to force a SOAP::Lite server to deserialize an element as a specific type. I am running into the following issue: I...
1274
rajeshchettyau
Mar 6, 2002 4:29 am
Hi, I have a python soap service that I need to access. I need to send this service a header with a username and password here is the code I'm trying: use...
1275
JakeCigar
Mar 6, 2002 5:27 am
How do I access <value xsi:type="ns2:Vector"> <item xsi:type="xsd:string">vector-zero</item> <item xsi:type="xsd:string">vector-one</item> <item...
1276
tmornini
Mar 6, 2002 10:00 am
I'm working on a 2-way SMTP transport as per: http://www.pocketsoap.com/specs/smtpbinding/ And I just ran across a typo in SOAP::Lite. Here's the patch: ***...
1277
Duncan Cameron
dcameron@...
Mar 7, 2002 1:11 am
... Jake This is 'very frequently asked question'. The first thing to do is a search of the group's archive on Yahoo. There's a thread from last year which...
1278
tmornini
Mar 7, 2002 2:50 am
Sorry to work the list so hard, but I can't find the answer in the docs, at soaplite.com or on Google. :-( The SOAP service that we're providing needs to know...
1279
JakeCigar
Mar 7, 2002 3:00 am
that old thread talks about how to do it using the "valueof()" syntax that reads the XML a bit too literally! It seems that Apache Soap sends almost every...
1280
JakeCigar
Mar 7, 2002 4:19 am
I see 2 cases
#1
<foo>
<bar>drink</bar>
<bar>talk</bar>
<bar>leave</bar>
<foobar>something</foobar>
</foo>
and
#2
<value xsi:type="ns2:Vector">...
1281
Paul Kulchenko
paulclinger
Mar 7, 2002 4:28 am
Hi, Duncan! ... Thanks, Duncan. You're right, 'too frequently asked' ;). So, what's the best thing to do? Deserialize it as an array? How about this: <foo> ...
1282
ekw1
Mar 8, 2002 6:31 am
When executing this SOAP call, SOAP::Lite -> uri(the_uri) -> proxy('http://username:pw@servername/proxyscript.cgi') -> function() -> result; is it possible to...
1283
tmornini
Mar 8, 2002 7:58 am
Let me start this post by making it clear I'm absolutely not suggesting that anybody owes me anything! I'm perfectly aware that the answers that come from the...
1284
Sam Tregar
samtregar
Mar 8, 2002 8:28 am
... This is the best treatment of the subject I've ever seen: http://www.tuxedo.org/~esr/faqs/smart-questions.html Although it's a bit over-deterministic....
1285
Tom Mornini
tmornini
Mar 8, 2002 8:40 am
... Thanks, Sam. I was trying to politely, and with a bit of humor, get a bit of attention. I was surprised not to have received a response to some of the good...
1286
Sean.Meisner@...
Mar 8, 2002 4:46 pm
Tom, For your patch and module contribution, your best bet would probably be to send a message directly to Paul. paulclinger@... Cheers, Sean ... ...
1287
Chris Davies
roaima
Mar 8, 2002 5:38 pm
Most web servers will provide the authenticated username as part of the environment variables created for a CGI script. (This includes CGI scripts handling...
1288
Duncan Cameron
dcameron@...
Mar 8, 2002 8:10 pm
... Tom I got the impression that Paul has been 'off-line39; recently. In the past he has been receptive to patches, so I assume that he's just not looking at...
1289
Duncan Cameron
dcameron@...
Mar 8, 2002 8:12 pm
... Rajesh If you haven't cracked this yet, can you post a trace of the SOAP envelopes? Duncan Cameron...
1290
ekw1
Mar 11, 2002 12:58 am
Can SOAP::Lite be used with mod_perl without using mod_soap? This is running under Apache 1.3.20/mod_perl 1.24/RedHat 7.2 (kernel 2.4.7). I have a perl script...
1291
Sam Tregar
samtregar
Mar 11, 2002 1:28 am
... Yes. I got a PerlHandler using SOAP::Lite running with relative ease. ... Apache::PerlRun is a bit of a monstrosity. Try with Apache::Registry or write a...
1292
Paul Kulchenko
paulclinger
Mar 11, 2002 2:09 am
Hi, ekw1! It coule also be problem with Expat and mod_perl. Take a look here: ...
1293
Paul Kulchenko
paulclinger
Mar 11, 2002 2:59 am
Hi, Duncan and Tom! ... ;) that's true. I'm sorry for that. It's on the list. Duncan is correct about 'one-man package' and 'has been off-line recently'. I ...
1294
ekw1
Mar 11, 2002 9:21 am
I have SOAP::Lite running under mod_perl successfully. Does using mod_soap improve performance further? Thanks, Eric...
1295
Paul Kulchenko
paulclinger
Mar 11, 2002 6:33 pm
Hi, ekw1! ... No. It just provides slightly different way of configuration. Best wishes, Paul. __________________________________________________ Do You...
1296
zzhongxiu
Mar 12, 2002 3:54 pm
Hi! I am new to SOAPLITE. I use it to publish the perl module as web services. Below is the code: #!/usr/local/bin/perl -w use SOAP::Transport::HTTP; my...
1297
James Felix Black
jfelixbl@...
Mar 12, 2002 9:02 pm
i, As the subject line says; I'm trying to pass a Java object that contains another to and from a Perl client. The server is using The Mind Electric's GLUE...