Hi, Colin! Same for me. I don't have problems running your code. What's your OS, Perl version? Best wishes, Paul. ... ...
1131
vaibhav_arya
Jan 2, 2002 9:57 am
Hi Paul: Did you get the chance to see the SOAP wiredump? I have temporarily coded a work around in my server code that checks if I recieve a reference instead...
1132
Weidong Wang
weidong
Jan 4, 2002 9:14 pm
I am trying to write a WSDL for a soap interface which needs soap header elements. The only example I can find is the one in the WSDL 1.1 spec. Either I got...
1133
churd6669
Jan 5, 2002 1:24 am
I have the server set up using: my $daemon = SOAP::Transport::TCP::Server -> new(LocalAddr => 'blah.com39;, LocalPort => '6669', Listen => 5, Reuse => 1,...
1134
Paul Kulchenko
paulclinger
Jan 5, 2002 1:35 am
Hi, Chris! ... Should be enough to specify SSL_* parameters as additional parameters for proxy method: use SOAP::Lite +autodispatch => proxy => ['tcp://...',...
1135
churd6669
Jan 5, 2002 11:33 pm
Paul, Just a short update of what I have done. I included the parameters as you suggested and when I attempted to run the script it went CPU bound and hung. ...
1136
churd6669
Jan 6, 2002 6:18 am
I figured out the problem. In SOAP/Transport/TCP.pm there is no 'use IO::Socket::SSL;'. Once I put that in...everything works. Chris Hurd...
1137
Paul Kulchenko
paulclinger
Jan 6, 2002 6:42 am
Hi, Chris! You're right. Server side loads IO::Socket::SSL if it isn't loaded, but client side doesn't, so you need to that manually. It tries to autodispatch...
1138
Whiting, Steve
swhiting5690
Jan 7, 2002 8:36 pm
Does anyone have an opinion to offer regarding the best Win32 C++ SOAP toolkit to use against SOAP::Lite? Thanks....
1139
Craig Kelley
kellcrai
Jan 7, 2002 10:13 pm
... ActiveState Perl + SOAP::Lite ? :) -- It is financially more expensive to go to prison than to attend Harvard. Craig Kelley -- kellcrai@... ...
1140
Paul Kulchenko
paulclinger
Jan 7, 2002 10:17 pm
Hi, Steve! ... ;). I believe you can find something here: http://soaplite.com/#TOOLKITS It's the most comprehensive list of SOAP toolkits I know about. Best...
1141
jpdurrios
Jan 8, 2002 8:34 am
Hi, Can I create my own WSDL files using SOAP::Lite? If yes how? if no, what tools can I use? thx JP...
1142
Paul Kulchenko
paulclinger
Jan 8, 2002 2:53 pm
Hi, JP! ... There is a nice WSDL::Generator from Pierre Denis (http://search.cpan.org/search?mode=module&query=WSDL). Best wishes, Paul. ...
1143
Chris Davies
roaima
Jan 8, 2002 3:47 pm
Ahhhh! Why haven't I found this before !!?? Cheers, Chris -- Chris Davies, Manheim Online Tel. 0113 393-2004 Fax. 0870 444-0482. Mobile 07778 199069 ... ...
1144
jpdurrios
Jan 9, 2002 9:37 am
Hi, I recently published the first version of a tutorial for SOAP::Lite. You can read it at http://www.durrios.com/soaplite-tutorial.html Sincerely, ...
1145
harryragger
Jan 9, 2002 6:12 pm
Hi everybody, I (as Non perl programmer) just need to test a XMLRPC Application and used XMLRPC:Lite: ...
1146
aaron_of_montreal
aaron_of_mon...
Jan 11, 2002 10:39 pm
In March of 2001, Paul wrote : "Absolutely agree. That's the reason why I want to introduce some additional transport options, like ACCEPTABLE_CONTENT_TYPE (if...
1147
matthew_berk
Jan 13, 2002 5:23 pm
Here's an example of client-side code that works: my $service = SOAP::Lite->service(39;http://foo.foo.com/foo.wsdl39;); my $loginToken = $service->login( ...
1148
cheye_morgan
Jan 14, 2002 10:06 pm
Hi, i'm using MSSOAPtoolkit ver 2.00, with VC++. have looked at the examples that come with the toolkit. Question, can you create a simple Listner in C++ using...
1149
cheye morgan
cheye_morgan
Jan 15, 2002 12:47 am
yes join __________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/...
1150
steffen_gehring
Jan 16, 2002 5:30 pm
hi, have performance problems with hp-ux/tcpip <-> solaris/tcpip using nt-server, there is no big difference in performance. i patched the UserAgent.pm in the...
1151
kafka.rm
Jan 17, 2002 5:00 pm
Hi everybody! I'm developing an integration module between intershop4 and a scala system using the soap::lite module. What I'm doing is the client that works...
1152
telecoche
Jan 18, 2002 9:27 am
We are performing compatibility tests between a Biztalk server and a generic SOAP server. Any experiences there? Thanks...
1153
Duncan Cameron
dcameron@...
Jan 18, 2002 6:51 pm
David From your explanation I'm not sure what your problem is. Is it that you don't want to receive data encoded as utf8? Well, that shouldn't be a problem as...
1154
sherwln
Jan 20, 2002 2:53 pm
Hi! Can somebody tell me why _attr_ in my first SOAP::Lite code doesn't show in the soap request. use SOAP::Lite +trace => 'all'; my $soap = SOAP::Lite ->...
1155
Duncan Cameron
dcameron@...
Jan 20, 2002 9:50 pm
I think that your syntax was slightly awry, try this SOAP::Data->name('FileURL39;)->type(ordered_hash => [ File => 'file139;, File => 'file239; ]) ->attr({baseurl =>...
1156
Sam Tregar
samtregar
Jan 20, 2002 10:15 pm
Why is SOAP::Lite stored in one module file? I ask for two reasons: 1) It seems to me that memory usage could be lowered if modules were only loaded into...
1157
Dirk Eddelbuettel
dirk_eddelbu...
Jan 20, 2002 10:35 pm
... I'd be far from claiming that my system is representative, but to deliver just one random data point edd@homebud:/usr/share/perl5> find . -name \*.pm -size...
1158
Sam Tregar
samtregar
Jan 20, 2002 11:02 pm
... Interesting. And does Data::Manip also contain numerous sub-modules packaged interally? ... time passes as I install Date::Manip ... Nope. Its size...
1159
marceusx
Jan 20, 2002 11:29 pm
While buidling a mod_perl SOAP::Lite application I've noticed that SOAP::Lite doesn't appear to re-intialise it's namespace variables on each call. For...