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...
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...
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...
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, 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...
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...
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(...);...
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...
Heya. Having issues with a service, which requires the envelope to look like. <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
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 ...
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...
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...
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...
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...
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...
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,...
... 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@...
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...
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...
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...
... 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...
... It sounds like you need ebXML rather than plain SOAP. ebXML Messaging (usually) runs on top of SOAP with Attachments - it supports synchronous and...
... Well Grand Central is (just?) a broker implementating of something called Contextual Web Services, the project I'm currently working on also makes ...
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...
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...
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...
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, ...
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...
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...