我的客户端应用程序中有一个Connection
类,它将连接到WCF服务器。
如果服务器未启动,或者客户端无法连接到服务器,则应捕获异常并在标签上显示错误消息。
第一次创建Connection
类的实例就在我的LoginViewModel
类中:
sta = Connection.Instance.HttpProxy.Login(LoginID, LoginPassword);
这就是抛出第一个异常的地方。但是,如果我添加一个try / catch块,则不会捕获异常,而是抛出XamlParseException
。 Connection
类的构造函数中的try / catch块也不起作用。我该如何处理?
Connection
上课:
public sealed class Connection {
private readonly string _address = ConfigurationManager.AppSettings["ConnectionAddress"];
private static Connection _instance;
private static object _padLock = new Object();
private static ChannelFactory<IPoS> httpFactory;
private static IPoS _httpProxy; //Singleton
public IPoS HttpProxy { get { return _httpProxy; } }
public static Connection Instance {
get {
if (_instance == null) {
lock (_padLock) {
if (_instance == null) {
_instance = new Connection();
}
}
}
return _instance;
}
}
private Connection() {
try {
httpFactory = new ChannelFactory<IPoS>(
new BasicHttpBinding(),
new EndpointAddress(_address));
_httpProxy = httpFactory.CreateChannel();
}
catch (Exception ex) {
BaseViewModel.SetErrorMessage("Error: " + ex, this);
}
}
}
答案 0 :(得分:0)
在Login方法中抛出异常,因为这是客户端第一次尝试连接到服务器。你可以把try catch arround这个方法,而不是初始化。除此之外,您应该考虑正确处理连接类,您的连接取决于一次性对象。当某些东西不能正常工作时,你必须调用dispose方法。我不认为制作Singlton连接会处理所有复杂性,并且如果您多线程访问它,则会正确处理错误。如果在singelton情况下出现问题,没有适当的方法来恢复你的频道。