0

我正在尝试在 Kubuntu 11.04 上使用 WSO2 Web Services Framework for PHP 2.1.0 和 php 5.3.5-1ubuntu7.7

我有最少的 php 安装、xml、xslt、lib-ssl、libaxis2c 库:

apt-get install php5 php5-dev php5-xsl libxml2-dev libssl-dev libaxis2c

一切都很好——编译、安装、添加到包含路径。我在 php -i 输出中看到了库:

wsf

wsf support => enabled
wsf version => 2.1.0

Directive => Local Value => Master Value
wsf.attachment_cache_dir => /tmp => /tmp
wsf.enable_attachment_caching => 0 => 0
wsf.home => /usr/lib/php5/20090626/wsf_c => /usr/lib/php5/20090626/wsf_c
wsf.log_level => 4 => 4
wsf.log_path => /tmp => /tmp
wsf.rm_db_dir => /tmp => /tmp

所以我尝试访问简单的网络服务: http ://www.w3schools.com/webservices/tempconvert.asmx?wsdl

像这样:

$client = new WSClient(array(
   'wsdl'=>'http://www.w3schools.com/webservices/tempconvert.asmx?wsdl'
));
$proxy = $client->getProxy();

$response = $proxy->CelsiusToFahrenheit(array('Celsius'=>11));

脚本似乎运行良好——得到 wsdl、已连接、解析响应,我可以 print_r 响应数据:

Array
(
    [CelsiusToFahrenheitResult] => 51.8
)

然后脚本试图完成并出现分段错误:

[Fri Apr  6 15:42:35 2012] [info]  [rampart] rampart_mod shutdown
[Fri Apr  6 15:42:35 2012] [info]  [rahas] Rahas module shutdown
Segmentation fault

如果我要评论肥皂电话,那么分段错误将消失。

有没有办法消除这个段错误?谢谢。

4

1 回答 1

1

您使用的是哪个版本的 SSL?我也一直在尝试为自己解决这个问题,并遇到了这个 https://wso2.org/jira/browse/WSFPHP-467

于 2012-07-23T01:42:49.667 回答