Hi Sorry if this is an easy question, I searched through the archives. But I was looking for a more simple explanation. I have been working with soap::lite for...
742
Michael Percy
mpercy@...
Aug 7, 2001 9:30 pm
It all depends on your server code. From your earlier post... ... (cleaned up a little for legibility ;) Is dispatching calls dynamically, to classes in those...
743
Paul Kulchenko
paulclinger@...
Aug 7, 2001 9:30 pm
Hi, Bryan! I'm CC-ing soaplite list, because it may be interesting for others also. ... Short summary first. Basically OO calls can do the same as...
744
Paul Kulchenko
paulclinger@...
Aug 7, 2001 9:50 pm
Hi, Mike! I can only add that if @INC is the real problem in this case (which seems to be) you can always write ...
745
Paul Kulchenko
paulclinger@...
Aug 7, 2001 9:55 pm
... If you just need to send files here and there you can use base64 encoded elements (at least it's what I'm doing). ... SOAP::Lite supports MIME messages...
746
Paul Kulchenko
paulclinger@...
Aug 7, 2001 10:19 pm
Hi, Dave! First two (long) quotes that explain the situation. Then solution ... That's both simple and tricky question. Say you have something like: <data> ...
747
Bleicher, Dave
dbleicher@...
Aug 7, 2001 11:00 pm
Paul, Your suggestions solved the problem and the quotes made me understand why. The code works like a charm. What can I say? You're the greatest! I suspect...
748
staindtd@...
Aug 8, 2001 1:36 pm
Hi Thanks Paul for all the information. So if I want to send a file I need to use base 64. I'm still a little confused about how the file is being sent? Is it...
749
Paul Kulchenko
paulclinger@...
Aug 8, 2001 2:21 pm
Hi, Victor! ... Yes, we're sending bytes: [client] # get file open(F, "<$myfile") or die "$myfile: $!"; my $file = join '', <F>; close(F) or die "$myfile: $!";...
750
mdiplacido@...
Aug 8, 2001 3:03 pm
this is what my MS.net server is returning: SOAP::Lite goes off and dumps the fetchUniqueUrlsForTodayResult result set into a hash using 'string39; as the keys....
751
Paul Kulchenko
paulclinger@...
Aug 8, 2001 3:14 pm
Hi, mdiplacido! ... Very similar question was discussed just yesterday. Take a look there for more information and long explanation: ...
752
Weidong Wang
wwang@...
Aug 8, 2001 3:25 pm
I am looking into using SMTP/POP as the soap transport. I found Paul's reply to this question back in June, where Paul indicated that by the end of June, the...
753
Paul Kulchenko
paulclinger@...
Aug 8, 2001 3:38 pm
Hi. Weidong! The reason why it didn't make into the latest release was that full implementation of SMTP/POP3 roundtrip will require access to transport headers...
754
mdiplacido@...
Aug 8, 2001 4:26 pm
works perfectly! thanks! ... SOAP::Lite ... between ... there ... insert ... SOAP::Lite ... between ... Messenger...
755
mdiplacido@...
Aug 8, 2001 7:50 pm
i'm using SOAP::Lite on the client side and i'm trying to send an array of hash ref's to my MS.net webservice. This is a complex structure that doesn't...
756
Taras Shkvarchuk
tshkvarchuk@...
Aug 9, 2001 7:16 pm
Hello all, I have noticed that SOM->dataof() call, does not return the whole hierarchy of the node. only immediate level, and even that is kind of strange. It...
757
Paul Kulchenko
paulclinger@...
Aug 9, 2001 7:34 pm
Hi, Taras! ... Yes, that's right. SOAP::Data returns full information about current node, but child element will be stored as a Perl datastructures. I plan to...
758
Dave Warner
davewarner98@...
Aug 13, 2001 7:30 pm
Actually, my stock install of ActivePerl did not have the MIME::Parser module installed. I had to install it via the package MIME-tools. HTH....
759
jackx888@...
Aug 14, 2001 7:13 am
So does that mean there is not a way to generate a SOAP rpc call with attachments in accordance to w3c spec http://www.w3.org/TR/SOAP-attachments ...
760
Paul Kulchenko
paulclinger@...
Aug 14, 2001 3:15 pm
Hi, Jack! Yes, there is no way to generate attachments right now, but you shouldn't have any problems accepting those though. SOAP generation is on my todo...
761
Chris Sidi
sidi@...
Aug 14, 2001 7:21 pm
Hi, I'm about to write something that will take a few parameters (a date range and some other filters) and may return 3+ gigabytes of data (from files on the...
762
Jens-Uwe Gaspar
jug@...
Aug 14, 2001 7:59 pm
Hi, i have a SOAP-Server (Java-classes under tomcat) and use SOAP::Lite for a Perl-client. For simple/compound types (float/string/int, hash) it works very...
763
Jens-Uwe Gaspar
jug@...
Aug 14, 2001 8:16 pm
Hi, i have a SOAP-Server (Java-classes under tomcat) and use SOAP::Lite for a Perl-client. Question 1: On client-side (Perl) i have two nested packages: ...
764
Paul Kulchenko
paulclinger@...
Aug 14, 2001 8:29 pm
Hi, Jens-Uwe! ... You don't need to do anything special as far as I can see. my $soap = SOAP::Lite -> proxy(...) -> uri(...) # as required by server ; ...
765
Paul Kulchenko
paulclinger@...
Aug 14, 2001 8:38 pm
Hi, Jens-Uwe! ... You don't need to do anything there: my $jdata = SOAP::Lite -> proxy(...) -> uri(...) -> something(...) -> result; should return JData...
766
Michael Percy
mpercy@...
Aug 14, 2001 8:48 pm
I have done something similar to this, but it involves quite a bit of programming overhead. It looks similar to FTP, with one TCP channel and one SOAP control...
767
Paul Kulchenko
paulclinger@...
Aug 14, 2001 8:53 pm
Hi, Chris! ... You concern is valid, SOAP::Lite won't be able to handle this unless you have enough virtual memory, and even then it'll take some time to ...
768
jmiremo@...
Aug 15, 2001 11:02 pm
I have this client: #!/usr/local/ActivePerl-5.6/bin/perl use XMLRPC::Lite; print XMLRPC::Lite -> proxy('http://192.168.1.60/RPC239;) -> call('methodName', {a =>...
769
Paul Kulchenko
paulclinger@...
Aug 15, 2001 11:37 pm
Hi, jmiremo! ... this should work. Paradigm is simple: you pass parameters as you usually do it with Perl. First parameter is class/object. sub methodName { ...
770
jmiremo@...
Aug 15, 2001 11:52 pm
Thanks Paul for the very quick and helpfull response. Now I can sleep tonight and move on to the next snag I am sure to find my self in soon enough. ... ...