* OpenGridServices.Manager/GridServerConnectionManager.cs: Now sending

the session ID with each command
This commit is contained in:
gareth
2007-05-19 12:02:22 +00:00
parent e6b3c83b7d
commit ec036a6eb0

View File

@@ -45,6 +45,7 @@ namespace OpenGridServices.Manager
try {
Hashtable ShutdownParamsHT = new Hashtable();
ArrayList ShutdownParams = new ArrayList();
ShutdownParamsHT["session_id"]=this.SessionID.ToString();
ShutdownParams.Add(ShutdownParamsHT);
XmlRpcRequest GridShutdownReq = new XmlRpcRequest("shutdown",ShutdownParams);
XmlRpcResponse GridResp = GridShutdownReq.Send(this.ServerURL,3000);