When I'm writting perl based SOAP servers and there is a typo I don't get any error messages from the compiler, either at compile time or run time. All I know...
2364
Keanan Smith
KSmith@...
Feb 11, 2003 5:10 pm
All of the warnings/errors from every source go *somewhere*, where depends on in what context you call them. For instance, In SOAP Server: Any 'Die' Statements...
2365
quinn@...
quinn_weaver
Feb 11, 2003 6:43 pm
... Thanks to Keanan for his detailed explanation of error streams. fulkohew, another solution to catch compile-time errors is to run 'perl -c YourModule.pm39;...
2366
toddbfleming <tfle...
toddbfleming
Feb 11, 2003 8:12 pm
I'm new to SOAP and I keep running into problems with error handling. First a question: When does a function return a result? When does it return an SOM? Now...
2367
Todd Fleming
toddbfleming
Feb 11, 2003 8:38 pm
Update: If I run the server on Solaris and the client on Windows 2000 I get the correct error message. If I run the server on Windows and the client on Solaris...
2368
fulkohew <fulkohew...
fulkohew
Feb 11, 2003 8:59 pm
... I will investigate this further. My client does have a handler which I presumed would emit something if it were being called. From the sample code, I...
2369
ninethirty <nineth...
ninethirty
Feb 11, 2003 10:33 pm
I am writing a Perl SOAP client that needs to be able to handle attachments, so I have included SOAP::MIME and MIME::Entity, as described in message 1977 from...
2370
Byrne Reese
byrnereese
Feb 12, 2003 12:57 am
A short answer to "Does including SOAP::MIME break the non-attachment-sending functionality?" is: it may. SOAP::MIME right now overrides certain SOAP::Lite...
2371
Tom Samplonius
tom@...
Feb 12, 2003 4:49 am
I just installed Apache 1.3.27 and mod_perl 1.27 with perl 5.8.0. I also installed expat 1.95.6. This is on FreeBSD 4.7. I installed all the associated Perl...
2372
severanrault <seve...
severanrault
Feb 12, 2003 5:44 am
All, I am building a MM7 client based on SOAP::lite, for those of you that dont know what is MM7, it is the protocol between a content provider and a MMSC...
2373
severanrault <seve...
severanrault
Feb 12, 2003 5:48 am
Tom, I just want to share my experience with you. It seams that there is quite some porblems with perl5.8 and SOAP Lite (perl 5.8 has some bugs...) I have...
2374
murugankg <murugan...
murugankg
Feb 12, 2003 9:12 am
Hi I am writing this one as i am new to this one.i serached all the archives. But i am not able to find the answers for my problem. Probelm When i executed...
2375
wilday8 <wilday8@....
wilday8
Feb 12, 2003 10:45 am
I have protected folder skyris using http access. For some reason the client bypasses the protection and can access the folder directly !!! Which means I can...
2376
Matt Hoffman
ninethirty
Feb 12, 2003 1:44 pm
Thanks for the reply. I'll go ahead and split it up. Yes, I suppose we'll accept that excuse ;) Enjoy ... __________________________________________________ Do...
2377
ninethirty <nineth...
ninethirty
Feb 12, 2003 2:35 pm
I noticed a post from early this year talking about problems exchanging attachments with an Apache Axis (java) server (something about sending LF vs. CR + LF)....
2378
msanesh <anesh@......
msanesh
Feb 12, 2003 10:19 pm
I was having problems sending attachments from soaplite to apache axis (1.0) server. The problem is that soaplite (rather MIME module in perl) does not send...
2379
Byrne Reese
byrnereese
Feb 12, 2003 10:38 pm
I have created a sourceforge project for SOAP::MIME. In which I am tracking bugs. I have logged this issue as a bug and will see if there is something I can do...
2380
Todd Fleming
toddbfleming
Feb 12, 2003 11:37 pm
Another clue: I've traced into Net::HTTP::Methods::my_readline. The lines in the buffer returned by $self->sysread end in CR/CR/LF. Has anyone seen this ...
2381
iminchev_bg <iminc...
iminchev_bg
Feb 13, 2003 12:41 pm
The situation is: Client: MSSOAP SDK 3.0 Server: IIS, ActiveState ActivePerl 5.6, $SOAP::Lite::VERSION = '0.51' Serveice code: use SOAP::Transport::HTTP; ...
2382
Timur Vafin <timur...
timurvafin
Feb 13, 2003 6:20 pm
In Lite.pm at line 265 I see -> attr({xmlns=>'urn:uddi-org:api39;, generic => '1.0', %$attr}); but it's mean that UDDI::Lite API support UDDI ver.1 And now if I...
2383
ktrott1 <ktrott@.....
ktrott1
Feb 13, 2003 8:40 pm
i have a WEB Service running (GLUE Server) with WSDL, which returns a cookie after calling a login service, which shall be used in subsequent calls to the...
2384
Bill Hess
bhess@...
Feb 14, 2003 3:10 am
I am using the "standard" mod_soap setup with Apache per the soaplite.com site. On the server side I have a very simple test script which seems to work just...
2385
b1v1r <b1v1r@...>
b1v1r
Feb 14, 2003 4:28 pm
I asked this previously, but never got an answer. So, I'll try one last time with a better subject... I have tried to override the as_string deserializer to...
2386
Duncan Cameron
dcameron@...
Feb 14, 2003 6:14 pm
... The as_string method isn't actually in the SOAP::Deserializer package which you over-ride, it is in the SOAP::XMLSchema1999::Deserializer or wherever ...
2387
Duncan Cameron
dcameron@...
Feb 14, 2003 6:20 pm
... Possibly you are being hit by SOAP::Lite disabling @INC when invoking the server side modules. See the Security section of the docs for more details,...
2388
b1v1r <b1v1r@...>
b1v1r
Feb 14, 2003 7:10 pm
Right, I understand that as_string() is really from SOAP::XMLSchema1999::Deserializer (it was stated in my message), but I am not supposed to (have) know that....
2389
Jeff Gleixner
qglex
Feb 14, 2003 8:58 pm
I don't get how to do the server/client to create the correct object. client: use SOAP::Lite +autodispatch => uri => 'http://my.server.net/My/blah/blah', proxy...
2390
Duncan Cameron
dcameron@...
Feb 14, 2003 10:58 pm
... See the section in the docs about 'SERVICE DEPLOYMENT. STATIC AND DYNAMIC' I think that you need to either directly 'use My::blah::blah39; in your server or ...
2391
Steve Prior
SteveInCT
Feb 15, 2003 7:10 pm
I've got a SOAP server written using SOAP::Lite and I'm trying to access it from Java using Apache SOAP, but get the following error when I try to connect. It...
2392
Martin Hajduch
somebody8765
Feb 15, 2003 8:40 pm
... could you post the whole xml communication ? the message seems like you are returning complex data type (SOAPStruct) - is it a hash or something ? in such...