php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #46203 Error Fetching HTTP header
Submitted: 2008-09-30 17:02 UTC Modified: 2009-05-06 01:00 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: kk86bioinfo at gmail dot com Assigned:
Status: No Feedback Package: SOAP related
PHP Version: 5.2.6 OS: Vista
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: kk86bioinfo at gmail dot com
New email:
PHP Version: OS:

 

 [2008-09-30 17:02 UTC] 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'] = 'kk86bioinfo@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)

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-04-28 18:47 UTC] jani@php.net
Please try using this CVS snapshot:

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

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


 [2009-05-06 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 18:01:29 2024 UTC