我正在尝试从本地计算机连接到web服务...我正在使用wamp作为本地服务器和web服务所有者提供的wsdl连接器 加上一个php文件来获取数据和一个XML testclient .exe文件 即时尝试在cmd中运行.exe文件但发生此错误
Testclient started ...
upload URL: http://localhost/upload/php_server_2015-10-08/server.php
filename: 4485ae5f-4f9e-4ad6-bab3-44cdc57c09d5.xml
An error occured: The content type text/html of the response message does not
match the content type of the binding (text/xml; charset=utf-8). If using a
custom encoder, be sure that the IsContentTypeSupported method is implemented
properly. The first 1005 bytes of the response were: '<br />
<font size='1'><table class='xdebug-error xe-fatal-error' dir='ltr' border='1'
cellspacing='0' cellpadding='1'>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-
color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Fatal error:
Class 'SoapServer' not found in C:\wamp\www\upload\php_server_2015-10-
08\server.php on line <i>3</i></th></tr>
<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>
<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left'
bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th
align='left' bgcolor='#eeeeec'>Function</th><th align='left'
bgcolor='#eeeeec'>Location</th></tr>
<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec'
align='center'>0.0010</td><td bgcolor='#eeeeec' align='right'>874344</td><td
bgcolor='#eeeeec'>{main}( )</td><td
title='C:\wamp\www\upload\php_server_2015-10-08\server.php'
bgcolor='#eeeeec'>..\server.php<b>:</b>0</td></tr>
</table></font>
'.
Testclient done ... press key
可以有人hekp
答案 0 :(得分:0)
您收到的回复会告诉您Class 'SoapServer' not found
,表示未启用Soap扩展程序。
检查你的php.ini是否有extension=php_soap.dll
行,并确保它没有被禁用(以;
为前缀)。
如果是,请删除该行前面的;
并重新启动Apache。
要找到你的php.ini,你应该查看C:\wamp\bin\apache\Apache2.x.x\bin
(相应地替换x;)或者只写一个包含
<?php phpinfo();
在浏览器中打开它(http://localhost/.../yourscript.php)并查找“已加载的配置文件”。