淘宝主动通知(我用的是net(c#) WEB站点)上线后启动主动通知 其他的页面就打不开了 一直处在请求页面的状态在本地iis上面没有任何问题 但是放服务器(VPS)上就出现这问题了CPU平稳! 注释掉主动通知启动器运行OK 环境也是OK的
启动方法如下:
#region 启动主动监听
//启动主动监听
public static void StartProposal()
{
//淘宝提供的方法http://open.taobao.com/doc/detail.htm?spm=0.0.0.0.iIXSZw&id=101381#s1.NET SDK
Top.Api.Stream.Configuration conf = new Top.Api.Stream.Configuration(App_key, App_secret, null);
ITopCometStream stream = new TopCometStreamImpl(conf);
stream.SetConnectionListener(new SetConnectionListener());
stream.SetMessageListener(new SetMessageListener());
stream.Start();
}
#endregion
启动器也是淘宝提供的,请问有碰到这方面的高手么如何解决!