本文介绍了无法侦听BeginStartup上指定的任何端口或地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我收到"未能收听任何指定的端口或地址" 当
为了_OcsTrace.Trace(" :::::" + _ SipEndPointDisplayName +":" + _ ServerName +":" + _ Port);
                    ServerPlatformSettings platformSettings = new ServerPlatformSettings(_SipEndPointDisplayName,                                                                       与                     _ServerName,
                                                         &N BSP;                                      _Port,
                                                                                                "" ;,
                    &NBSP ;                        &NBSP ;                        &NBSP ;                      _Certificate);
  _collabPlatform = new CollaborationPlatform(platformSettings);
 
_collabPlatform.BeginStartup(PlatformStartupCompleted,_collabPlatform);

相同代码正在运行 作为win表单示例。但是,当我在WebService中做同样的事情时,它不是。所有的IIS 访问问题?

可以 有人请帮帮我吗?

谢谢,

Hi ,

I am getting "failed to listen on any port or address specfied"  when


_OcsTrace.Trace(":::::"+_SipEndPointDisplayName+":"+_ServerName+":"+_Port);
                    ServerPlatformSettings platformSettings = new ServerPlatformSettings(_SipEndPointDisplayName,
                                                                                             _ServerName,
                                                                                             _Port,
                                                                                             "",
                                                                                             _Certificate);
 _collabPlatform = new CollaborationPlatform(platformSettings);
 
_collabPlatform.BeginStartup(PlatformStartupCompleted, _collabPlatform);


The same code is working as win Form sample. But when i do the same thing in WebService its not .




Any kind of IIS Access issue ?

could somebody please help me on this?

Thanks,
Raj

推荐答案


这篇关于无法侦听BeginStartup上指定的任何端口或地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 21:18