在 IIS 7 上设置 AspComet 聊天示例
我已经成功在 IIS7 上部署了聊天示例,并且在询问昵称和密码后已经可以查看。我收到以下消息:
系统:握手完成。成功的? false
系统:通道/meta/handshake上的请求失败:没有消息
这是我的web.config,
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true"/>
<httpHandlers>
<add verb="POST" path="comet.axd" validate="false" type="AspComet.CometHttpHandler, AspComet"/>
</httpHandlers>
</system.web>
</configuration>
我正在运行项目Chat-VS2010
I have managed to deploy the chat sample on IIS7 and is already viewable however after asking for the nickname and password. I receive this messages:
System: Handshake complete. Successful? false
System: Request on channel /meta/handshake failed: No message
Here is my web.config
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true"/>
<httpHandlers>
<add verb="POST" path="comet.axd" validate="false" type="AspComet.CometHttpHandler, AspComet"/>
</httpHandlers>
</system.web>
</configuration>
I am running project Chat-VS2010
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是一个相对路径问题。 .ashx 在 IIS7 上找不到类型错误,webdev 服务器上没有问题 。当有人出现时会更改接受的答案。
I believe this is a relative path issue. .ashx cannot find type error on IIS7 , no problems on webdev server . Will change accepted answer when someone comes up.