Hi, David! ... That's still a mystery for me. You should get this message ONLY if wsdl file specifies "xmlProductString" as an element name (which is ...
1326
Paul Kulchenko
paulclinger
Mar 18, 2002 11:56 pm
Hi, Peter! ... You're absolutely correct. According to spec it must be int, and I couldn't find any table that describes values and their meaning. In case of...
1325
Paul Kulchenko
paulclinger
Mar 18, 2002 11:32 pm
Hi, David! ... Just a follow-up. You can force encoding of your XML fragment with this code: my $product = 'http://192.168.0.170:8080/mws/urn:Product.wsdl'; my...
1324
Paul Kulchenko
paulclinger
Mar 18, 2002 11:27 pm
Hi, Duncan! ... That's correct. ... SOAP::Lite doesn't do encoding and doesn't validate XML fragments you insert using 'xml' pseudo-type. If it's not the case...
1323
Paul Kulchenko
paulclinger
Mar 18, 2002 11:17 pm
Hi, Chris! ... off-list. Thank you. Best wishes, Paul. ... __________________________________________________ Do You Yahoo!? Yahoo! Sports - live college hoops...
1322
Tom Mornini
tmornini
Mar 18, 2002 6:32 pm
... Aha! I'll have my guys look into that immediately. ... OK! I can see I'll need to experiment a bit, but that looks like just what the Dr. ordered! -- --...
1321
marceusz@...
marceusx
Mar 18, 2002 5:53 pm
In a message dated 18-Mar-02 5:40:10 PM GMT Standard Time, ... I would love to. But I may not get a chance until later in the week as our "development" machine...
1320
Paul Kulchenko
paulclinger
Mar 18, 2002 5:41 pm
Hi, Chris! I wasn't seeing it as a problem with SOAP::Lite, because SOAPAction header is mandatory, but it will become optional in SOAP 1.2 (according to...
1319
Paul Kulchenko
paulclinger
Mar 18, 2002 4:45 pm
Hi, Tom! ... Thank you for your patch. I applied it. For some reason I thought I replied to your message, but I don't see my reply in the archive. ... ...
1318
Duncan Cameron
dcameron@...
Mar 17, 2002 4:18 pm
... There was a vaguely similar problem described on the Developmentor SOAP list - SOAP::Lite server and two different clients: ...
1317
marceusz@...
marceusx
Mar 17, 2002 12:51 pm
Actually I think this exactly describs the condition I was seeing. And has given me a perfectly place to start looking ... we've "rolled our own" SOAP client...
1316
Jim Dixon
jdd@...
Mar 15, 2002 3:17 pm
... You aren't passing any arguments to new(). The qw is at least unnecessary. Pass arguments like this: $rc = $soap->call(new => @parameters) ... You can of...
1315
Duncan Cameron
dcameron@...
Mar 15, 2002 7:38 am
... <?xml >version="1.0" encoding="UTF-8"?><inventory><product ======= . snipped ... Well, you've actually got XML embedded as the content of your...
1314
Duncan Cameron
dcameron@...
Mar 15, 2002 7:28 am
... You dont'*have* to use it, I thought that you wanted to use it! The first approach is non OO (Object-Oriented) as the result of the new() method is not an...
1313
Joe Landman
landman@...
Mar 15, 2002 3:46 am
Thanks to those who suggested reading portions of the man page. I did misread them. The suggested changes worked for my example. Thank you all. And this...
1312
davidthewatson
Mar 15, 2002 1:12 am
... I meant loosely, "Horked up in the SOAP protocol negotiation." Sorry. ... No, I hadn't but with your instructions I did. Here's the output (LONG, sorry...
1311
marceusz@...
marceusx
Mar 14, 2002 10:21 pm
This is an old issue that I've ignored for a bit because it was a bit of a non-issue but is about to become a large issue again. When I make calls on a...
1310
Duncan Cameron
dcameron@...
Mar 14, 2002 10:05 pm
... Not sure what you mean by this - 'killed on the wire'. Have you run with trace or debug to see the content of the SOAP envelope? use SOAP::Lite +trace =>...
1309
Duncan Cameron
dcameron@...
Mar 14, 2002 9:44 pm
... .. snipped ... Joe I think that you're just misunderstanding the syntax of the O-O approach, see the SOAP::Lite docs under 'implementation of OO interface'...
1308
Jim Dixon
jdd@...
Mar 14, 2002 8:45 pm
... One would expect an argument list to follow the call to new(), so this should look like $remote->call(new => @nameValuePairs)->result; ... For what it's...
1307
Joe Landman
landman@...
Mar 14, 2002 8:10 pm
Ok, got this one down to a really simple test code, with 1 server code and 2 clients. Client 1 uses the "normal" method of doing things (normal for me, been...
1306
davidthewatson
Mar 14, 2002 7:55 pm
... OK, I changed the name of the variable being passed and indeed, I got past that error. However, I'm seeing another problem now. I read in the XML string...
1305
peterfwilkinson_au
peterfwilkin...
Mar 14, 2002 3:46 pm
Hi, I'm just started doing some work with XMLRPC::Lite and run across a small problem where it returns faults with a faultCode that is a string containing...
1304
Tielman J de Villiers
tjdevilus
Mar 14, 2002 2:21 pm
Thank You Jim, It put me on the right track -- it's an interop issue with MS .Net servers ... As per the archives of the list: ...
1303
Jim Dixon
jdd@...
Mar 14, 2002 10:31 am
... The XML spec reserves all names beginning with [xX][mM][lL] (all variations of 'xml' ignoring case). It's a violation of the spec to use element names...
1302
Jim Dixon
jdd@...
Mar 14, 2002 10:07 am
... I used telnet to post a fixed-up version of the sample SOAP post to the server (fixed up by removing line breaks and replacing 'length39; with its value)....
1301
Joe Landman
landman@...
Mar 14, 2002 3:42 am
Folks: I am reasonably sure this is a coding error on my part. I have a basic client and server set up using SOAP::Lite and the built in http transport...
1300
davidthewatson
Mar 13, 2002 9:33 pm
I have the following code: use SOAP::Lite; $file = 'data.xml39; ; open(INFO, "<$file" ) ; @lines = <INFO> ; close(INFO) ; $long_line = join("92;n", @lines); my...
1299
Tielman J de Villiers
tjdevilus
Mar 13, 2002 8:34 pm
Hi, I am testing a service on SAL Central, but seem to be stuck: According to them this is a sample SOAP post: ...
1298
Paul Kulchenko
paulclinger
Mar 12, 2002 10:00 pm
Hi, James! ... It's possible, however XML payloads you posted don't look the same. Payload generated by SOAP::Lite has circular reference, whereas GLUE's...