Search the web
Sign In
New User? Sign Up
soaplite · SOAP::Lite for Perl (soaplite.com)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3812 - 3841 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3812
I have an application developed using Visual Basic 6. This application can connect to the server (linux) to upload and download a file (this file is an XML...
avenuestreet
Offline Send Email
Aug 2, 2004
3:47 am
3813
Howdy - I have a simple CGI script I am running on a Win32 Apache (1.3.29) web server using mod_perl - specifically the Apache::Registry. It tries to make a...
techrg99
Offline Send Email
Aug 3, 2004
11:31 am
3814
Hi All, I am trying to access a soap service using SOAP::Lite in a Perl script (see code below) and I get an error message back saying that it has received an...
john.schattel
john_schattel
Offline Send Email
Aug 4, 2004
8:10 pm
3815
Hello, I'm working with a wsdl service that expects one of the parameters to be an array. Here's what their sample looks like: <circles...
eldoclimber
Offline Send Email
Aug 5, 2004
7:51 pm
3816
I'm new to both SOAP::Lite and Perl I have a webservice with two methods. The first method is passed a String and returns a String The seond method is passed a...
Larry Helmerich
lhelmerich
Offline Send Email
Aug 6, 2004
2:04 am
3817
... When you use a WSDL the call returns the actual data from the server not a som object. SO your first call is correct, but why does your second call expect...
Duncan Cameron
duncan_camer...
Offline Send Email
Aug 6, 2004
8:09 am
3818
Hi all, Anyone have experience using this method for SOAP::Lite. The following generates : Can't locate object method "call" via package...
bright_g2001
Offline Send Email
Aug 6, 2004
12:50 pm
3819
... What are you trying to achieve by calling transport() at this point? You should probably call it after the soap lite object has been created. my $service =...
Duncan Cameron
duncan_camer...
Offline Send Email
Aug 6, 2004
1:01 pm
3820
Hi, ... use SOAP::Lite +trace => [qw(transport debug)]; use SOAP::Lite service => 'file:/home/mover/thirdparty.wsdl'; my %domains = ( 'yahoo.com' => 2000, ...
mullangi.rm
Offline Send Email
Aug 6, 2004
6:52 pm
3821
We use SOAP::Lite to make requests to a HTTPS based WebServices that uses HTTP Basic Authentication. I've been overriding the get_basic_credentials as...
Abhijit Dixit
abhijit_dixit
Offline Send Email
Aug 6, 2004
8:49 pm
3822
I am trying to create the following complexType weatherParametersType and my code (see below) isn't capturing the array of booleans correctly (see SOAP...
john.schattel
john_schattel
Offline Send Email
Aug 6, 2004
9:26 pm
3823
Hi all. Please excuess the silly questions, but I'm having lots of problems binding to an apache soap service (uri:10021/soap_vas), and am kind of lost. I'm...
bright_g2001
Offline Send Email
Aug 8, 2004
4:24 pm
3824
Hello, I've fumbling ineffectually with SOAP and mod_perl for the last couple weeks. The best I can get with SOAP::Transport::HTTP::Apache is "Can't call...
kooganani
Offline Send Email
Aug 10, 2004
1:36 am
3825
Hi all! I am trying to set upp my own SOAP server. The server should use SSL/HTTPs for client communication. I have only found one example that does not work. ...
ojerteg
Online Now Send Email
Aug 10, 2004
6:42 am
3826
... While the documentation doesn't really make this clear, my understanding from talking to Paul and Bryne at last years OSCON was that the Daemon code didn't...
Alasdair Allan
dr_aallan
Offline Send Email
Aug 10, 2004
10:49 am
3827
hi, when i run my client i get the length required error.. my server: #!c:/Perl/bin/Perl.exe -w use SOAP::Transport::HTTP; use LWP::Simple; # to the download...
SHAFRAZ
Offline Send Email
Aug 10, 2004
1:20 pm
3828
Error Summary: Getting 500 Internal Server Error - encountered child element which is NOT expected, in something it was trying to deserialize ... Hi All, I am...
Rushi
rushi_asi
Offline Send Email
Aug 10, 2004
2:54 pm
3829
... This is wrong. The type cannot be a string if the element has child elements Regards Duncan...
Duncan Cameron
duncan_camer...
Offline Send Email
Aug 11, 2004
7:34 am
3830
Hi, Have seen a few problems on the archive but no resolution to a problem I'm having where I'm trying to log on to a web service using SOAP::Lite and the...
Colin Magee
colin@...
Send Email
Aug 11, 2004
9:55 pm
3831
Here's an interesting solution to a performance problem I'm having when sending an xml string through SOAP. My example xml string is about 500k When I use the...
Jeremy Lublin
jlublin
Offline Send Email
Aug 12, 2004
2:08 am
3832
Hi Verry thanks to reply my anser but i have resolved this problem now as im passing a hashtable to my webservices methods. But now I have really no any idea...
Rushikesh Joshi
rushi_asi
Offline Send Email
Aug 12, 2004
1:01 pm
3833
Issac - I am having a similar problem on making a client(in Axis/Java 1.1) call a SOAP::Lite server, and your post is helpful. However, by following your...
wxyc
Offline Send Email
Aug 12, 2004
3:17 pm
3834
... I'm hardly qualified to speak on this, but I don't think you write a WSDL server. You write a web service using SOAP::Lite's server capabilities. You write...
Mark Fuller
amigo_boy2000
Offline Send Email
Aug 12, 2004
4:02 pm
3835
First of all, as Mark already mentioned, you don't write a WSDL "server". WSDL is a document which describes the web service, much like DTDs were used for XML...
Issac Goldstand
margol_il
Offline Send Email
Aug 12, 2004
7:00 pm
3836
Hi Folks, $s = SOAP::Schema -> schema("https://host/my.wsdl")-> parse($service) Looking over all the examples, tests, etc... I can use : sub...
macleajb
Offline Send Email
Aug 12, 2004
7:36 pm
3837
Issac, Thanks for the WSDL explanation. I was not quite clear about WSDL stuff. It turns out that after a bit tweaks on the way to invoke the service on the...
Donald Chen
wxyc
Offline Send Email
Aug 13, 2004
2:28 pm
3838
Hi, No-one answered my question but I found the extraordinarily simple answer by browsing some documentation from 2002 - seems "xmlschema" is a method of...
Colin Magee
colin@...
Send Email
Aug 13, 2004
9:22 pm
3839
Dear Professionals, We Career Soft Solutions, a Leading Consultancy Group, have some of the Top IT Companies across India as our Client base. We are taking ...
pradeepcss
Offline Send Email
Aug 16, 2004
6:59 am
3840
RE: [soaplite] Urgent Java Unix Scripting (3 - 5 Yrs) openings @ MNC Chennai I really don't appreciate Offshore Outsourcers ( or any other company ) cluttering...
rafiq.ismail@...
rafiq_i
Offline Send Email
Aug 16, 2004
8:32 am
3841
Hi, I am trying to parse a SOAP request with SOAP::Lite which contain an associative array with multiple entries with the same key. Unfortunately SOAP::Lite...
Leon de Rooij
toyos78
Offline Send Email
Aug 16, 2004
11:40 am
Messages 3812 - 3841 of 6387   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help