nsxuan 发表于 2010-9-20 09:50:12

远程web 发布不成功 错误代码为空 服务器 返回 417 错误

在网上查了下 ,和这个说的情况是一样的
.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却可以正确应答 (神童哥)

cuibing1 发表于 2010-9-20 11:32:19

是的发生地方圣达菲圣达菲

火车头 发表于 2011-7-13 08:33:57

火车采集器 系统设置->http请求设置->expect100continue 复选框!
页: [1]
查看完整版本: 远程web 发布不成功 错误代码为空 服务器 返回 417 错误