Added some exception handling

zircon^2
gareth 2007-05-17 01:11:36 +00:00
parent 2f4d484702
commit ab6d1bd5a6
2 changed files with 21 additions and 12 deletions

View File

@ -11,18 +11,23 @@ namespace OpenGridServices.Manager
public bool Connect(string GridServerURL, string username, string password)
{
this.ServerURL=GridServerURL;
Hashtable LoginParamsHT = new Hashtable();
LoginParamsHT["username"]=username;
LoginParamsHT["password"]=password;
ArrayList LoginParams = new ArrayList();
LoginParams.Add(LoginParamsHT);
XmlRpcRequest GridLoginReq = new XmlRpcRequest("manager_login",LoginParams);
XmlRpcResponse GridResp = GridLoginReq.Send(ServerURL,3000);
if(GridResp.IsFault) {
try {
this.ServerURL=GridServerURL;
Hashtable LoginParamsHT = new Hashtable();
LoginParamsHT["username"]=username;
LoginParamsHT["password"]=password;
ArrayList LoginParams = new ArrayList();
LoginParams.Add(LoginParamsHT);
XmlRpcRequest GridLoginReq = new XmlRpcRequest("manager_login",LoginParams);
XmlRpcResponse GridResp = GridLoginReq.Send(ServerURL,3000);
if(GridResp.IsFault) {
return false;
} else {
return true;
}
} catch(Exception e) {
Console.WriteLine(e.ToString());
return false;
} else {
return true;
}
}
}

View File

@ -39,7 +39,11 @@ namespace OpenGridServices.Manager
switch(cmd) {
case "connect_to_gridserver":
win.SetStatus("Connecting to grid server...");
gridserverConn.Connect(operation.Split(sep)[1],operation.Split(sep)[2],operation.Split(sep)[3]);
if(gridserverConn.Connect(operation.Split(sep)[1],operation.Split(sep)[2],operation.Split(sep)[3])) {
win.SetStatus("Connected OK");
} else {
win.SetStatus("Could not connect");
}
break;
}
}