I've found the source of the problem and a workaround. In WebLogic's WSDL they define xmlns:soap="http://schemas.xmlsoap.org/ wsdl/soap/". Lite.pm requires...
I posted this on perlmonks, and thought this would also be a good place to ask: I have a Perl SOAP client that insists on sending <ConfirmUnsubscribes...
Hi, I'm currently trying to get both .NET and Java (Apache AXIS) clients to work with a SOAP::Lite server. I've done what the documentation says regarding...
I notice a xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" If you take your wsdl and do cat my.wsdl | sed -e s/soap:/other:/g | sed -e s/xmlns:soap/ ...
Sorry- I misread your email and thought you were using perl as a client, not a server. On Jun 13, 2006, at 6:26 AM, Andrew Bayliss wrote: Kevin, I'm not sure...
Where I work, SOAP-Lite is well on its way to becoming a mission critical piece of our new telecom provisioning systems. Overall, it is working like a dream...
Hi All, after much frustration I come to the source in hope of enlightenment. Is it possible to run mod_soap on Apache 2.2.2? The mod_perl site seems to...
... There was an unofficial patch floating around the list not long ago. You might want to check the archives. -j -- Jay A. Kreibich | CommTech, Emrg Net Tech...
Folks, A simple question on my side I am currenlty using the following call to connect to a webservice: my $soap = SOAP::Lite -> uri('https://www.abc.com/') ->...
Hi all, Seeking some information with regard to accessing the contents of a SOAP element while using mod_soap. I've seen the article at majordomo with regard...
I've used omething like: my $service; for (1..$n){ $service = SOAP::Lite->proxy($proxy)->on_fault( sub { } ); if ( !$service->is_success ) { sleep 10; }else{ ...
Thanks Jay, Found the patch and made the changes. For my own reference and for searching later a quick guide is 1) Download SOAP::Lite from CPAN (0.67 at time...
An item is being generated by SOAP::Lite as <Item xsi:type="namesp1:StructureOf_Item"> ^^^ I have to remove the |xsi:type="namesp1:StructureOf_Item"| stuff and...
The recent flurry of emails about Apache/mod_perl caught me in a rare moment of free time. I have made a few patches to address these issues. Here is the URL...
Hi, I have to send attributes as <urn:Foo> ... </urn:Foo> and *not* <Foo xsi:type="..."> ... </Foo> The argument «xsi:type...» is beeing added by SOAP::Lite ...
I've reviewed the source for lwp-request to see how it overrides get_basic_credentials. As of yet, i'm undecided on how I can approach this. Would a patch to...
Scott Edwards
supadupa@...
Jun 19, 2006 10:27 pm
5444
Try adding something like this to your client sub SOAP::Transport::HTTP::Client::get_basic_credentials { return "username" => "password"; } Issac...
So I'm using SOAP::Lite to build a Perl interface to a NetScaler load balancer (end goal is to have servers added and removed from a pool in an automated...
Scott Francis
darkuncle@...
Jun 19, 2006 11:37 pm
5447
Hi, I've got some problems with sending attachments with SOAP::Lite. I'm trying to make a soap server respond with an attachments which I want to collect on...
Hello, I'm trying to use a SOAP::Lite client V0.67 with the native web services in SQL Server 2005. I am getting the following error when I try to get the...
Is it possible to use SOAP::Lite (0.67) using a service description with a WSDL that requires basic authentication? I can get to work just fine using...
SugarCRM has a set_entry method via SOAP I'm attempting to use. I've made a working xml post by hand, but I'm unsure how to get my SOAP::Lite object to post...
Scott Edwards
supadupa@...
Jun 22, 2006 11:20 pm
5453
A beautiful way is you provide required credentials on client side by overriding function get_basic_credentials() in class SOAP::Transport::HTTP::Client: sub...
... Following up with code inline, in hopes of soliciting some comments: #!/usr/bin/perl -w # # use Perl and NetScaler's SOAP API service - primarily useful #...