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...
5424
chrs_mcmhn
Jun 8, 2006 8:43 pm
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...
5425
Andrew Bayliss
abayliss7906
Jun 9, 2006 3:30 pm
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...
5426
Andrew Bayliss
abayliss7906
Jun 12, 2006 5:25 pm
On 6/10/06, Chris Dent <cdent@...> wrote: ... It seems that in all my fiddling about, I didn't properly test the most obvious solution, which was...
5427
Kevin Stone
kevin_patric...
Jun 13, 2006 3:17 am
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/ ...
5428
Andrew Bayliss
abayliss7906
Jun 13, 2006 10:27 am
Kevin, I'm not sure what this achieves, everything seems to work fine regardless of what the soap namespace prefix in the WSDL is. Andrew...
5429
Kevin Stone
kevin_patric...
Jun 13, 2006 3:02 pm
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...
5430
Mike C
planetary_mike
Jun 13, 2006 7:38 pm
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...
5431
tyndyll
Jun 14, 2006 10:59 am
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...
5432
Jay A. Kreibich
jaykreibich
Jun 14, 2006 3:17 pm
... 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...
5433
longliveajay
Jun 14, 2006 10:03 pm
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/') ->...
5434
tyndyll
Jun 15, 2006 11:04 am
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...
5435
Eric Bridger
ebridger2004
Jun 15, 2006 12:44 pm
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{ ...
5436
tyndyll
Jun 15, 2006 3:18 pm
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...
5437
retoh123
Jun 15, 2006 11:32 pm
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...
5438
Byrne Reese
byrnereese
Jun 16, 2006 3:29 am
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...
5439
Byrne Reese
byrnereese
Jun 16, 2006 3:29 am
I just released a "private" update to this problem (0.68) at the following URL. I would love the community's assistance in testing it: ...
5440
jadedr
Jun 16, 2006 11:19 pm
Hello, I have perl client using the stub(pm file) generated by soap::Lite 0.60. It is working with soap::Lite 0.67. In the client, I have a line: ...
5441
jadedr
Jun 16, 2006 11:19 pm
Hello, I have perl client using the stub(pm file) generated by soap::Lite 0.60. It is working with soap::Lite 0.67. In the client, I have a line: ...
5442
retoh123
Jun 18, 2006 6:44 pm
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 ...
5443
Scott Edwards
supadupa@...
Jun 19, 2006 10:27 pm
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...
5444
Issac Goldstand
margol_il
Jun 19, 2006 11:07 pm
Try adding something like this to your client sub SOAP::Transport::HTTP::Client::get_basic_credentials { return "username" => "password"; } Issac...
5445
Scott Francis
darkuncle@...
Jun 19, 2006 11:37 pm
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...
5447
gapeldoorn
Jun 21, 2006 5:55 am
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...
5451
sqlsoapy
Jun 22, 2006 5:45 pm
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...
5452
Scott Edwards
supadupa@...
Jun 22, 2006 11:20 pm
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...
5453
retoh123
Jun 23, 2006 2:57 pm
A beautiful way is you provide required credentials on client side by overriding function get_basic_credentials() in class SOAP::Transport::HTTP::Client: sub...
5454
Scott Francis
darkuncle@...
Jun 23, 2006 7:49 pm
... 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 #...