Hi all, Can someone help me to figure out what is the most convenient way to do this: If I have this in my xml respose from a web service: .......... <Person> ...
Hi, Mark! ... Yes, I can confirm that. The reason for that is that data: protocol expects all data to be escaped or base64 encoded. '#' symbol marks end of...
That works just dandy! thanks Paul, M ... -- ... "Speed is subsittute fo accurancy." ________________________________ Dr. Mark Wilkinson, RA Bioinformatics ...
Hi, I have a SOAP::Lite server that issues a LWP and returns the contents of an arbitrary URL and in some instances there are charecters which force SOAP::Lite...
Maybe an option would be to have little "wrapper" subroutines: sub byposGetAcctNumber { my $self = shift; my ($name,$ss) = @_; ...
1610
Keanan Smith
KSmith@...
Jun 13, 2002 2:33 pm
Err shouldn't that be: sub bynameGetAcctNumber { my $self = shift; my %args = (@_); GetAcctNumber(name=>$args{name},ss=>$args{ss}); } (Note the % on the 1st...
... Every method on server side will be called as class/object method, so it will get an object reference or a class name as the first parameter, then the...
FYI: You need: package Foo; @Foo::ISA = 'SOAP::Server::Parameters39;; At the top of your package declration. *If* you're dynamically/non- statically...
1614
Keanan Smith
KSmith@...
Jun 13, 2002 3:14 pm
"You will get this functionality ONLY if you inherit your class from the SOAP::Server::Parameters class. This should keep existing code working and provides...
Yeap, that did it... consider: package DocPub; @DocPub::ISA = 'SOAP::Server::Parameters39;; Which solved my problem, using the pod doc's code sample. Thanks! ...
SOAP::MIME is a patch to SOAP::Lite that makes attachments parsed by SOAP::Lite available through the SOAP::SOM object. I admit, it is a bit hackish, but it...
Nice. As this is my next step in my little project here at work. Attaching attachments is the biggest part, because I'm using SOAP::Lite on both sides. :)...
Greetings, I've been using SOAP::Lite 0.55 with mod_perl using dynamic dispatching without incident until I named a class "Convert". Invariably I get the error...
This may be a FAQ, I'm not sure. If so, feel free to flame away. Anyway, after reading the various docs on soaplite.com, and especially t/04-attach.t. My...
Hi all, When I write: my $header = SOAP::Header->name('biBusHeader' => new biBusHeader()); my SOAP header is being serialized as: <biBusHeader...
1622
Duncan Cameron
dcameron@...
Jun 14, 2002 9:25 pm
... You need to serialize the individual elements of biBusHeader, if your object is a hash then something like this should work: return [ $name, {'xsi:type39; =>...
Hi, Sylvain! ... all you need to do is this: $soap->maptype->{'biBusHeader39;} = 'http://.../bibus/2'; If you don't do this, SOAP::Lite will use default...
Thanks Paul, I'll give it a try on monday, looks rather simple... I am happy to undertand I shouldn't have to implement the serialization for my complexTypes...
Hello all, I am afraid that I am new to SOAP and hope that my question has not already been answered in the archives (I've looked at a lot of posts to find the...
1626
Duncan Cameron
dcameron@...
Jun 16, 2002 8:35 am
... What is ca? Should it be 'ca' ? ... You don't want this. GetAuthors() returns the real result. See the examples in the 'SOAP::Schema39; section of the pod. ...
I'm having the same problem, but it seems as though a blessed reference is returned when you use the uri and proxy methods, but not when you use the service...
... Thank you for your help. After Duncan narrowed the problem for me (the service was not returning any data) I was able to come up with a solution. I tried...
Hi everyone, As Ive just starting having a play with soap::lite today I hoped you would not mind if I asked a couple of simple questions regarding the use of ...
Hello... Does anyone have an example of how to pass an object from Perl to a non-Soap::Lite server? Not sure, but I think my problem is that I'm not ...
Hi, Kieran! ... you may put your functions in "main" package that should be used in this case. Or you can use dispatch_with() method and link your uri to any...
1633
Andersson, Kimmo
Kimmo.Andersson@...
Jun 20, 2002 11:09 am
Hi ! I'm writing a library in C++ which provides an interface for SOAP::Lite SOAP toolkit. I have decided to use an own intermediary Perl module between my ...
I want to capture the error returned when a remote server is not responding, the line I get back with trace enabled is: envelope: Server 500 Can't connect to...