|
在网上查了下 ,和这个说的情况是一样的
.net(客户端)调用php(服务端)出现417错误
问题描述:
服务端环境:
linux + apache(lighttpd) + php5
客户端环境:
windowsxp + iis + .net
调用时出现如下错误:
system.net.webexception: 远程服务器返回错误: (417) expectation failed。 在 system.net.httpwebrequest.getresponse() 在 org.phprpc.phprpc_client.post(string requeststring) 在 org.phprpc.phprpc_client.invoke(string function, object[] args, boolean byref, byte encryptmode)
为人检出错误:
将服务写在windows的机器上错误就没有了
经过牛人”神童哥“的指点:
写.net程序时在始化代码中,或者配置文件app.config之类的文件中
加下这么一句就可以了
servicepointmanager.expect100continue = false;
效果不错,问题解决
归纳其原因:
httpwebrequest控件有一个透明过程,先向服务方查询url是否存在而不发送post的内容,服务器假如证实url是可访问的,才发送post,早期的apache就认为这是一种错误,而iis却可以正确应答 (神童哥) |
|