Hello, all ... I've subclassed SOAP::Transport::HTTP::Daemon so that it does not block on accept() -- is uses IO::Socket to see if there are any waiting ...
4284
Alasdair Allan
dr_aallan
Jan 3, 2005 5:29 pm
... No, but that's pretty easy to do... ... How about threads then? See, http://www.astro.ex.ac.uk/people/aa/pages/computing/cookie_daemon.html Al....
4285
Joshua Hoblitt
dogma512
Jan 3, 2005 9:28 pm
Hi Folks, I've written a SOAP service that runs under SOAP::Transport::HTTP::Apache and it works just dandy when calling to it from a SOAP::Lite based client. ...
4286
supra, morne
mornesupra
Jan 4, 2005 12:34 pm
Hi all I am trying to call a webservice written in .NET. When I call it using an application called web service studio, I send in the following: <?xml...
4287
Bryce Harrington
bryceharrington
Jan 5, 2005 9:22 pm
I've just posted a new release of the WebService::TicketAuth module to CPAN, version 1.04. Changes in this release: * Inheritance behavior between WS::TA and...
4288
etaekema
Jan 6, 2005 2:28 pm
Hello everyone. I have a fairly simple soap server that takes input from a customer issue management system and transfers them to a different issue management...
4289
Joseph Hourcle
jhourcle
Jan 6, 2005 4:46 pm
... It's a problem with the SOAP client -- they're not escaping entities. use CGI ( escapeHTML ); my $result = $service->submitIssue(...
4290
etaekema
Jan 6, 2005 5:06 pm
Thankd Joe. The client is something written in .NET ... I've asked them to try to encode the freeform string parameters ... hopefully they can do that. I...
4291
Joseph Hourcle
jhourcle
Jan 6, 2005 5:50 pm
... The serializer in SOAP::Lite will encode entities (using SOAP::Utils::encode_data) if it's attempting to serialize it as a string. I haven't played with...
4292
etaekema
Jan 6, 2005 7:01 pm
I just ran a quick test and if I connect directly to the soap service it encodes the < characters and decodes it on the other side ... if I do it through the...
4293
jmzorko@...
jmzorko
Jan 6, 2005 7:34 pm
Hello, all ... OK, i'm trying to expand my SOAP::HTTP::Transport::Daemon subclass, with its' own new() method that will allow me to do other things. However,...
4294
etaekema
Jan 6, 2005 7:59 pm
Just ran a second test ... this time connecting to the same soap::lite service through the wsdl .. only this time using SOAPpy .. no problems at all there ......
4295
gartnerjmoody
Jan 6, 2005 8:19 pm
Folks, I am running a perl script that reads metadata from a database table, gets the text for a document, and then calls a web service to put the ...
4296
gartnerjmoody
Jan 6, 2005 8:30 pm
Another quick question (I hope) -- I used stubmaker.pl to generate a module for the Web Service calls. I added this: sub...
4297
Randy J. Ray
rjray_perl
Jan 6, 2005 8:55 pm
... This isn't actually an issue with the stubmaker, it's at the user-agent level. What happens is that it doesn't call get_basic_credentials until the initial...
4298
go81816
Jan 6, 2005 9:46 pm
I've tried to use the SOAP::Lite sample in mod_perl implementations on both a SunOS 5.8 box and an OpenBSD 3.6 box both with identical unsuccessful results. ...
4299
Bryce Harrington
bryceharrington
Jan 6, 2005 9:58 pm
... Hi Laurent, We think we've figured out how to handle the SSL capabilities. In our daemon we pass the following options into SOAP::Transport::HTTP::Daemon:...
4300
Tony Rose
tonyrose023
Jan 7, 2005 2:00 am
Hi, Sorry for the newbie question, and thanks for reading it :) I have been trying to do this for a few days and here is my cleanest approach for adding an...
4301
Paul Harman
seancortan
Jan 7, 2005 1:15 pm
I'm getting the following response back from an Apache AXIS service: <soapenv:Body> <ns1:notifyAddNodeWithValuesResponse ...
4302
Steve Piercey
vbfan78
Jan 7, 2005 1:44 pm
Hi, I've been successfully connecting to Web Services (Apache Axis) using SOAP::Lite v .60a. The end-point has been implemented in RPC/encoding, but is going...
4303
Steve Piercey
vbfan78
Jan 7, 2005 6:15 pm
Not sure if this is your problem, but the '->parts()' argument takes an array reference. I'm assuming you are using version 0.65 beta $ent = build MIME::Entity...
4304
Duncan Cameron
duncan_camer...
Jan 7, 2005 7:20 pm
... Hi Paul You don't need to worry about the multiRefs because SOAP::Lite automatically takes them into account when deserialising the SOAP envelope, using...
4305
Duncan Cameron
duncan_camer...
Jan 7, 2005 10:52 pm
... Hi John There is an line of code in the SOAP::Transport::HTTP::Daemon package that causes your constructor to be reinvoked sub SSL { my $self = shift->new;...
4306
Bryce Harrington
bryceharrington
Jan 8, 2005 1:28 am
A bugfix release of WebService::TicketAuth, version 1.05, is released to CPAN and should appear there shortly. This implements some further fixing to the...
4307
loren_lang
Jan 8, 2005 8:31 am
I have a project I am writing in perl. It's a daemon that monitors various serial ports for data and responds to them. It also has to maintain the current...
4308
Mike Schroeder
MikeSchroeder@...
Jan 8, 2005 2:25 pm
I'm sounding like a broken record about POE, but have you considered using POE::Component::Server::SOAP ?...
4309
Klaus Guenter
klaus.guenter@...
Jan 8, 2005 4:20 pm
Hi, List! I have a similar problem and would like to know if this is my fault and therefore correctable. The WSDL File: --snip-- <wsdl:definitions ...
4310
Klaus Guenter
klaus.guenter@...
Jan 10, 2005 10:06 am
Hi, List! I screwed up the previous post concerning that topic ... I have a similar problem and would like to know if this is my fault. The errormessage I get...
4311
Klaus Guenter
klaus.guenter@...
Jan 11, 2005 11:45 am
Hi, List! I am testing SOAP::Lite in conjunction with wsdl to enable real cross language functionality for web services and to learn wsdl. Theres a problem...
4312
cynicalearth
Jan 11, 2005 2:53 pm
$service = SOAP::Lite->service("file:/path/to/wsdl/file"); return $service->getbob(@values); This by default use the 1999 Schema, the problem is I need it to...