0

当我尝试启动 Windows azure Web 解决方案时,它不断给我一个代码 10048 的套接字异常,然后停止部署到本地模拟器。

在此处输入图像描述

端口冲突似乎有一些问题?

我试过: - 重新启动计算机,看看是否有任何程序持有资源 - 重新安装 Azure SDK 和工具。

这是VS的输出:

Windows Azure Tools: Warning: Remapping public port 80 to 81 to avoid conflict during emulation.
Windows Azure Tools: Warning: Remapping public port 3389 to 3390 to avoid conflict during emulation.
Windows Azure Tools: Warning: Remapping private port 80 to 82 in role 'CloudSearch.Master.Web' to avoid conflict during emulation.
Windows Azure Tools: Warning: Remapping private port 3389 to 3390 in role 'CloudSearch.Master.Web' to avoid conflict during emulation.
Windows Azure Tools: [Listener127.0.0.1:81] Socket Exception (10048) occured when initializing client listener 
Server stack trace: 
   at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)
   at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
   at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
   at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]: 
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   at Microsoft.Windows.Azure.DevFabric.IManagement.UpdateTenant(String tenantName, ServiceModelDefinition serviceModel)
   at Microsoft.ServiceHosting.Tools.DevelopmentFabric.FabricClient.AddServiceDeployment(String tenantName, ServiceModelDefinition serviceModelDefinition, String instanceDescriptionPath, ServiceDeploymentOptions options)

希望你们中的任何人都有答案,因为我无法从谷歌搜索中找到很多东西。

4

1 回答 1

1

检查您的 .csdef 项目并确保只有一个 http/https 端点。您可以通过右键单击云项目中的属性并选择端点来执行此操作。我发现同时拥有 http (80) 和 https (443) 会引发此错误。

此外,如果您使用的是 IIS Express(最新版本的 SDK 中的默认设置),它可能有助于停止完整的 IIS 服务。

于 2013-06-15T14:50:47.593 回答