diff options
author | gareth | 2007-04-02 12:35:51 +0000 |
---|---|---|
committer | gareth | 2007-04-02 12:35:51 +0000 |
commit | 454377a47388e2aea9a05eb71b27d6062a2323f3 (patch) | |
tree | 2c3f759854414c708c9224ddfee192f82a562016 | |
parent | Added /simstatus REST handler (diff) | |
download | opensim-SC_OLD-454377a47388e2aea9a05eb71b27d6062a2323f3.zip opensim-SC_OLD-454377a47388e2aea9a05eb71b27d6062a2323f3.tar.gz opensim-SC_OLD-454377a47388e2aea9a05eb71b27d6062a2323f3.tar.bz2 opensim-SC_OLD-454377a47388e2aea9a05eb71b27d6062a2323f3.tar.xz |
minor bug
Diffstat (limited to '')
-rw-r--r-- | OpenGridServices.GridServer/Main.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenGridServices.GridServer/Main.cs b/OpenGridServices.GridServer/Main.cs index 5b7f921..192b10c 100644 --- a/OpenGridServices.GridServer/Main.cs +++ b/OpenGridServices.GridServer/Main.cs | |||
@@ -145,7 +145,7 @@ namespace OpenGridServices.GridServer | |||
145 | foreach(SimProfileBase sim in _regionmanager.SimProfiles.Values) { | 145 | foreach(SimProfileBase sim in _regionmanager.SimProfiles.Values) { |
146 | string SimResponse=""; | 146 | string SimResponse=""; |
147 | try { | 147 | try { |
148 | WebRequest CheckSim = WebRequest.Create("http://" + sim.sim_ip + ":" + sim.sim_port.ToString() + "/checkstatus"); | 148 | WebRequest CheckSim = WebRequest.Create("http://" + sim.sim_ip + ":" + sim.sim_port.ToString() + "/checkstatus/"); |
149 | CheckSim.Method = "GET"; | 149 | CheckSim.Method = "GET"; |
150 | CheckSim.ContentType = "text/plaintext"; | 150 | CheckSim.ContentType = "text/plaintext"; |
151 | CheckSim.ContentLength = 0; | 151 | CheckSim.ContentLength = 0; |