ID:               46203
 Updated by:       j...@php.net
 Reported By:      kk86bioinfo at gmail dot com
-Status:           Open
+Status:           Feedback
 Bug Type:         SOAP related
 Operating System: Vista
 PHP Version:      5.2.6
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/




Previous Comments:
------------------------------------------------------------------------

[2008-09-30 17:02:15] kk86bioinfo at gmail dot com

Description:
------------
I have an error "Error Fetching HTTP header..." when trying to use
webservices from Interpro (WSInterproScan). My script run well before.

Reproduce code:
---------------
# URL for the service WSDL
   $wsdlUrl=
'http://www.ebi.ac.uk/Tools/webservices/wsdl/WSInterProScan.wsdl';
# Get the object from the WSDL
   $proxy = new SoapClient($wsdlUrl, array("user_agent"=>"eudbase"));

   $params = array();
   $params['email'] = 'kk86bioi...@gmail.com';
   $params['seqtype'] = 'P';
   
   $data = array();
   $data[0]['type'] = 'sequence';
   $data[0]['content'] =
">cn1\nMWCAMGQVFEELSKESEAIRCYERARDCDEDEDSIALAKLAEGYEKMAREAAKDGRQ";
   
   $jobId = $proxy->runInterProScan($params, $data);
   echo "$jobId\n";

Expected result:
----------------
I should received the job submission ID for the service.

Actual result:
--------------
1AA0ED3D70F28F23 (generated randomly from the service)


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=46203&edit=1

Reply via email to