Hi there: I put my cgi file under the directory: fileserver/home/soap/blast.cgi, and in the client file, I use the soap:lite to connect as follows: use...
3115
Duncan Cameron
duncan_camer...
Nov 6, 2003 7:27 pm
... That's a good spot, I wondered if there was a better (= quicker) way to iterate. Just out of interest I benchmarked four approaches the original one that I...
3114
teden
Nov 6, 2003 4:46 pm
Folks, A little while back, I posted a question about processing arrays of arrays, and got some great help from Duncan Cameron. The suggested solution was...
3113
duncan_cameron2002@...
duncan_camer...
Nov 5, 2003 10:42 pm
... That's right but Pierre was referring to utf-8 encoded strings that don't have any utf-8 characters. I took that to mean only single byte character...
3112
Pierre Denis
pdenis@...
Nov 5, 2003 12:27 pm
Hi Duncan, ... If you concatenate a utf8 flagged string with a non utf8 flagged string, the result will be a utf8 flagged string. The problems happens when you...
3111
Duncan Cameron
duncan_camer...
Nov 5, 2003 12:12 pm
... From: "Pierre Denis" <pdenis@...> To: <soaplite@yahoogroups.com> Sent: Wednesday, November 05, 2003 11:28 AM Subject: [soaplite] Useful module to...
3110
Pierre Denis
pdenis@...
Nov 5, 2003 11:30 am
Using SOAP::Lite intensively (thanks Paul!), I had to deal with two minor issues: - soap calls return utf8 strings, even if the content doesn't have any utf8...
3109
poulkornmod
Nov 4, 2003 10:18 pm
Dear all, First of all - I would like to thank Paul and the rest of this community for making SOAP so incredible easy to implement good and sound solutions! ...
3108
harbica
Nov 4, 2003 8:58 pm
I have a SOAP service that returns an complexType that looks like this: <complexType name="PintoBean"> <sequence> <element name="comment" type="string"> ...
3107
spoof_nowar
Nov 4, 2003 4:44 pm
3106
Byrne Reese
byrnereese
Nov 4, 2003 3:18 pm
It looks to me like you need to encode an array, which is not done as you might expect in SOAP::Lite. You need to create a data structure like this: ...
3105
greenishmarsian
Nov 4, 2003 2:40 pm
I'm in trouble with sending information to a server. In the wsdl file I use, definition of method is: - <wsdl:message name="getResearchListRequest"> <wsdl:part...
3104
techrg99
Nov 4, 2003 2:00 pm
Here is a complete and working example of attachemnt download: Here is the server side - MIME_Test.pm - I am using Apache/mod_perl server: package MIME_Test; ...
3103
yycheong_1999
Nov 4, 2003 6:32 am
Hello all, need help. anyone know how to connect a behind a proxy firewall from visual basic client. i have proxy firewall = http://192.168.0.1:8080 e.g. Set...
3102
David Rodriguez Ferna...
penya_estudi...
Nov 3, 2003 11:52 am
Hi list. This is my first post. there is some form to accede to a SocketPair of a server of soap from a module? thanks sorry i'm not native speaker. -- Nada es...
3101
jpeyser
Oct 31, 2003 5:11 pm
OK!!!!!! Finally found the problem. I stand corrected a second time. The parts subroutine is defined in SOAP::SOM, but it has a bug. for my $method (qw(parts))...
3100
Byrne Reese
byrnereese
Oct 31, 2003 2:30 pm
The SOAP::SOM object returned by SOAP::Lite has a subroutine called 'parts39; - which contains the array of MIME::Entity objects. ... ^byrne :/...
3099
jigsaw9876
Oct 31, 2003 12:03 pm
In the same context I have another silly question: The server returns data and an attachment like: return SOAP::Data->name("whatToEcho" => $STRING),$ent; How...
3098
Abdullah Uygun
abdullahuygu...
Oct 30, 2003 3:43 pm
Byrne, Thanks for quick response. However I am quite new at SOAP use. I try following however it does not help. my $name_fragment; my $mkt_sector_code =...
3097
Byrne Reese
byrnereese
Oct 30, 2003 3:03 pm
The state of asynchronous messaging in the world: Technically, any software package can perform asynchronous messaging. In fact I have written code samples for...
3096
Abdullah Uygun
abdullahuygu...
Oct 30, 2003 2:53 pm
Hi all, http://ws.services.fitchratings.com/ws/services/ResearchProvider?wsdl I want to call getResearchList only with country_code='TUR39;. my $svc =...
3095
jigsaw9876
Oct 30, 2003 11:23 am
Thanks for this fix. I have attachments working now. -JS...
3094
Kalvir Sandhu
kalvir
Oct 30, 2003 10:26 am
Hey, I had this same problem, I need to see your whole wsdl file to check your schema definition under the <types>. Make sure 'CustomerSummary' is set as the...
3093
jpeyser
Oct 29, 2003 4:41 pm
I stand corrected; everything has been incorporated into SOAP::Lite (almost). So I tried to run the old examples from the SOAP-MIME package without using...
3092
norbu09
Oct 29, 2003 3:29 pm
hi, i have searched the web quite intensive but found no way to implement asyncronious resquests to a soap server. no question, it is no good idea to implement...
3091
Byrne Reese
byrnereese
Oct 28, 2003 7:28 pm
Let me continue - you are correct, the functionality has been merged. SOAP::Lite 0.60 should be more than sufficient for your needs. Would you mind sending...
3090
Byrne Reese
byrnereese
Oct 28, 2003 7:23 pm
Oy... what a horrible oversight. I will add it to CPAN now. ... ^byrne :/...
3089
Tim Jenness
t.jenness@...
Oct 28, 2003 4:54 pm
I was under the impression that SOAP::Lite 0.60 (which is *still* not on CPAN!!!!!) did not require SOAP::MIME since that functionality had been integrated...
3088
jpeyser
Oct 28, 2003 3:55 pm
Bill, You also need the SOAP-MIME package (I believe the latest version is SOAP-MIME-0.55-7). The SOAP-MIME package contains a directory of examples, including...
3087
esc_in_wa
Oct 28, 2003 1:14 am
We are using the Java Web Services Developer's Pack 1.3 to develop a web service. We are trying to use SOAP::Lite 0.55 to make calls to the Java web service. ...