hi, I am trying to get information from a database using SOAP::Lite. However I keep getting the following error: Can't locate object method "new" via package...
Hello all. I'm having a similar problem to [id://548716|this]. Unfortunately, I couldn't figure out the solution from the thread. I'm calling a Web Service...
5472
Octavian Rasnita
orasnita@...
Jul 4, 2006 10:18 am
Thank you. I have managed to send the correct header but the XML body is not correct. I have also read that I need to make some changes in order to make the ...
5471
rahed
rahed@...
Jul 4, 2006 10:11 am
... www.bvb.ro/Level2#Level2 Part before # is uri and part after is a called method. SOAPAction http header can be set by an on_action method: ...
5470
Octavian Rasnita
orasnita@...
Jul 4, 2006 5:38 am
Hi, Thank you for that code. I have tried the following: use SOAP::Lite; use SOAP::Lite +trace => [qw(debug)]; my $url = "http://..."; my $ENDPOINT = $url; my...
Hi, Here is a small sample code. This code was originally in Java and I had to rewrite it in perl. It takes a while to actually understand how SOAP works but...
5468
Octavian Rasnita
orasnita@...
Jul 3, 2006 3:54 pm
From: "theorem21" <bryant.eadon@...> ... specifications for doing this in this language. ... code you can that can help me as a sample of making the...
5467
Octavian Rasnita
orasnita@...
Jul 3, 2006 1:12 pm
Hi, I need to create a SOAP::Lite client in perl and I don't have specifications for doing this in this language. I do have an example in C# though. Can you...
Exactly correct, Eric. Thank you! ... -- Craig Dunigan IS Technical Services Specialist Middleware - EIS - DoIT University of Wisconsin, Madison opinions...
SOAP::Lite does not ordinarily try to autotype complex object nodes only the leaves of your document tree. So remove the ->type(39;') from <Top> and <Level1>...
Hi, I'm writing a SOAP::Lite v0.60 client for a GeoTrust SOAP v1.1 doc/lit service that requires a complex request doc. I'm using v0.60 because I would rather...
Hi All, I has been trying to access CA unicenter webservices using SOAP::Lite to connect axis webserver and calling 'getObjectValues' but it looks like it...
5460
Scott Francis
darkuncle@...
Jun 27, 2006 10:31 pm
... define "supported" - are you under the impression that only HTTP/1.0 is supported? I've been using HTTP/1.1 connections in my SOAP::Lite code (to the best...
... ... Just as an FYI, I have reproduced this myself. Although I don't have any suggestions to help, I thought it might help to note that the problem seems...
Hi Is there any documentation on how to create a custom type for use with SOAP::Lite? I'm writing clients and servers with the module and all is fine, but my...
5455
Scott Edwards
supadupa@...
Jun 23, 2006 8:55 pm
http://www.majordojo.com/soaplite/docs/SOAP/Data.html#COMPLEX_TYPES solved all of my questions. I was able to troubleshoot faster by using a tcp endpoint off...
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 #...
A beautiful way is you provide required credentials on client side by overriding function get_basic_credentials() in class SOAP::Transport::HTTP::Client: sub...
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...
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...
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...
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...
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...
Try adding something like this to your client sub SOAP::Transport::HTTP::Client::get_basic_credentials { return "username" => "password"; } Issac...
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...
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 ...