From w2learn at yahoo.com Wed Dec 9 04:14:00 2009 From: w2learn at yahoo.com (Sri) Date: Wed, 9 Dec 2009 04:14:00 -0800 (PST) Subject: [Bangalore-pm] Perlguts experts Message-ID: <199130.71793.qm@web56505.mail.re3.yahoo.com> Hi, My company (a large MNC in wireless domain) has a short-term contract opportunity to enhance/develop a test framework. The current prototype I have is built with SWIG & an embedded perl interepreter. Any ideas where I could look to find individuals with such expertise to take this forward? Any consulting companies that specialize in such Perl expertise here? We're not particularly tied to using SWIG/perl either...in case someone has expertise in a different set of tools, as long as they can deliver a framework that provides a flexible scripting interface to QA team to develop test cases. More details can be provided to the candidate. Thanks From arunragini at gmail.com Tue Dec 15 01:06:40 2009 From: arunragini at gmail.com (Arun ragini) Date: Tue, 15 Dec 2009 09:06:40 +0000 Subject: [Bangalore-pm] Perlguts experts Message-ID: <264666470912150106v4a7986afq9849befc9efd5454@mail.gmail.com> Hi, Is your company willing to hire part time consultants as well ? Cheers, Arun -- ----- Fight back spam! Download the Blue Frog. http://www.bluesecurity.com/register/s?user=YXJ1bnJhZ2luaQ%3D%3D From inform.naresh at gmail.com Tue Dec 22 06:55:01 2009 From: inform.naresh at gmail.com (Naresh Ramaswamy) Date: Tue, 22 Dec 2009 20:25:01 +0530 Subject: [Bangalore-pm] soap lite - Trouble in creating multiref xml body Message-ID: hi, I am using SOAP::lite and the module from the stubmaker.pl to invoke SOAP APIs from WSDL. my original SOAP request looks like the following ============================== admin admin 16789900 15 My Perl module from stubmaker.pl that contains the above section looks like the following ================================================================= my %methods = ( getNewGroup => { endpoint => ' http://10.3.1.5/smsapi/services/SMSAPI/r08_00/NewGroupService', soapaction => '', namespace => 'http://www.xyznet.com/sms/smsapi/r08_00/NewGroupService', parameters => [ SOAP::Data->new(name => 'in0', type => 'tns1:PartKey', attr => {}), SOAP::Data->new(name => 'in1', type => 'tns1:NewGroupKey', attr => {}), ], # end parameters }, # end getNewGroup My Perl script looks like as follows ========================= #!/ats/usr/perl -w use SOAP::Lite +trace => 'debug'; use Data::Dumper; use SMSAPIService_r08_00_NewGroupService qw(:all); my $obj = new SMSAPIService_r08_00_NewGroupService; $obj -> use_prefix(0); $obj->readable(1); $obj->want_som(1); $obj->multirefinplace(1); my $response = $obj->getNewGroup(En); My POST request<->response looks as follows ========================= use_prefix has been deprecated. if you wish to turn off or on the use of a default namespace, then please use either ns(uri) or default_ns(uri) at /ats/langs/perl_5.8.7/lib/site_perl/5.8.7/SOAP/Lite.pm line 887. URI is not provided as an attribute for method (authenticate) SOAP::Transport::HTTP::Client::send_receive: POST http://10.3.1.5/smsapi/services/SMSAPI/r08_00/GroupGroupService HTTP/1.1 Accept: text/xml Accept: multipart/* Accept: application/soap Content-Length: 985 Content-Type: text/xml; charset=utf-8 SOAPAction: "" admin admin SOAP::Transport::HTTP::Client::send_receive: HTTP/1.1 500 Internal Server Error Connection: close Date: Tue, 22 Dec 2009 14:49:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/xml;charset=utf-8 Client-Date: Tue, 22 Dec 2009 14:49:57 GMT Client-Peer: 10.3.1.5:80 Client-Response-Num: 1 soapenv:Server.generalException > com.xyz.sms.api.r08_00.model.SMSAPIInternalException > Group Group Key cannot be null (com.xyz.sms.common.SMSException: no user message defined) -9999 ======================================== I am unable to construct the SOAP xml body as in my original request wherin multiRef body content is observed and further I get 500 server error. Can you please help me to recreate my request using the module generated by stubmaker? regards, Naresh -------------- next part -------------- An HTML attachment was scrubbed... URL: From mkirank at gmail.com Tue Dec 22 13:56:03 2009 From: mkirank at gmail.com (Kiran Kumar) Date: Tue, 22 Dec 2009 15:56:03 -0600 Subject: [Bangalore-pm] soap lite - Trouble in creating multiref xml body In-Reply-To: References: Message-ID: soapenv:Server.generalException > Group Group Key cannot be null > (com.xyz.sms.common.SMSException: no user message defined) > -9999 > > looks like the server is expecting a user defined message, if you modify your request to add that it will probably give your expected response . -------------- next part -------------- An HTML attachment was scrubbed... URL: