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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 3259 - 3288 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3259
I am trying to develop a client for a broker service using SOAP::Lite. I am testing their simple Echo() function so far with no success. Appears that the...
kiprop777
Offline Send Email
Jan 4, 2004
9:33 pm
3260
Folks, I've tried this on different machines (WinXP w/ ActivePerl 8xx; Linux w/ Perl 5.8.2; WinXP w/ cygwin perl 5.8.2) with the same result. Whether I just do...
deepblah
Offline Send Email
Jan 5, 2004
12:30 am
3261
That is very odd behavior. Are you using/requiring any Perl libraries which might also 'use SOAP::Lite'? I ask because if a library turns on debugging, then it...
Byrne Reese
byrnereese
Online Now Send Email
Jan 5, 2004
2:48 am
3262
I could not agree with you more Tim. I have considered documentation to be a real short-coming since I started using SOAP::Lite. Luckily Randy J. Ray, the...
Byrne Reese
byrnereese
Online Now Send Email
Jan 5, 2004
3:07 am
3263
Byrne, That was it! I am using SOAP::Data::Builder, and it has 'use SOAP::Lite ( +trace => all, maptype => {});' defined in .../SOAP/Data/Builder.pm. I...
deepblah
Offline Send Email
Jan 5, 2004
4:13 am
3264
I might suggest, although I would appreciate other ideas and/or feedback, to have the running process open up a socket that it listens on. This socket could be...
Byrne Reese
byrnereese
Online Now Send Email
Jan 5, 2004
5:48 am
3265
I am very surprised by this error. The on_action call should help you construct whatever SOAP Action header you need. $soap = SOAP::Lite->proxy(...)->uri(...);...
Byrne Reese
byrnereese
Online Now Send Email
Jan 5, 2004
3:39 pm
3266
Hello all, I was hoping maybe I would find some guidance on this list. I'm building a Web service solution centered around SOAP::Lite. My server is going to be...
Christopher Parker
cparker15
Offline Send Email
Jan 5, 2004
3:42 pm
3267
Here are some methods that will help to generate the desired XML. $soap ->uri('urn:schemas-xmlsoap-org:soap:vl') ->on_action(sub { return...
jpeyser
Offline Send Email
Jan 5, 2004
8:06 pm
3268
Heya. Having issues with a service, which requires the envelope to look like. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
nib000
Offline Send Email
Jan 6, 2004
5:16 am
3269
hi, I'm new to SOAP::Lite, so far it looks nice ;) I do have a couple of questions, however.. is it possible to have two-way communication over a single TCP ...
grant beattie
gruntaaaa
Offline Send Email
Jan 6, 2004
7:00 am
3270
Byrne, Thanks for the feedback. According to the DSML v2 documentation, the base URN for DSMLv2 is oasis:names:tc:DSML:2:0:core; an example request should look...
Bruno Grossmann
samnrv
Offline Send Email
Jan 6, 2004
1:26 pm
3271
In the upcoming release of SOAP::Lite, one will be able to programmatically turn namespace prefixing on/off. .NET for example wants default namespaces to be...
Byrne Reese
byrnereese
Online Now Send Email
Jan 6, 2004
2:53 pm
3272
I am not sure why you need to suppress these fields. If you are calling a standard Web service, these values should be correct, and furthermore, the precense...
Byrne Reese
byrnereese
Online Now Send Email
Jan 6, 2004
2:59 pm
3273
hi all, i am new to web-services. I want to know that, does soap::Lite supports XKMS(Xml based Key Management Specification). It comes under the security...
Vimalan
vimal_me
Offline Send Email
Jan 8, 2004
1:35 pm
3274
Hello - I have a Java server, with some Perl client code, using the SOAP::Lite library. Running this code works fine on Windows, but produces a different SOAP...
Alex Dalitz
alexdalitz
Offline Send Email
Jan 8, 2004
4:30 pm
3275
hi, is there any possibility to fire a soap call which returns immediatly, a kind of fire an forget. the point is to trigger an other daemon to do something,...
norbu09
Offline Send Email
Jan 8, 2004
5:08 pm
3276
... This is done at the level of the remote API, by designating it a "notification" rather than an RPC. How you do that designation at deployment time (in the...
Tim Wood
timwood0@...
Send Email
Jan 8, 2004
5:56 pm
3277
I have been trying to do something similar - in my case I want the end user (thru a GUI) to be able to cancel the SOAP call - or at least ignore what the call...
techrg99
Offline Send Email
Jan 8, 2004
10:22 pm
3278
Hi, all, How do I get to the URI in a handler method called from a mod_perl server doing static dispatch to external classes? I have a mod_perl-based SOAP...
Scott Ellsworth
scottalodar
Offline Send Email
Jan 9, 2004
12:13 am
3279
I apologize to spam the group with something vaguely commercial, but I feel this thread warrants it. Grand Central is a Web Services network (technically, we...
Byrne Reese
byrnereese
Online Now Send Email
Jan 9, 2004
6:49 am
3280
... thanks for that but we are programming a time critical high volume service so working with grand central in this place is not the thing planned. i know...
Lenz Gschwendtner
norbu09
Offline Send Email
Jan 9, 2004
9:33 am
3281
... It sounds like you need ebXML rather than plain SOAP. ebXML Messaging (usually) runs on top of SOAP with Attachments - it supports synchronous and...
Aaron Trevena
ajt_stc
Offline Send Email
Jan 9, 2004
9:53 am
3282
... Well Grand Central is (just?) a broker implementating of something called Contextual Web Services, the project I'm currently working on also makes ...
Alasdair Allan
dr_aallan
Offline Send Email
Jan 9, 2004
11:33 am
3283
Is SOAP::Lite capable of perform asynchronous messages by itself. I assume the default is synchronous? And is this because of the way LWP works? One thing I...
Bill Hess
techrg99
Offline Send Email
Jan 9, 2004
1:02 pm
3284
I am trying to pass a complex data type from a perl soap client to a java soap server. It appears from past discussions on this topic that the utility...
javasteve2002
Offline Send Email
Jan 9, 2004
1:28 pm
3285
Ok, so the million dollar question is: "Is SOAP::Lite capable of performing asynchronous messaging by itself?" The answer is yes, but not natively. There are...
Byrne Reese
byrnereese
Online Now Send Email
Jan 9, 2004
3:07 pm
3286
Here is another solution I came up with to solve my problem. The advantage of this one is that I can use my script with the original Lite.pm module. However, ...
Bruno Grossmann
samnrv
Offline Send Email
Jan 9, 2004
3:51 pm
3287
Hi, Jonathan. Thank you for the help. I got a chance to try this again. Your hint, and a bit of mucking about, made things work the way I wanted them to. The...
Scott Ellsworth
scottalodar
Offline Send Email
Jan 9, 2004
11:39 pm
3288
I'm having a hard time writing a Perl client to my Java web service. So far I've been able to access the service fine, the problem is when one of my methods on...
Jason
jcn37203
Offline Send Email
Jan 12, 2004
4:24 pm
Messages 3259 - 3288 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