This is a common request among SOAP::Lite users so I thought I would answer this more extensively as an article on majordojo. To learn how you can intercept...
This is most likely an artifact of SOAP::Lite using the 1999 XML Schema as opposed to the 2001 now recommended by the WS-i. I just tested this to ensure that...
Because SOAP::Transport::HTTP::Client extends LWP::UserAgent, all methods available to it are also available to your SOAP Clients. For example, HTTP keep alive...
XML-RPC can use both HTTP and HTTPS. It is merely a function of the URL you use. The encryption etc is managed by the underlying LWP::UserAgent package, and of...
Hi all I have been using SOAP::LIte for a while though always having both client and server using SOAP::LIte. I now find myself using SOAP to call 3rd party...
Hi, everyone. I've been using SOAP::Lite for a variety of projects over the last few years, and have generally been impressed and pleased with it. But one of...
... I've been using SOAP::Lite with ithreads very extensively since Perl 5.7.3 when you'd hardly call the threading model "stable". I haven't as yet ...
4000
Mike Schroeder
MikeSchroeder@...
Oct 11, 2004 9:48 pm
*Before I start down a path someone else may have already worked on, has anyone tried using the POE::Component::Client::UserAgent (async, non-blocking,...
Hello, I've been using SOAP::Lite for a project I'm working on that uses sforce. I have encountered one bug and one problem that I don't know how to work...
A new release of SOAP::Lite will be coming out soon which will have this array encoding issue fixed. I also will be updating my collection of salesforce Perl...
... Just to be clear, are we talking about document literal, document literal, or MS wrapped document type, document literal here? Both would be useful! Some...
I am sending this email because I remember recently that someone asked how you could set a threshold for the maximum message size a SOAP::Lite instance will...
I really wish WSDL generation was easy. Perl has not real reflection API, and because it is so loosely typed - how on earth is the WSDL generator supposed to...
... The only way that immediately springs to mind is to have some sort of function prototypes declared inline in the method's POD. This is messy, and obviously...
Hi, I'd like to consume a perl soap::lite service from a vbscript or javascript client and host the vbscript or javascript on a windows server. I've downloaded...
Hi there: I'm new in SOAP::Lite and I have this problem. I need to call a method with this parameter: .... <user xsi:type="ns1:User"> <name...
4009
Ovid
publiustemp-soaplite@...
Oct 13, 2004 6:21 pm
Crossposted to http://www.perlmonks.org/index.pl?displaytype=display;node_id=398955 I used the program stubmaker.pl that's distributed with SOAP::Lite to ...
Ovid, You have two choices. Modify the stub code to always return a SOAP::SOM object. return $som; Or evaluate the string and work with the hash. eval($som); ...
Hi, I am using a perl client to make calls on a server written in C++ using SOAP::Lite. This is using the wsdl file. The client side SOAP::Deserializer in...
I've got a basic SOAP::Lite test server talking to a .NET console client written in C#. It works for very basic things (i.e. pass in a couple of arguments, get...
Sometimes it is easier for a camel to pass through the eye of a needle than to try to do this 'correctly39;. But with the right kind of persistence you can...
I meant Visual Studio .NET. It may not be necessary to use 'document/literal39;. I don't recall the specifics on what I ran into that caused me to standardize on...
Hi all, i am having problem with the soaplite library for VB running on WinXP. The scenario is as follows. When i use soaplite to send a .zip file to the...
!!!!WELCOME THE FREECALLING CARDS !!!! STRENGHTEN YOUR FRIEND SHIP TALK TO UR FRIENDS FREE!!! YES ITS TRUE!!! YOU CAN PUT A STOP TO PREPAID CARDS!!! SIGNUP AND...
Hi. First message here from me. :) I'm using this code: $quatro=SOAP::Data->name('contactList39; =>[SOAP::Data->type(int => undef)]); which generates: ...
4019
Ovid
publiustemp-soaplite@...
Oct 15, 2004 11:55 pm
When I explicitly set the URI on a SOAP::Lite object to to some value, the resulting request XML differs from what I am expecting. ...
... Either of these give you nearly but not quite what you are looking for $data=SOAP::Data ->name(39;contactList39; => []) ->attr({39;xsi:null39; => 1}); ...
... The two pieces of XML are equivalent, so it may be an idea to ask the developers of the web services that you are connecting to why they do not handle the...