Yes, yes it should. I'm left handed. ;) ... http://docs.yahoo.com/info/terms/...
1612
One4K4
Jun 13, 2002 2:51 pm
... 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...
1613
One4K4
Jun 13, 2002 3:13 pm
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...
1615
One4K4
Jun 13, 2002 3:21 pm
Yeap, that did it... consider: package DocPub; @DocPub::ISA = 'SOAP::Server::Parameters39;; Which solved my problem, using the pod doc's code sample. Thanks! ...
1616
Byrne Reese
byrnereese
Jun 13, 2002 3:37 pm
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...
1617
Paul Kulchenko
paulclinger
Jun 13, 2002 4:19 pm
Hi, Tom! There are also byName and byNameOrOrder functions (Randy Ray made a great suggestion to make them methods instead of functions) in ...
1618
One4K4
Jun 13, 2002 5:30 pm
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. :)...
1619
danielyacob
Jun 14, 2002 1:04 am
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...
1620
One4K4
Jun 14, 2002 4:28 pm
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...
1621
sylvainstg
Jun 14, 2002 8:55 pm
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; =>...
1623
Paul Kulchenko
paulclinger
Jun 14, 2002 9:29 pm
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...
1624
Sylvain St-Germain
sylvainstg
Jun 14, 2002 10:02 pm
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...
1625
jbpion
Jun 16, 2002 6:53 am
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. ...
1627
sylvainstg
Jun 17, 2002 2:55 pm
Paul, Is there a way to set the namespace a little more globally? I must have roughly 100 types or so... Sylvain....
1628
jbm15260
Jun 17, 2002 6:26 pm
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...
1629
Jerome Pion
jbpion
Jun 18, 2002 2:36 am
... 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...
1630
Broadfoot, Kieran J
kieranbroadfoot
Jun 18, 2002 5:08 pm
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 ...
1631
gwzoller
Jun 18, 2002 8:01 pm
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 ...
1632
Paul Kulchenko
paulclinger
Jun 19, 2002 4:16 am
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 ...
1634
William McCracken
usiwill
Jun 20, 2002 3:01 pm
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...
1635
William Denton
buff@...
Jun 20, 2002 6:28 pm
Hi, I'm using SOAP::Lite to talk to a Windows box running .NET that gives me a number if I call a "createMSA" routine and give it an address. I can't seem to...
1636
Sinha, Madhukar [IT]
madhukar_sinha
Jun 20, 2002 8:05 pm
Hi , I have been using Soap Lite based perl clients to access services protected by HTTP:basic authentication . it works fine. Now i hear we are migrating our...
1637
Duncan Cameron
dcameron@...
Jun 20, 2002 10:19 pm
... This seems to be tripping-up a few people recently. When using the service() approach, the result of your createMSA is not a SOM object, it really is the...
1638
Duncan Cameron
dcameron@...
Jun 20, 2002 10:30 pm
... SOAP faults are really for server-side faults in the processing of a message, your error is to do with the client tcp/ip. You'll need to wrap your call in...
1639
Chris Davies
roaima
Jun 21, 2002 4:13 pm
I'm experimenting with the jabber transport, SOAP::Transport::JABBER, and trying to get a handle on what's going on. The client example uses a proxy of ...
1640
Gandt, Eric
usigandt
Jun 21, 2002 5:15 pm
I've noticed that when I have a small number of concurrent connections communicating using SOAP over mod_perl all id fine, however as the number of ...