Attempted to get logout working
parent
edbc3a46b2
commit
e631aafb63
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: CLSCompliantAttribute(false)]
|
[assembly: CLSCompliantAttribute(false)]
|
||||||
[assembly: AssemblyVersionAttribute("0.1.*.199")]
|
[assembly: AssemblyVersionAttribute("0.1.*.202")]
|
||||||
[assembly: AssemblyTitleAttribute("opensim-simconfig")]
|
[assembly: AssemblyTitleAttribute("opensim-simconfig")]
|
||||||
[assembly: AssemblyDescriptionAttribute("The default configuration handler")]
|
[assembly: AssemblyDescriptionAttribute("The default configuration handler")]
|
||||||
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
||||||
|
|
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: CLSCompliantAttribute(false)]
|
[assembly: CLSCompliantAttribute(false)]
|
||||||
[assembly: AssemblyVersionAttribute("0.1.*.199")]
|
[assembly: AssemblyVersionAttribute("0.1.*.202")]
|
||||||
[assembly: AssemblyTitleAttribute("opensim-gridinterfaces")]
|
[assembly: AssemblyTitleAttribute("opensim-gridinterfaces")]
|
||||||
[assembly: AssemblyDescriptionAttribute("Definitions for OGS interface")]
|
[assembly: AssemblyDescriptionAttribute("Definitions for OGS interface")]
|
||||||
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
||||||
|
|
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: CLSCompliantAttribute(false)]
|
[assembly: CLSCompliantAttribute(false)]
|
||||||
[assembly: AssemblyVersionAttribute("0.1.*.199")]
|
[assembly: AssemblyVersionAttribute("0.1.*.202")]
|
||||||
[assembly: AssemblyTitleAttribute("opensim-localservers")]
|
[assembly: AssemblyTitleAttribute("opensim-localservers")]
|
||||||
[assembly: AssemblyDescriptionAttribute("local grid servers")]
|
[assembly: AssemblyDescriptionAttribute("local grid servers")]
|
||||||
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
||||||
|
|
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: CLSCompliantAttribute(false)]
|
[assembly: CLSCompliantAttribute(false)]
|
||||||
[assembly: AssemblyVersionAttribute("0.1.*.199")]
|
[assembly: AssemblyVersionAttribute("0.1.*.202")]
|
||||||
[assembly: AssemblyTitleAttribute("opensim-localstorage")]
|
[assembly: AssemblyTitleAttribute("opensim-localstorage")]
|
||||||
[assembly: AssemblyDescriptionAttribute("The local storage handler")]
|
[assembly: AssemblyDescriptionAttribute("The local storage handler")]
|
||||||
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
||||||
|
|
|
@ -175,7 +175,7 @@ namespace OpenSim
|
||||||
break;
|
break;
|
||||||
case "users":
|
case "users":
|
||||||
OpenSim.world.Avatar TempAv;
|
OpenSim.world.Avatar TempAv;
|
||||||
this.WriteLine(String.Format("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16},{5,-16}","Firstname", "Lastname","Agent ID", "Session ID", "Circuit", "IP"));
|
this.WriteLine(String.Format("{0,-16}{1,-16}{2,-25}{3,-25}{4,-16}{5,-16}","Firstname", "Lastname","Agent ID", "Session ID", "Circuit", "IP"));
|
||||||
foreach (libsecondlife.LLUUID UUID in OpenSim_Main.local_world.Entities.Keys) {
|
foreach (libsecondlife.LLUUID UUID in OpenSim_Main.local_world.Entities.Keys) {
|
||||||
if(OpenSim_Main.local_world.Entities[UUID].ToString()== "OpenSim.world.Avatar")
|
if(OpenSim_Main.local_world.Entities[UUID].ToString()== "OpenSim.world.Avatar")
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: CLSCompliantAttribute(false)]
|
[assembly: CLSCompliantAttribute(false)]
|
||||||
[assembly: AssemblyVersionAttribute("0.1.*.199")]
|
[assembly: AssemblyVersionAttribute("0.1.*.202")]
|
||||||
[assembly: AssemblyTitleAttribute("opensim-remoteservers")]
|
[assembly: AssemblyTitleAttribute("opensim-remoteservers")]
|
||||||
[assembly: AssemblyDescriptionAttribute("Connects to remote OGS installation")]
|
[assembly: AssemblyDescriptionAttribute("Connects to remote OGS installation")]
|
||||||
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
||||||
|
|
|
@ -112,13 +112,10 @@ namespace RemoteGridServers
|
||||||
|
|
||||||
public bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode)
|
public bool LogoutSession(LLUUID sessionID, LLUUID agentID, uint circuitCode)
|
||||||
{
|
{
|
||||||
WebRequest DeleteSession = WebRequest.Create(GridServerUrl + "/usersessions/" + GridSendKey + "/" + agentID.ToString() + "/" + circuitCode.ToString() + "/delete");
|
WebRequest DeleteSession = WebRequest.Create(RemoteUrl + "/usersessions/" + sessionID.ToString());
|
||||||
|
DeleteSession.Method="DELETE";
|
||||||
WebResponse GridResponse = DeleteSession.GetResponse();
|
WebResponse GridResponse = DeleteSession.GetResponse();
|
||||||
StreamReader sr = new StreamReader(GridResponse.GetResponseStream());
|
|
||||||
String grTest = sr.ReadLine();
|
|
||||||
sr.Close();
|
|
||||||
GridResponse.Close();
|
GridResponse.Close();
|
||||||
ServerConsole.MainConsole.Instance.WriteLine("DEBUG: " + grTest);
|
|
||||||
return(true);
|
return(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: CLSCompliantAttribute(false)]
|
[assembly: CLSCompliantAttribute(false)]
|
||||||
[assembly: AssemblyVersionAttribute("0.1.*.199")]
|
[assembly: AssemblyVersionAttribute("0.1.*.202")]
|
||||||
[assembly: AssemblyTitleAttribute("opensim-serverconsole")]
|
[assembly: AssemblyTitleAttribute("opensim-serverconsole")]
|
||||||
[assembly: AssemblyDescriptionAttribute("The default server console")]
|
[assembly: AssemblyDescriptionAttribute("The default server console")]
|
||||||
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
||||||
|
|
|
@ -32,6 +32,6 @@ namespace OpenSim
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class VersionInfo
|
public class VersionInfo
|
||||||
{
|
{
|
||||||
public static string Version = "0.1, Build 1173826017, Revision 199M";
|
public static string Version = "0.1, Build 1173837399, Revision 202M";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: CLSCompliantAttribute(false)]
|
[assembly: CLSCompliantAttribute(false)]
|
||||||
[assembly: AssemblyVersionAttribute("0.1.*.199")]
|
[assembly: AssemblyVersionAttribute("0.1.*.202")]
|
||||||
[assembly: AssemblyTitleAttribute("opensim-physicsmanager")]
|
[assembly: AssemblyTitleAttribute("opensim-physicsmanager")]
|
||||||
[assembly: AssemblyDescriptionAttribute("Handles physics plugins")]
|
[assembly: AssemblyDescriptionAttribute("Handles physics plugins")]
|
||||||
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
||||||
|
|
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
||||||
|
|
||||||
[assembly: ComVisibleAttribute(false)]
|
[assembly: ComVisibleAttribute(false)]
|
||||||
[assembly: CLSCompliantAttribute(false)]
|
[assembly: CLSCompliantAttribute(false)]
|
||||||
[assembly: AssemblyVersionAttribute("0.1.*.199")]
|
[assembly: AssemblyVersionAttribute("0.1.*.202")]
|
||||||
[assembly: AssemblyTitleAttribute("opensim-physicsmanager-physx")]
|
[assembly: AssemblyTitleAttribute("opensim-physicsmanager-physx")]
|
||||||
[assembly: AssemblyDescriptionAttribute("PhysX plugin for OpenSim")]
|
[assembly: AssemblyDescriptionAttribute("PhysX plugin for OpenSim")]
|
||||||
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
[assembly: AssemblyCopyrightAttribute("Copyright © OGS development team 2007")]
|
||||||
|
|
Loading…
Reference in New Issue