From:             neumann at ntech dot com dot br
Operating system: Windows Vista
PHP version:      5.2.6
PHP Bug Type:     SOAP related
Bug description:  SoapServer Don't Work at Windows Vista

Description:
------------
If I execute HelloClient.php with the HelloServer.php at windows vista,
don't work(error 500). If I Copy the same HelloServer.php to another
server, and execute the same HelloClient.php at Windows Vista, it work
well...

PS:. Remember to change the param location in HelloClient.php, point it to
the HelloServer.php location URL.

Reproduce code:
---------------
<?php #HelloClient.php
   $client = new SoapClient(null, array(
      'location' => "http://localhost/soap/HelloServer.php";,
      'uri'      => "http://localhost/";,
      'trace'    => 1 ));

   $return = $client->__soapCall("hello",array("world"));
   echo $return;
?>
*************
<?php #HelloServer.php
function hello($someone) { 
   return new SoapParam("Hello " . $someone . "!","myparam");
} 
   $server = new SoapServer(null, 
      array('uri' => "http://localhost/";));
   $server->addFunction("hello"); 
   $server->handle(); 
?>

Expected result:
----------------
display the text: Hello world! 

Actual result:
--------------
http server error 500

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

Reply via email to