From:             kk86bioinfo at gmail dot com
Operating system: Vista
PHP version:      5.2.6
PHP Bug Type:     SOAP related
Bug description:  Error Fetching HTTP header

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'] = '[EMAIL PROTECTED]';
   $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 bug report at http://bugs.php.net/?id=46203&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=46203&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=46203&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=46203&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=46203&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=46203&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=46203&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=46203&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=46203&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=46203&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=46203&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=46203&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=46203&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=46203&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=46203&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=46203&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=46203&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=46203&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=46203&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=46203&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=46203&r=mysqlcfg

Reply via email to