Search the web
Sign In
New User? Sign Up
soaplite · SOAP::Lite for Perl (soaplite.com)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4283 - 4312 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4283
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 ...
jmzorko@...
jmzorko
Offline Send Email
Jan 1, 2005
10:06 am
4284
... 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....
Alasdair Allan
dr_aallan
Offline Send Email
Jan 3, 2005
5:29 pm
4285
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. ...
Joshua Hoblitt
dogma512
Offline Send Email
Jan 3, 2005
9:28 pm
4286
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...
supra, morne
mornesupra
Offline Send Email
Jan 4, 2005
12:34 pm
4287
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...
Bryce Harrington
bryceharrington
Offline Send Email
Jan 5, 2005
9:22 pm
4288
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...
etaekema
Online Now Send Email
Jan 6, 2005
2:28 pm
4289
... It's a problem with the SOAP client -- they're not escaping entities. use CGI ( escapeHTML ); my $result = $service->submitIssue(...
Joseph Hourcle
jhourcle
Offline Send Email
Jan 6, 2005
4:46 pm
4290
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...
etaekema
Online Now Send Email
Jan 6, 2005
5:06 pm
4291
... 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...
Joseph Hourcle
jhourcle
Offline Send Email
Jan 6, 2005
5:50 pm
4292
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...
etaekema
Online Now Send Email
Jan 6, 2005
7:01 pm
4293
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,...
jmzorko@...
jmzorko
Offline Send Email
Jan 6, 2005
7:34 pm
4294
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 ......
etaekema
Online Now Send Email
Jan 6, 2005
7:59 pm
4295
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 ...
gartnerjmoody
Offline Send Email
Jan 6, 2005
8:19 pm
4296
Another quick question (I hope) -- I used stubmaker.pl to generate a module for the Web Service calls. I added this: sub...
gartnerjmoody
Offline Send Email
Jan 6, 2005
8:30 pm
4297
... 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...
Randy J. Ray
rjray_perl
Offline Send Email
Jan 6, 2005
8:55 pm
4298
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. ...
go81816
Offline Send Email
Jan 6, 2005
9:46 pm
4299
... 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:...
Bryce Harrington
bryceharrington
Offline Send Email
Jan 6, 2005
9:58 pm
4300
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...
Tony Rose
tonyrose023
Offline Send Email
Jan 7, 2005
2:00 am
4301
I'm getting the following response back from an Apache AXIS service: <soapenv:Body> <ns1:notifyAddNodeWithValuesResponse ...
Paul Harman
seancortan
Offline Send Email
Jan 7, 2005
1:15 pm
4302
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...
Steve Piercey
vbfan78
Offline Send Email
Jan 7, 2005
1:44 pm
4303
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...
Steve Piercey
vbfan78
Offline Send Email
Jan 7, 2005
6:15 pm
4304
... 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...
Duncan Cameron
duncan_camer...
Offline Send Email
Jan 7, 2005
7:20 pm
4305
... 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;...
Duncan Cameron
duncan_camer...
Offline Send Email
Jan 7, 2005
10:52 pm
4306
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...
Bryce Harrington
bryceharrington
Offline Send Email
Jan 8, 2005
1:28 am
4307
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...
loren_lang
Offline Send Email
Jan 8, 2005
8:31 am
4308
I'm sounding like a broken record about POE, but have you considered using POE::Component::Server::SOAP ?...
Mike Schroeder
MikeSchroeder@...
Send Email
Jan 8, 2005
2:25 pm
4309
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 ...
Klaus Guenter
klaus.guenter@...
Send Email
Jan 8, 2005
4:20 pm
4310
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...
Klaus Guenter
klaus.guenter@...
Send Email
Jan 10, 2005
10:06 am
4311
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...
Klaus Guenter
klaus.guenter@...
Send Email
Jan 11, 2005
11:45 am
4312
$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...
cynicalearth
Offline Send Email
Jan 11, 2005
2:53 pm
Messages 4283 - 4312 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help