aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMW2007-06-24 18:40:02 +0000
committerMW2007-06-24 18:40:02 +0000
commitd607914f6a7e0ef7890ae229474a1ad90511868f (patch)
tree0030127df56b96c774faaf8e73a74620d0a13c54
parent* Updated to use multi-listeners (diff)
downloadopensim-SC_OLD-d607914f6a7e0ef7890ae229474a1ad90511868f.zip
opensim-SC_OLD-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.gz
opensim-SC_OLD-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.bz2
opensim-SC_OLD-d607914f6a7e0ef7890ae229474a1ad90511868f.tar.xz
Hopefully enabled the OGS commsManager
-rw-r--r--Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs18
-rw-r--r--Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs19
-rw-r--r--Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs25
-rw-r--r--Common/OpenGrid.Framework.Communications.OGS1/OpenGrid.Framework.Communications.OGS1.csproj52
-rw-r--r--Common/OpenSim.Framework/Types/NetworkServersInfo.cs54
-rw-r--r--OpenSim/OpenSim.Caches/AssetCache.cs1
-rw-r--r--OpenSim/OpenSim.Region/Caps.cs52
-rw-r--r--OpenSim/OpenSim/OpenSim.csproj65
-rw-r--r--OpenSim/OpenSim/OpenSimMain.cs5
9 files changed, 218 insertions, 73 deletions
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs b/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs
new file mode 100644
index 0000000..f151f56
--- /dev/null
+++ b/Common/OpenGrid.Framework.Communications.OGS1/GridCommsManager.cs
@@ -0,0 +1,18 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenGrid.Framework.Communications;
5namespace OpenGrid.Framework.Communications.OGS1
6{
7 public class GridCommsManager : CommunicationsManager
8 {
9
10
11 public GridCommsManager()
12 {
13 GridServer = new OGS1GridServices();
14 InterRegion = new OGSInterSimComms();
15 UserServer = new OGSUserServices();
16 }
17 }
18}
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs b/Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs
new file mode 100644
index 0000000..0024d14
--- /dev/null
+++ b/Common/OpenGrid.Framework.Communications.OGS1/OGSInterSimComms.cs
@@ -0,0 +1,19 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenSim.Framework.Types;
5using OpenGrid.Framework.Communications;
6namespace OpenGrid.Framework.Communications.OGS1
7{
8 public class OGSInterSimComms : IInterRegionCommunications
9 {
10 public bool InformRegionOfChildAgent(ulong regionHandle, AgentCircuitData agentData)
11 {
12 return false;
13 }
14 public bool ExpectAvatarCrossing(ulong regionHandle, libsecondlife.LLUUID agentID, libsecondlife.LLVector3 position)
15 {
16 return false;
17 }
18 }
19}
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs b/Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs
new file mode 100644
index 0000000..1667e6b
--- /dev/null
+++ b/Common/OpenGrid.Framework.Communications.OGS1/OGSUserServices.cs
@@ -0,0 +1,25 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenGrid.Framework.Communications;
5using OpenGrid.Framework.Data;
6using libsecondlife;
7
8namespace OpenGrid.Framework.Communications.OGS1
9{
10 public class OGSUserServices :IUserServices
11 {
12 public UserProfileData GetUserProfile(string firstName, string lastName)
13 {
14 return null;
15 }
16 public UserProfileData GetUserProfile(string name)
17 {
18 return null;
19 }
20 public UserProfileData GetUserProfile(LLUUID avatarID)
21 {
22 return null;
23 }
24 }
25}
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/OpenGrid.Framework.Communications.OGS1.csproj b/Common/OpenGrid.Framework.Communications.OGS1/OpenGrid.Framework.Communications.OGS1.csproj
index fdd056a..4a80635 100644
--- a/Common/OpenGrid.Framework.Communications.OGS1/OpenGrid.Framework.Communications.OGS1.csproj
+++ b/Common/OpenGrid.Framework.Communications.OGS1/OpenGrid.Framework.Communications.OGS1.csproj
@@ -1,12 +1,13 @@
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <PropertyGroup> 2 <PropertyGroup>
3 <ProjectType>Local</ProjectType> 3 <ProjectType>Local</ProjectType>
4 <ProductVersion>8.0.50727</ProductVersion> 4 <ProductVersion>8.0.50727</ProductVersion>
5 <SchemaVersion>2.0</SchemaVersion> 5 <SchemaVersion>2.0</SchemaVersion>
6 <ProjectGuid>{17442AF1-0000-0000-0000-000000000000}</ProjectGuid> 6 <ProjectGuid>{C1F40DD4-A68B-4233-9142-CE236775A3CE}</ProjectGuid>
7 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 7 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
8 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 8 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
9 <ApplicationIcon></ApplicationIcon> 9 <ApplicationIcon>
10 </ApplicationIcon>
10 <AssemblyKeyContainerName> 11 <AssemblyKeyContainerName>
11 </AssemblyKeyContainerName> 12 </AssemblyKeyContainerName>
12 <AssemblyName>OpenGrid.Framework.Communications.OGS1</AssemblyName> 13 <AssemblyName>OpenGrid.Framework.Communications.OGS1</AssemblyName>
@@ -15,9 +16,11 @@
15 <DefaultTargetSchema>IE50</DefaultTargetSchema> 16 <DefaultTargetSchema>IE50</DefaultTargetSchema>
16 <DelaySign>false</DelaySign> 17 <DelaySign>false</DelaySign>
17 <OutputType>Library</OutputType> 18 <OutputType>Library</OutputType>
18 <AppDesignerFolder></AppDesignerFolder> 19 <AppDesignerFolder>
20 </AppDesignerFolder>
19 <RootNamespace>OpenGrid.Framework.Communications.OGS1</RootNamespace> 21 <RootNamespace>OpenGrid.Framework.Communications.OGS1</RootNamespace>
20 <StartupObject></StartupObject> 22 <StartupObject>
23 </StartupObject>
21 <FileUpgradeFlags> 24 <FileUpgradeFlags>
22 </FileUpgradeFlags> 25 </FileUpgradeFlags>
23 </PropertyGroup> 26 </PropertyGroup>
@@ -28,7 +31,8 @@
28 <ConfigurationOverrideFile> 31 <ConfigurationOverrideFile>
29 </ConfigurationOverrideFile> 32 </ConfigurationOverrideFile>
30 <DefineConstants>TRACE;DEBUG</DefineConstants> 33 <DefineConstants>TRACE;DEBUG</DefineConstants>
31 <DocumentationFile></DocumentationFile> 34 <DocumentationFile>
35 </DocumentationFile>
32 <DebugSymbols>True</DebugSymbols> 36 <DebugSymbols>True</DebugSymbols>
33 <FileAlignment>4096</FileAlignment> 37 <FileAlignment>4096</FileAlignment>
34 <Optimize>False</Optimize> 38 <Optimize>False</Optimize>
@@ -37,7 +41,8 @@
37 <RemoveIntegerChecks>False</RemoveIntegerChecks> 41 <RemoveIntegerChecks>False</RemoveIntegerChecks>
38 <TreatWarningsAsErrors>False</TreatWarningsAsErrors> 42 <TreatWarningsAsErrors>False</TreatWarningsAsErrors>
39 <WarningLevel>4</WarningLevel> 43 <WarningLevel>4</WarningLevel>
40 <NoWarn></NoWarn> 44 <NoWarn>
45 </NoWarn>
41 </PropertyGroup> 46 </PropertyGroup>
42 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 47 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
43 <AllowUnsafeBlocks>False</AllowUnsafeBlocks> 48 <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
@@ -46,7 +51,8 @@
46 <ConfigurationOverrideFile> 51 <ConfigurationOverrideFile>
47 </ConfigurationOverrideFile> 52 </ConfigurationOverrideFile>
48 <DefineConstants>TRACE</DefineConstants> 53 <DefineConstants>TRACE</DefineConstants>
49 <DocumentationFile></DocumentationFile> 54 <DocumentationFile>
55 </DocumentationFile>
50 <DebugSymbols>False</DebugSymbols> 56 <DebugSymbols>False</DebugSymbols>
51 <FileAlignment>4096</FileAlignment> 57 <FileAlignment>4096</FileAlignment>
52 <Optimize>True</Optimize> 58 <Optimize>True</Optimize>
@@ -55,22 +61,23 @@
55 <RemoveIntegerChecks>False</RemoveIntegerChecks> 61 <RemoveIntegerChecks>False</RemoveIntegerChecks>
56 <TreatWarningsAsErrors>False</TreatWarningsAsErrors> 62 <TreatWarningsAsErrors>False</TreatWarningsAsErrors>
57 <WarningLevel>4</WarningLevel> 63 <WarningLevel>4</WarningLevel>
58 <NoWarn></NoWarn> 64 <NoWarn>
65 </NoWarn>
59 </PropertyGroup> 66 </PropertyGroup>
60 <ItemGroup> 67 <ItemGroup>
61 <Reference Include="libsecondlife.dll" > 68 <Reference Include="libsecondlife.dll">
62 <HintPath>..\..\bin\libsecondlife.dll</HintPath> 69 <HintPath>..\..\bin\libsecondlife.dll</HintPath>
63 <Private>False</Private> 70 <Private>False</Private>
64 </Reference> 71 </Reference>
65 <Reference Include="System" > 72 <Reference Include="System">
66 <HintPath>System.dll</HintPath> 73 <HintPath>System.dll</HintPath>
67 <Private>False</Private> 74 <Private>False</Private>
68 </Reference> 75 </Reference>
69 <Reference Include="System.Data" > 76 <Reference Include="System.Data">
70 <HintPath>System.Data.dll</HintPath> 77 <HintPath>System.Data.dll</HintPath>
71 <Private>False</Private> 78 <Private>False</Private>
72 </Reference> 79 </Reference>
73 <Reference Include="System.Xml" > 80 <Reference Include="System.Xml">
74 <HintPath>System.Xml.dll</HintPath> 81 <HintPath>System.Xml.dll</HintPath>
75 <Private>False</Private> 82 <Private>False</Private>
76 </Reference> 83 </Reference>
@@ -80,37 +87,44 @@
80 <Name>OpenGrid.Framework.Communications</Name> 87 <Name>OpenGrid.Framework.Communications</Name>
81 <Project>{683344D5-0000-0000-0000-000000000000}</Project> 88 <Project>{683344D5-0000-0000-0000-000000000000}</Project>
82 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 89 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
83 <Private>False</Private> 90 <Private>False</Private>
91 </ProjectReference>
92 <ProjectReference Include="..\OpenGrid.Framework.Data\OpenGrid.Framework.Data.csproj">
93 <Project>{62CDF671-0000-0000-0000-000000000000}</Project>
94 <Name>OpenGrid.Framework.Data</Name>
84 </ProjectReference> 95 </ProjectReference>
85 <ProjectReference Include="..\OpenSim.Framework\OpenSim.Framework.csproj"> 96 <ProjectReference Include="..\OpenSim.Framework\OpenSim.Framework.csproj">
86 <Name>OpenSim.Framework</Name> 97 <Name>OpenSim.Framework</Name>
87 <Project>{8ACA2445-0000-0000-0000-000000000000}</Project> 98 <Project>{8ACA2445-0000-0000-0000-000000000000}</Project>
88 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 99 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
89 <Private>False</Private> 100 <Private>False</Private>
90 </ProjectReference> 101 </ProjectReference>
91 <ProjectReference Include="..\OpenSim.Framework.Console\OpenSim.Framework.Console.csproj"> 102 <ProjectReference Include="..\OpenSim.Framework.Console\OpenSim.Framework.Console.csproj">
92 <Name>OpenSim.Framework.Console</Name> 103 <Name>OpenSim.Framework.Console</Name>
93 <Project>{A7CD0630-0000-0000-0000-000000000000}</Project> 104 <Project>{A7CD0630-0000-0000-0000-000000000000}</Project>
94 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 105 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
95 <Private>False</Private> 106 <Private>False</Private>
96 </ProjectReference> 107 </ProjectReference>
97 <ProjectReference Include="..\OpenSim.Servers\OpenSim.Servers.csproj"> 108 <ProjectReference Include="..\OpenSim.Servers\OpenSim.Servers.csproj">
98 <Name>OpenSim.Servers</Name> 109 <Name>OpenSim.Servers</Name>
99 <Project>{8BB20F0A-0000-0000-0000-000000000000}</Project> 110 <Project>{8BB20F0A-0000-0000-0000-000000000000}</Project>
100 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 111 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
101 <Private>False</Private> 112 <Private>False</Private>
102 </ProjectReference> 113 </ProjectReference>
103 <ProjectReference Include="..\XmlRpcCS\XMLRPC.csproj"> 114 <ProjectReference Include="..\XmlRpcCS\XMLRPC.csproj">
104 <Name>XMLRPC</Name> 115 <Name>XMLRPC</Name>
105 <Project>{8E81D43C-0000-0000-0000-000000000000}</Project> 116 <Project>{8E81D43C-0000-0000-0000-000000000000}</Project>
106 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 117 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
107 <Private>False</Private> 118 <Private>False</Private>
108 </ProjectReference> 119 </ProjectReference>
109 </ItemGroup> 120 </ItemGroup>
110 <ItemGroup> 121 <ItemGroup>
122 <Compile Include="GridCommsManager.cs" />
111 <Compile Include="OGS1GridServices.cs"> 123 <Compile Include="OGS1GridServices.cs">
112 <SubType>Code</SubType> 124 <SubType>Code</SubType>
113 </Compile> 125 </Compile>
126 <Compile Include="OGSInterSimComms.cs" />
127 <Compile Include="OGSUserServices.cs" />
114 <Compile Include="Properties\AssemblyInfo.cs"> 128 <Compile Include="Properties\AssemblyInfo.cs">
115 <SubType>Code</SubType> 129 <SubType>Code</SubType>
116 </Compile> 130 </Compile>
@@ -122,4 +136,4 @@
122 <PostBuildEvent> 136 <PostBuildEvent>
123 </PostBuildEvent> 137 </PostBuildEvent>
124 </PropertyGroup> 138 </PropertyGroup>
125</Project> 139</Project> \ No newline at end of file
diff --git a/Common/OpenSim.Framework/Types/NetworkServersInfo.cs b/Common/OpenSim.Framework/Types/NetworkServersInfo.cs
index 709b7dd..9c2e7a6 100644
--- a/Common/OpenSim.Framework/Types/NetworkServersInfo.cs
+++ b/Common/OpenSim.Framework/Types/NetworkServersInfo.cs
@@ -48,6 +48,8 @@ namespace OpenSim.Framework.Types
48 public uint DefaultHomeLocX = 0; 48 public uint DefaultHomeLocX = 0;
49 public uint DefaultHomeLocY = 0; 49 public uint DefaultHomeLocY = 0;
50 50
51 public int HttpListenerPort = 9000;
52
51 public void InitConfig(bool sandboxMode, IGenericConfig configData) 53 public void InitConfig(bool sandboxMode, IGenericConfig configData)
52 { 54 {
53 this.isSandbox = sandboxMode; 55 this.isSandbox = sandboxMode;
@@ -55,34 +57,50 @@ namespace OpenSim.Framework.Types
55 try 57 try
56 { 58 {
57 string attri = ""; 59 string attri = "";
58 // default home location X 60
59 attri = ""; 61 attri = "";
60 attri = configData.GetAttribute("DefaultLocationX"); 62 attri = configData.GetAttribute("HttpListenerPort");
61 if (attri == "") 63 if (attri == "")
62 { 64 {
63 string location = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Default Home Location X", "1000"); 65 string location = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Http Listener Port", "9000");
64 configData.SetAttribute("DefaultLocationX", location); 66 configData.SetAttribute("HttpListenerPort", location);
65 this.DefaultHomeLocX = (uint)Convert.ToUInt32(location); 67 this.HttpListenerPort = Convert.ToInt32(location);
66 } 68 }
67 else 69 else
68 { 70 {
69 this.DefaultHomeLocX = (uint)Convert.ToUInt32(attri); 71 this.HttpListenerPort = Convert.ToInt32(attri);
70 } 72 }
71 73
72 // default home location Y 74 if (sandboxMode)
73 attri = "";
74 attri = configData.GetAttribute("DefaultLocationY");
75 if (attri == "")
76 {
77 string location = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Default Home Location Y", "1000");
78 configData.SetAttribute("DefaultLocationY", location);
79 this.DefaultHomeLocY = (uint)Convert.ToUInt32(location);
80 }
81 else
82 { 75 {
83 this.DefaultHomeLocY = (uint)Convert.ToUInt32(attri); 76 // default home location X
84 } 77 attri = "";
78 attri = configData.GetAttribute("DefaultLocationX");
79 if (attri == "")
80 {
81 string location = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Default Home Location X", "1000");
82 configData.SetAttribute("DefaultLocationX", location);
83 this.DefaultHomeLocX = (uint)Convert.ToUInt32(location);
84 }
85 else
86 {
87 this.DefaultHomeLocX = (uint)Convert.ToUInt32(attri);
88 }
85 89
90 // default home location Y
91 attri = "";
92 attri = configData.GetAttribute("DefaultLocationY");
93 if (attri == "")
94 {
95 string location = OpenSim.Framework.Console.MainLog.Instance.CmdPrompt("Default Home Location Y", "1000");
96 configData.SetAttribute("DefaultLocationY", location);
97 this.DefaultHomeLocY = (uint)Convert.ToUInt32(location);
98 }
99 else
100 {
101 this.DefaultHomeLocY = (uint)Convert.ToUInt32(attri);
102 }
103 }
86 if (!isSandbox) 104 if (!isSandbox)
87 { 105 {
88 //Grid Server 106 //Grid Server
diff --git a/OpenSim/OpenSim.Caches/AssetCache.cs b/OpenSim/OpenSim.Caches/AssetCache.cs
index f310752..d0cc370 100644
--- a/OpenSim/OpenSim.Caches/AssetCache.cs
+++ b/OpenSim/OpenSim.Caches/AssetCache.cs
@@ -39,6 +39,7 @@ using OpenSim.Framework.Utilities;
39namespace OpenSim.Caches 39namespace OpenSim.Caches
40{ 40{
41 public delegate void DownloadComplete(AssetCache.TextureSender sender); 41 public delegate void DownloadComplete(AssetCache.TextureSender sender);
42
42 /// <summary> 43 /// <summary>
43 /// Manages local cache of assets and their sending to viewers. 44 /// Manages local cache of assets and their sending to viewers.
44 /// </summary> 45 /// </summary>
diff --git a/OpenSim/OpenSim.Region/Caps.cs b/OpenSim/OpenSim.Region/Caps.cs
index 59f24e3..7ec0c75 100644
--- a/OpenSim/OpenSim.Region/Caps.cs
+++ b/OpenSim/OpenSim.Region/Caps.cs
@@ -22,9 +22,11 @@ namespace OpenSim.Region
22 private string mapLayerPath = "0001/"; 22 private string mapLayerPath = "0001/";
23 private string newInventory = "0002/"; 23 private string newInventory = "0002/";
24 private string requestTexture = "0003/"; 24 private string requestTexture = "0003/";
25 private string eventQueue = "0100/";
25 private BaseHttpServer httpListener; 26 private BaseHttpServer httpListener;
26 private LLUUID agentID; 27 private LLUUID agentID;
27 private AssetCache assetCache; 28 private AssetCache assetCache;
29 private int eventQueueCount = 1;
28 30
29 public Caps(AssetCache assetCach, BaseHttpServer httpServer, string httpListen, uint httpPort, string capsPath, LLUUID agent) 31 public Caps(AssetCache assetCach, BaseHttpServer httpServer, string httpListen, uint httpPort, string capsPath, LLUUID agent)
30 { 32 {
@@ -45,6 +47,7 @@ namespace OpenSim.Region
45 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + requestPath, CapsRequest); 47 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + requestPath, CapsRequest);
46 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + mapLayerPath, MapLayer); 48 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + mapLayerPath, MapLayer);
47 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + newInventory, NewAgentInventory); 49 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + newInventory, NewAgentInventory);
50 httpListener.AddRestHandler("POST", "/CAPS/" + capsObjectPath + eventQueue, ProcessEventQueue);
48 } 51 }
49 52
50 /// <summary> 53 /// <summary>
@@ -74,6 +77,7 @@ namespace OpenSim.Region
74 capURLS += "<key>MapLayer</key><string>http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + capsObjectPath + mapLayerPath + "</string>"; 77 capURLS += "<key>MapLayer</key><string>http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + capsObjectPath + mapLayerPath + "</string>";
75 capURLS += "<key>NewFileAgentInventory</key><string>http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + capsObjectPath + newInventory + "</string>"; 78 capURLS += "<key>NewFileAgentInventory</key><string>http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + capsObjectPath + newInventory + "</string>";
76 //capURLS += "<key>RequestTextureDownload</key><string>http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + capsObjectPath + requestTexture + "</string>"; 79 //capURLS += "<key>RequestTextureDownload</key><string>http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + capsObjectPath + requestTexture + "</string>";
80 capURLS += "<key>EventQueueGet</key><string>http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + capsObjectPath + eventQueue + "</string>";
77 return capURLS; 81 return capURLS;
78 } 82 }
79 83
@@ -116,6 +120,40 @@ namespace OpenSim.Region
116 return res; 120 return res;
117 } 121 }
118 122
123 public string ProcessEventQueue(string request, string path, string param)
124 {
125 Console.WriteLine("event queue request " + request);
126 string res = "";
127 res = this.CreateEmptyEventResponse();
128 return res;
129 }
130
131 public string CreateEstablishAgentComms(string caps, string ipAddressPort)
132 {
133 string res = "<llsd><map><key>id</key><integer>" + eventQueueCount + "</integer>";
134 res += "<key>events</key><array><map>";
135 res += "<key>message</key><string>EstablishAgentCommunication</string>";
136 res += "<key>body</key><map>";
137 res += "<key>sim-ip-and-port</key><string>"+ipAddressPort +"</string>";
138 res += "<key>seed-capability</key><string>"+caps+"</string>";
139 res += "<key>agent-id</key><uuid>"+this.agentID.ToStringHyphenated()+"</uuid>";
140 res += "</map>";
141 res += "</map></array>";
142 res += "</map></llsd>";
143 eventQueueCount++;
144 return res;
145 }
146
147 public string CreateEmptyEventResponse()
148 {
149 string res = "<llsd><map><key>id</key><integer>" + eventQueueCount + "</integer>";
150 res += "<key>events</key><array><map>";
151 res += "</map></array>";
152 res += "</map></llsd>";
153 eventQueueCount++;
154 return res;
155 }
156
119 public string NewAgentInventory(string request, string path, string param) 157 public string NewAgentInventory(string request, string path, string param)
120 { 158 {
121 //Console.WriteLine("received upload request:"+ request); 159 //Console.WriteLine("received upload request:"+ request);
@@ -123,13 +161,13 @@ namespace OpenSim.Region
123 LLUUID newAsset = LLUUID.Random(); 161 LLUUID newAsset = LLUUID.Random();
124 LLUUID newInvItem = LLUUID.Random(); 162 LLUUID newInvItem = LLUUID.Random();
125 string uploaderPath = capsObjectPath + Util.RandomClass.Next(5000, 8000).ToString("0000"); 163 string uploaderPath = capsObjectPath + Util.RandomClass.Next(5000, 8000).ToString("0000");
126 AssetUploader uploader = new AssetUploader(newAsset,newInvItem, uploaderPath, this.httpListener); 164 AssetUploader uploader = new AssetUploader(newAsset, newInvItem, uploaderPath, this.httpListener);
127 httpListener.AddRestHandler("POST", "/CAPS/" + uploaderPath, uploader.uploaderCaps); 165 httpListener.AddRestHandler("POST", "/CAPS/" + uploaderPath, uploader.uploaderCaps);
128 string uploaderURL = "http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + uploaderPath; 166 string uploaderURL = "http://" + httpListenerAddress + ":" + httpListenPort.ToString() + "/CAPS/" + uploaderPath;
129 Console.WriteLine("uploader url is " + uploaderURL); 167 Console.WriteLine("uploader url is " + uploaderURL);
130 res += "<llsd><map>"; 168 res += "<llsd><map>";
131 res += "<key>uploader</key><string>"+uploaderURL +"</string>"; 169 res += "<key>uploader</key><string>" + uploaderURL + "</string>";
132 //res += "<key>success</key><boolean>true</boolean>"; 170 //res += "<key>success</key><boolean>true</boolean>";
133 res += "<key>state</key><string>upload</string>"; 171 res += "<key>state</key><string>upload</string>";
134 res += "</map></llsd>"; 172 res += "</map></llsd>";
135 uploader.OnUpLoad += this.UploadHandler; 173 uploader.OnUpLoad += this.UploadHandler;
@@ -138,7 +176,7 @@ namespace OpenSim.Region
138 176
139 public void UploadHandler(LLUUID assetID, LLUUID inventoryItem, byte[] data) 177 public void UploadHandler(LLUUID assetID, LLUUID inventoryItem, byte[] data)
140 { 178 {
141 // Console.WriteLine("upload handler called"); 179 // Console.WriteLine("upload handler called");
142 AssetBase asset; 180 AssetBase asset;
143 asset = new AssetBase(); 181 asset = new AssetBase();
144 asset.FullID = assetID; 182 asset.FullID = assetID;
@@ -147,7 +185,7 @@ namespace OpenSim.Region
147 asset.Name = "UploadedTexture" + Util.RandomClass.Next(1, 1000).ToString("000"); 185 asset.Name = "UploadedTexture" + Util.RandomClass.Next(1, 1000).ToString("000");
148 asset.Data = data; 186 asset.Data = data;
149 this.assetCache.AddAsset(asset); 187 this.assetCache.AddAsset(asset);
150 188
151 } 189 }
152 190
153 public class AssetUploader 191 public class AssetUploader
@@ -181,12 +219,12 @@ namespace OpenSim.Region
181 res += "</map></llsd>"; 219 res += "</map></llsd>";
182 220
183 Console.WriteLine("asset " + newAssetID.ToStringHyphenated() + " , inventory item " + inv.ToStringHyphenated()); 221 Console.WriteLine("asset " + newAssetID.ToStringHyphenated() + " , inventory item " + inv.ToStringHyphenated());
184 httpListener.RemoveRestHandler("POST", "/CAPS/"+uploaderPath); 222 httpListener.RemoveRestHandler("POST", "/CAPS/" + uploaderPath);
185 if (OnUpLoad != null) 223 if (OnUpLoad != null)
186 { 224 {
187 OnUpLoad(newAssetID, inv, data); 225 OnUpLoad(newAssetID, inv, data);
188 } 226 }
189 227
190 /*FileStream fs = File.Create("upload.jp2"); 228 /*FileStream fs = File.Create("upload.jp2");
191 BinaryWriter bw = new BinaryWriter(fs); 229 BinaryWriter bw = new BinaryWriter(fs);
192 bw.Write(data); 230 bw.Write(data);
diff --git a/OpenSim/OpenSim/OpenSim.csproj b/OpenSim/OpenSim/OpenSim.csproj
index a8cadc0..91eb474 100644
--- a/OpenSim/OpenSim/OpenSim.csproj
+++ b/OpenSim/OpenSim/OpenSim.csproj
@@ -1,4 +1,4 @@
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <PropertyGroup> 2 <PropertyGroup>
3 <ProjectType>Local</ProjectType> 3 <ProjectType>Local</ProjectType>
4 <ProductVersion>8.0.50727</ProductVersion> 4 <ProductVersion>8.0.50727</ProductVersion>
@@ -6,7 +6,8 @@
6 <ProjectGuid>{438A9556-0000-0000-0000-000000000000}</ProjectGuid> 6 <ProjectGuid>{438A9556-0000-0000-0000-000000000000}</ProjectGuid>
7 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 7 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
8 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 8 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
9 <ApplicationIcon></ApplicationIcon> 9 <ApplicationIcon>
10 </ApplicationIcon>
10 <AssemblyKeyContainerName> 11 <AssemblyKeyContainerName>
11 </AssemblyKeyContainerName> 12 </AssemblyKeyContainerName>
12 <AssemblyName>OpenSim</AssemblyName> 13 <AssemblyName>OpenSim</AssemblyName>
@@ -15,9 +16,11 @@
15 <DefaultTargetSchema>IE50</DefaultTargetSchema> 16 <DefaultTargetSchema>IE50</DefaultTargetSchema>
16 <DelaySign>false</DelaySign> 17 <DelaySign>false</DelaySign>
17 <OutputType>Exe</OutputType> 18 <OutputType>Exe</OutputType>
18 <AppDesignerFolder></AppDesignerFolder> 19 <AppDesignerFolder>
20 </AppDesignerFolder>
19 <RootNamespace>OpenSim</RootNamespace> 21 <RootNamespace>OpenSim</RootNamespace>
20 <StartupObject></StartupObject> 22 <StartupObject>
23 </StartupObject>
21 <FileUpgradeFlags> 24 <FileUpgradeFlags>
22 </FileUpgradeFlags> 25 </FileUpgradeFlags>
23 </PropertyGroup> 26 </PropertyGroup>
@@ -28,7 +31,8 @@
28 <ConfigurationOverrideFile> 31 <ConfigurationOverrideFile>
29 </ConfigurationOverrideFile> 32 </ConfigurationOverrideFile>
30 <DefineConstants>TRACE;DEBUG</DefineConstants> 33 <DefineConstants>TRACE;DEBUG</DefineConstants>
31 <DocumentationFile></DocumentationFile> 34 <DocumentationFile>
35 </DocumentationFile>
32 <DebugSymbols>True</DebugSymbols> 36 <DebugSymbols>True</DebugSymbols>
33 <FileAlignment>4096</FileAlignment> 37 <FileAlignment>4096</FileAlignment>
34 <Optimize>False</Optimize> 38 <Optimize>False</Optimize>
@@ -37,7 +41,8 @@
37 <RemoveIntegerChecks>False</RemoveIntegerChecks> 41 <RemoveIntegerChecks>False</RemoveIntegerChecks>
38 <TreatWarningsAsErrors>False</TreatWarningsAsErrors> 42 <TreatWarningsAsErrors>False</TreatWarningsAsErrors>
39 <WarningLevel>4</WarningLevel> 43 <WarningLevel>4</WarningLevel>
40 <NoWarn></NoWarn> 44 <NoWarn>
45 </NoWarn>
41 </PropertyGroup> 46 </PropertyGroup>
42 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 47 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
43 <AllowUnsafeBlocks>False</AllowUnsafeBlocks> 48 <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
@@ -46,7 +51,8 @@
46 <ConfigurationOverrideFile> 51 <ConfigurationOverrideFile>
47 </ConfigurationOverrideFile> 52 </ConfigurationOverrideFile>
48 <DefineConstants>TRACE</DefineConstants> 53 <DefineConstants>TRACE</DefineConstants>
49 <DocumentationFile></DocumentationFile> 54 <DocumentationFile>
55 </DocumentationFile>
50 <DebugSymbols>False</DebugSymbols> 56 <DebugSymbols>False</DebugSymbols>
51 <FileAlignment>4096</FileAlignment> 57 <FileAlignment>4096</FileAlignment>
52 <Optimize>True</Optimize> 58 <Optimize>True</Optimize>
@@ -55,108 +61,113 @@
55 <RemoveIntegerChecks>False</RemoveIntegerChecks> 61 <RemoveIntegerChecks>False</RemoveIntegerChecks>
56 <TreatWarningsAsErrors>False</TreatWarningsAsErrors> 62 <TreatWarningsAsErrors>False</TreatWarningsAsErrors>
57 <WarningLevel>4</WarningLevel> 63 <WarningLevel>4</WarningLevel>
58 <NoWarn></NoWarn> 64 <NoWarn>
65 </NoWarn>
59 </PropertyGroup> 66 </PropertyGroup>
60 <ItemGroup> 67 <ItemGroup>
61 <Reference Include="Axiom.MathLib.dll" > 68 <Reference Include="Axiom.MathLib.dll">
62 <HintPath>..\..\bin\Axiom.MathLib.dll</HintPath> 69 <HintPath>..\..\bin\Axiom.MathLib.dll</HintPath>
63 <Private>False</Private> 70 <Private>False</Private>
64 </Reference> 71 </Reference>
65 <Reference Include="Db4objects.Db4o.dll" > 72 <Reference Include="Db4objects.Db4o.dll">
66 <HintPath>..\..\bin\Db4objects.Db4o.dll</HintPath> 73 <HintPath>..\..\bin\Db4objects.Db4o.dll</HintPath>
67 <Private>False</Private> 74 <Private>False</Private>
68 </Reference> 75 </Reference>
69 <Reference Include="libsecondlife.dll" > 76 <Reference Include="libsecondlife.dll">
70 <HintPath>..\..\bin\libsecondlife.dll</HintPath> 77 <HintPath>..\..\bin\libsecondlife.dll</HintPath>
71 <Private>False</Private> 78 <Private>False</Private>
72 </Reference> 79 </Reference>
73 <Reference Include="System" > 80 <Reference Include="System">
74 <HintPath>System.dll</HintPath> 81 <HintPath>System.dll</HintPath>
75 <Private>False</Private> 82 <Private>False</Private>
76 </Reference> 83 </Reference>
77 <Reference Include="System.Xml" > 84 <Reference Include="System.Xml">
78 <HintPath>System.Xml.dll</HintPath> 85 <HintPath>System.Xml.dll</HintPath>
79 <Private>False</Private> 86 <Private>False</Private>
80 </Reference> 87 </Reference>
81 </ItemGroup> 88 </ItemGroup>
82 <ItemGroup> 89 <ItemGroup>
90 <ProjectReference Include="..\..\Common\OpenGrid.Framework.Communications.OGS1\OpenGrid.Framework.Communications.OGS1.csproj">
91 <Project>{C1F40DD4-A68B-4233-9142-CE236775A3CE}</Project>
92 <Name>OpenGrid.Framework.Communications.OGS1</Name>
93 </ProjectReference>
83 <ProjectReference Include="..\..\Common\OpenGrid.Framework.Communications\OpenGrid.Framework.Communications.csproj"> 94 <ProjectReference Include="..\..\Common\OpenGrid.Framework.Communications\OpenGrid.Framework.Communications.csproj">
84 <Name>OpenGrid.Framework.Communications</Name> 95 <Name>OpenGrid.Framework.Communications</Name>
85 <Project>{683344D5-0000-0000-0000-000000000000}</Project> 96 <Project>{683344D5-0000-0000-0000-000000000000}</Project>
86 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 97 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
87 <Private>False</Private> 98 <Private>False</Private>
88 </ProjectReference> 99 </ProjectReference>
89 <ProjectReference Include="..\..\Common\OpenGrid.Framework.UserManager\OpenGrid.Framework.UserManagement.csproj"> 100 <ProjectReference Include="..\..\Common\OpenGrid.Framework.UserManager\OpenGrid.Framework.UserManagement.csproj">
90 <Name>OpenGrid.Framework.UserManagement</Name> 101 <Name>OpenGrid.Framework.UserManagement</Name>
91 <Project>{DA9A7391-0000-0000-0000-000000000000}</Project> 102 <Project>{DA9A7391-0000-0000-0000-000000000000}</Project>
92 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 103 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
93 <Private>False</Private> 104 <Private>False</Private>
94 </ProjectReference> 105 </ProjectReference>
95 <ProjectReference Include="..\OpenSim.Caches\OpenSim.Caches.csproj"> 106 <ProjectReference Include="..\OpenSim.Caches\OpenSim.Caches.csproj">
96 <Name>OpenSim.Caches</Name> 107 <Name>OpenSim.Caches</Name>
97 <Project>{1938EB12-0000-0000-0000-000000000000}</Project> 108 <Project>{1938EB12-0000-0000-0000-000000000000}</Project>
98 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 109 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
99 <Private>False</Private> 110 <Private>False</Private>
100 </ProjectReference> 111 </ProjectReference>
101 <ProjectReference Include="..\..\Common\OpenSim.Framework\OpenSim.Framework.csproj"> 112 <ProjectReference Include="..\..\Common\OpenSim.Framework\OpenSim.Framework.csproj">
102 <Name>OpenSim.Framework</Name> 113 <Name>OpenSim.Framework</Name>
103 <Project>{8ACA2445-0000-0000-0000-000000000000}</Project> 114 <Project>{8ACA2445-0000-0000-0000-000000000000}</Project>
104 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 115 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
105 <Private>False</Private> 116 <Private>False</Private>
106 </ProjectReference> 117 </ProjectReference>
107 <ProjectReference Include="..\..\Common\OpenSim.Framework.Console\OpenSim.Framework.Console.csproj"> 118 <ProjectReference Include="..\..\Common\OpenSim.Framework.Console\OpenSim.Framework.Console.csproj">
108 <Name>OpenSim.Framework.Console</Name> 119 <Name>OpenSim.Framework.Console</Name>
109 <Project>{A7CD0630-0000-0000-0000-000000000000}</Project> 120 <Project>{A7CD0630-0000-0000-0000-000000000000}</Project>
110 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 121 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
111 <Private>False</Private> 122 <Private>False</Private>
112 </ProjectReference> 123 </ProjectReference>
113 <ProjectReference Include="..\..\Common\OpenSim.GenericConfig\Xml\OpenSim.GenericConfig.Xml.csproj"> 124 <ProjectReference Include="..\..\Common\OpenSim.GenericConfig\Xml\OpenSim.GenericConfig.Xml.csproj">
114 <Name>OpenSim.GenericConfig.Xml</Name> 125 <Name>OpenSim.GenericConfig.Xml</Name>
115 <Project>{E88EF749-0000-0000-0000-000000000000}</Project> 126 <Project>{E88EF749-0000-0000-0000-000000000000}</Project>
116 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 127 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
117 <Private>False</Private> 128 <Private>False</Private>
118 </ProjectReference> 129 </ProjectReference>
119 <ProjectReference Include="..\OpenSim.LocalCommunications\OpenSim.LocalCommunications.csproj"> 130 <ProjectReference Include="..\OpenSim.LocalCommunications\OpenSim.LocalCommunications.csproj">
120 <Name>OpenSim.LocalCommunications</Name> 131 <Name>OpenSim.LocalCommunications</Name>
121 <Project>{79CED992-0000-0000-0000-000000000000}</Project> 132 <Project>{79CED992-0000-0000-0000-000000000000}</Project>
122 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 133 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
123 <Private>False</Private> 134 <Private>False</Private>
124 </ProjectReference> 135 </ProjectReference>
125 <ProjectReference Include="..\OpenSim.Physics\Manager\OpenSim.Physics.Manager.csproj"> 136 <ProjectReference Include="..\OpenSim.Physics\Manager\OpenSim.Physics.Manager.csproj">
126 <Name>OpenSim.Physics.Manager</Name> 137 <Name>OpenSim.Physics.Manager</Name>
127 <Project>{8BE16150-0000-0000-0000-000000000000}</Project> 138 <Project>{8BE16150-0000-0000-0000-000000000000}</Project>
128 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 139 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
129 <Private>False</Private> 140 <Private>False</Private>
130 </ProjectReference> 141 </ProjectReference>
131 <ProjectReference Include="..\OpenSim.Region\OpenSim.Region.csproj"> 142 <ProjectReference Include="..\OpenSim.Region\OpenSim.Region.csproj">
132 <Name>OpenSim.Region</Name> 143 <Name>OpenSim.Region</Name>
133 <Project>{196916AF-0000-0000-0000-000000000000}</Project> 144 <Project>{196916AF-0000-0000-0000-000000000000}</Project>
134 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 145 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
135 <Private>False</Private> 146 <Private>False</Private>
136 </ProjectReference> 147 </ProjectReference>
137 <ProjectReference Include="..\OpenSim.RegionServer\OpenSim.RegionServer.csproj"> 148 <ProjectReference Include="..\OpenSim.RegionServer\OpenSim.RegionServer.csproj">
138 <Name>OpenSim.RegionServer</Name> 149 <Name>OpenSim.RegionServer</Name>
139 <Project>{632E1BFD-0000-0000-0000-000000000000}</Project> 150 <Project>{632E1BFD-0000-0000-0000-000000000000}</Project>
140 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 151 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
141 <Private>False</Private> 152 <Private>False</Private>
142 </ProjectReference> 153 </ProjectReference>
143 <ProjectReference Include="..\..\Common\OpenSim.Servers\OpenSim.Servers.csproj"> 154 <ProjectReference Include="..\..\Common\OpenSim.Servers\OpenSim.Servers.csproj">
144 <Name>OpenSim.Servers</Name> 155 <Name>OpenSim.Servers</Name>
145 <Project>{8BB20F0A-0000-0000-0000-000000000000}</Project> 156 <Project>{8BB20F0A-0000-0000-0000-000000000000}</Project>
146 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 157 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
147 <Private>False</Private> 158 <Private>False</Private>
148 </ProjectReference> 159 </ProjectReference>
149 <ProjectReference Include="..\OpenSim.Terrain.BasicTerrain\OpenSim.Terrain.BasicTerrain.csproj"> 160 <ProjectReference Include="..\OpenSim.Terrain.BasicTerrain\OpenSim.Terrain.BasicTerrain.csproj">
150 <Name>OpenSim.Terrain.BasicTerrain</Name> 161 <Name>OpenSim.Terrain.BasicTerrain</Name>
151 <Project>{2270B8FE-0000-0000-0000-000000000000}</Project> 162 <Project>{2270B8FE-0000-0000-0000-000000000000}</Project>
152 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 163 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
153 <Private>False</Private> 164 <Private>False</Private>
154 </ProjectReference> 165 </ProjectReference>
155 <ProjectReference Include="..\..\Common\XmlRpcCS\XMLRPC.csproj"> 166 <ProjectReference Include="..\..\Common\XmlRpcCS\XMLRPC.csproj">
156 <Name>XMLRPC</Name> 167 <Name>XMLRPC</Name>
157 <Project>{8E81D43C-0000-0000-0000-000000000000}</Project> 168 <Project>{8E81D43C-0000-0000-0000-000000000000}</Project>
158 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package> 169 <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
159 <Private>False</Private> 170 <Private>False</Private>
160 </ProjectReference> 171 </ProjectReference>
161 </ItemGroup> 172 </ItemGroup>
162 <ItemGroup> 173 <ItemGroup>
@@ -174,4 +185,4 @@
174 <PostBuildEvent> 185 <PostBuildEvent>
175 </PostBuildEvent> 186 </PostBuildEvent>
176 </PropertyGroup> 187 </PropertyGroup>
177</Project> 188</Project> \ No newline at end of file
diff --git a/OpenSim/OpenSim/OpenSimMain.cs b/OpenSim/OpenSim/OpenSimMain.cs
index e2dddaf..50da5a1 100644
--- a/OpenSim/OpenSim/OpenSimMain.cs
+++ b/OpenSim/OpenSim/OpenSimMain.cs
@@ -54,6 +54,7 @@ using OpenSim.Servers;
54using OpenSim.GenericConfig; 54using OpenSim.GenericConfig;
55using OpenGrid.Framework.Communications; 55using OpenGrid.Framework.Communications;
56using OpenSim.LocalCommunications; 56using OpenSim.LocalCommunications;
57using OpenGrid.Framework.Communications.OGS1;
57 58
58namespace OpenSim 59namespace OpenSim
59{ 60{
@@ -114,7 +115,7 @@ namespace OpenSim
114 else 115 else
115 { 116 {
116 this.SetupRemoteGridServers(); 117 this.SetupRemoteGridServers();
117 this.commsManager = new CommunicationsLocal(this.serversData.DefaultHomeLocX, this.serversData.DefaultHomeLocY); //shouldn't be using the local communications manager 118 this.commsManager = new GridCommsManager();
118 } 119 }
119 120
120 startuptime = DateTime.Now; 121 startuptime = DateTime.Now;
@@ -267,7 +268,7 @@ namespace OpenSim
267 268
268 protected override void SetupHttpListener() 269 protected override void SetupHttpListener()
269 { 270 {
270 httpServer = new BaseHttpServer(9000); //regionData[0].IPListenPort); 271 httpServer = new BaseHttpServer(this.serversData.HttpListenerPort); //regionData[0].IPListenPort);
271 272
272 if (!this.m_sandbox) 273 if (!this.m_sandbox)
273 { 274 {