English 中文(简体)
单一客户的通识
原标题:Getting System.ServiceModel.CommunicationObjectAbortedException from a single client
  • 时间:2009-12-01 15:33:38
  •  标签:
  • wcf
  • abort

我们在外地有一个客户,把我们的客户安装在一个新机器上。 在他们尝试和登录时,他们称“妇女论坛”网络服务;他们有以下错误:

系统. ServiceModel.CommunicationObjectAbortedException

“来文对象,系统。 Service Model。 渠道。 服务 频道不能用于通信,因为它是Aborted”。

他们安装在另一台机器上,没有问题。 安装在几个没有问题的地方。

它为什么不使用单一机器? 该机器运行的是Windows 7,但该机器正在使用其他配有Windows 7的机器。

任何想法都会受到赞赏。

问题回答

你们如何要求服务?

从你所说的话来看,像服务呼吁这样的一点是站不住脚的,你在试图用某种方法向实施伊哈奈特的物体发出呼吁,即,它使用块,处置方法正在被炸毁。

张贴一些法典?

该守则是:

try {
   userService = Services.UserServiceClient();
   LoggedInUser.User = userService.Login(tbUsername.Text, tbPassword.Text); 
   userService.Close();
}
catch... { }

但正如我前面所说的那样,它正在使用其他几个没有问题的计算机。 仅仅不使用单一计算机。 思考可能已经安装或安装了一些蚊帐校准需求。





相关问题
WCF DataMember Serializing questions

Ok, so I was part way through the long winded process of creating DTOs for sending my model over the wire and I don t feel like I m going down the right route. My issue is that most of the entities ...

Access WCF service on same server

I have a .NET website with a WCF service. How do I access the current operations context of my service? One possible work around is to just make a call to the service within the app...but that seems ...

WCF binding error

So I got into work early today and got the latest from source control. When I try to launch our ASP.NET application, I get this exception: "The binding at system.serviceModel/bindings/wsHttpBinding ...

The service operation requires a transaction to be flowed

I am facing strange issue with our WCF service. The same code was working fine until recently we added more OperationContracts(Web Methods). We have common 3 tier architecture. DAL (WCF) BLL Web ...

热门标签