Paul, I was working with my .Net developer and we have noticed something that could be related. I don't know. If you put the URL ' ...
3525
Perl Median
perlmedian
Apr 22, 2004 2:12 pm
I have setup a simple SOAP::Lite server (test.cgi attached) and manually wrote the WSDL (test.wsdl attached) and the C# .NET client (not attached but can be...
3526
Byrne Reese
byrnereese
Apr 22, 2004 2:42 pm
Namespaces are not required to resolve to anything, and are not actually (or typically) used by parsers for anything. The fact that...
3527
perlmedian
Apr 22, 2004 3:19 pm
I didn't know that attachments don't work. Here is the WSDL, next post will have the perlcode: <?xml version="1.0" encoding="UTF-8"?> <definitions name="test"...
3528
perlmedian
Apr 22, 2004 3:21 pm
And here's the perl code for the SOAP::Lite server: #!/perl # $Id:$ # $Log:$ ## Packages used use strict; use warnings; use SOAP::Transport::HTTP; ### GLOBAL...
3529
Matt Long
perlmunger
Apr 22, 2004 4:22 pm
Nik, I have been trying to get something like this to work myself, so I dropped your code into a new project in visual studio and gave it a whirl. I am ... An...
3530
jpeyser
Apr 22, 2004 7:43 pm
I had a similar problem using the MS SOAP Toolkit with Excel VBA. The SOAP Toolkit User's Guide states the following in regard to handling complex types. ...
3531
Perl Median
perlmedian
Apr 23, 2004 6:37 pm
Why yes.. here is the code that works for a single string :) Just add web reference.. (point to the wsdl file) and you're ready to go! ... PERL CODE...
3532
Matt Long
perlmunger
Apr 23, 2004 8:31 pm
Nik, I added this code to your complexTypes (returnThings) script: BEGIN { local($^W) = 0; *SOAP::Serializer::gen_ns = sub {}; } and I found that I can...
3533
walter
wvendraminetto
Apr 26, 2004 3:40 pm
Hi folks, i'm trying to use https protocol with a daemon soaplite server. In docs is written that it is sufficient the client to issues the request with...
3534
anagramster
Apr 26, 2004 9:23 pm
Anyone have a sample script that shows how to access the web services of Microsoft Sharepoint (or something similar)? I seem to be hung up on the...
3535
Sadanand Kalasabail
sade_bhat
Apr 27, 2004 2:50 am
Hi, What packages are installed for SSL. Make sure that these installed LWP & SSL etc. I had missed out the ssl which had given me problems during my project...
3536
walter
wvendraminetto
Apr 27, 2004 7:28 am
... Hi, thank you for the reply ... Below is the partial output of the 'perl Makefile.PL39; command when installing the SOAP-Lite-0.60 package. All packages look...
3537
Vincent Berger
vinzo30
Apr 27, 2004 10:34 am
I want to reply a null string. (<s-gensym3 xsi:type:"xsd:string" xsi:null="1") The code below return a warning: Use of uninitialized value in substitution...
3538
eamick
Apr 27, 2004 1:09 pm
... Have you tried using "" instead of undef for the value?...
3539
Vincent Berger
vinzo30
Apr 27, 2004 1:18 pm
... Unfortunately yes. It replies an empty string and not a null string. (... xsi:type="xsd:string"/>)...
3540
Matt Gladding
m_gladding
Apr 27, 2004 6:11 pm
I'm trying to connect a soap::lite client to a .net server using Perl and I'm having some issues with not receiving data back. I connected to one method on the...
3541
Manessinger Andreas
andreas_mane...
Apr 28, 2004 7:39 am
You say the XML returned comes with an empty tag. Is this from the debug output of the SOAP::Lite client or what? If it is from the debug output, then I...
3542
shonorio2000
Apr 28, 2004 3:27 pm
Hi, I trying to stablish comunication of client and server by SOAP::Lite. This comunication will have a lot of hash and array variable. On my SOAP::Lite study...
3543
m_gladding
Apr 28, 2004 4:39 pm
Yes this was from output of the Debug trace. Here is the exact output:
SOAP::Transport::HTTP::Client::send_receive: POST http://.../Impact_ED_...
3544
Peter Rooke
peterrooke
Apr 29, 2004 6:11 am
Is DIME support in SOAP::Lite available? soon? Thanks...
3545
Peter Rooke
peterrooke
Apr 29, 2004 11:40 pm
... I have found a work around for my situation. By setting SOAP::Lite outputxml to true I can switch off the SOAP::Parser, then parse the DIME message for...
3546
Erica Amemiya
x-soaplite-yahoogroup...
Apr 30, 2004 12:05 am
Hi, I've been successfully using SOAP::Lite to pass parameters to and from other SOAP::Lite systems for some time. I started having a problem with parameters...
3547
Erica Amemiya
x-soaplite-yahoogroup...
Apr 30, 2004 6:16 am
Hi, I think I figured out a solution to my problem. It's not as elegant as I would have liked, but I understand why it has to be that way. I'll post sample...
3548
pegesund
Apr 30, 2004 10:47 am
Hi; I am trying to use a Perl-server and a .Net client. My program works fine when i specify the urn to be a single name only (dispatch_to("Search") and...
3549
Eaton, Andy
andy_seas_wu...
Apr 30, 2004 4:43 pm
I think I have the opposite problem of Erica. I have a perl client and a dot net server. I am trying to push to a webservice written in .net that looks like...
3550
Christopher Parker
cparker15
Apr 30, 2004 6:56 pm
... are ... Since the namespaces *DO* differ, I'm sure that's bound to make a difference somewhere. http://www.w3.org/1999/XMLSchema and ...
3551
Christopher Parker
cparker15
Apr 30, 2004 7:22 pm
... use ... ***DISCLAIMER*** I am still learning, so if anything I say is incorrect, please accept my apologies in advance. ***/DISCLAIMER*** I'm positive your...
3552
Christopher Parker
cparker15
Apr 30, 2004 9:04 pm
***This is a possible duplicate. I posted this morning, and still nothing. If this is a duplicate message, please accept my apologies.*** Hello all, I'm trying...
3553
Erica Amemiya
x-soaplite-yahoogroup...
Apr 30, 2004 9:33 pm
Hi, Here's how I'm extracting named parameters from a MS .NET client. It should work just as well with a SOAP::Lite client sending a hash. package server; use...