* OpenGridServices.Manager/GridServerConnectionManager.cs: Now sending

the session ID with each command
zircon^2
gareth 2007-05-19 12:02:22 +00:00
parent e6b3c83b7d
commit ec036a6eb0
1 changed files with 1 additions and 0 deletions

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);