diff options
author | Melanie Thielker | 2009-05-05 03:15:41 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-05-05 03:15:41 +0000 |
commit | 5e28a5982d7e1256ffc69b3dfaedf518cbe465d3 (patch) | |
tree | b7311e2abd2a5643cd2bcc52632905ff60d77d9f | |
parent | Add an interface skeleton for user services (diff) | |
download | opensim-SC_OLD-5e28a5982d7e1256ffc69b3dfaedf518cbe465d3.zip opensim-SC_OLD-5e28a5982d7e1256ffc69b3dfaedf518cbe465d3.tar.gz opensim-SC_OLD-5e28a5982d7e1256ffc69b3dfaedf518cbe465d3.tar.bz2 opensim-SC_OLD-5e28a5982d7e1256ffc69b3dfaedf518cbe465d3.tar.xz |
Committing the user server executable skeleton
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Servers/User/UserServerMain.cs | 44 | ||||
-rw-r--r-- | bin/OpenSim.Servers.UserServer.exe.config | 33 | ||||
-rw-r--r-- | bin/OpenSim.Servers.UserServer.ini.example | 2 | ||||
-rw-r--r-- | prebuild.xml | 27 |
4 files changed, 106 insertions, 0 deletions
diff --git a/OpenSim/Servers/User/UserServerMain.cs b/OpenSim/Servers/User/UserServerMain.cs new file mode 100644 index 0000000..d4f5e6d --- /dev/null +++ b/OpenSim/Servers/User/UserServerMain.cs | |||
@@ -0,0 +1,44 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using OpenSim.Servers.Base; | ||
30 | |||
31 | namespace OpenSim.Servers.Base | ||
32 | { | ||
33 | public class SimpleServer | ||
34 | { | ||
35 | protected static ServicesServerBase m_Server = null; | ||
36 | |||
37 | static int Main(string[] args) | ||
38 | { | ||
39 | m_Server = new HttpServerBase("User", args); | ||
40 | |||
41 | return m_Server.Run(); | ||
42 | } | ||
43 | } | ||
44 | } | ||
diff --git a/bin/OpenSim.Servers.UserServer.exe.config b/bin/OpenSim.Servers.UserServer.exe.config new file mode 100644 index 0000000..c2d93c0 --- /dev/null +++ b/bin/OpenSim.Servers.UserServer.exe.config | |||
@@ -0,0 +1,33 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <configuration> | ||
3 | <configSections> | ||
4 | <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /> | ||
5 | </configSections> | ||
6 | <runtime> | ||
7 | <gcConcurrent enabled="true" /> | ||
8 | <gcServer enabled="true" /> | ||
9 | </runtime> | ||
10 | <appSettings> | ||
11 | </appSettings> | ||
12 | <log4net> | ||
13 | <appender name="Console" type="OpenSim.Framework.Console.OpenSimAppender, OpenSim.Framework.Console"> | ||
14 | <layout type="log4net.Layout.PatternLayout"> | ||
15 | <conversionPattern value="%date{HH:mm:ss} - %message%newline" /> | ||
16 | </layout> | ||
17 | </appender> | ||
18 | |||
19 | <appender name="LogFileAppender" type="log4net.Appender.FileAppender"> | ||
20 | <file value="OpenSim.log" /> | ||
21 | <appendToFile value="true" /> | ||
22 | <layout type="log4net.Layout.PatternLayout"> | ||
23 | <conversionPattern value="%date %-5level - %logger %message%newline" /> | ||
24 | </layout> | ||
25 | </appender> | ||
26 | |||
27 | <root> | ||
28 | <level value="DEBUG" /> | ||
29 | <appender-ref ref="Console" /> | ||
30 | <appender-ref ref="LogFileAppender" /> | ||
31 | </root> | ||
32 | </log4net> | ||
33 | </configuration> | ||
diff --git a/bin/OpenSim.Servers.UserServer.ini.example b/bin/OpenSim.Servers.UserServer.ini.example new file mode 100644 index 0000000..2a80f27 --- /dev/null +++ b/bin/OpenSim.Servers.UserServer.ini.example | |||
@@ -0,0 +1,2 @@ | |||
1 | [Network] | ||
2 | port = 8002 | ||
diff --git a/prebuild.xml b/prebuild.xml index e5e2a61..84fc576 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -2885,6 +2885,33 @@ | |||
2885 | </Files> | 2885 | </Files> |
2886 | </Project> | 2886 | </Project> |
2887 | 2887 | ||
2888 | <Project name="OpenSim.Servers.UserServer" path="OpenSim/Servers/User" type="Exe"> | ||
2889 | <Configuration name="Debug"> | ||
2890 | <Options> | ||
2891 | <OutputPath>../../../bin/</OutputPath> | ||
2892 | </Options> | ||
2893 | </Configuration> | ||
2894 | <Configuration name="Release"> | ||
2895 | <Options> | ||
2896 | <OutputPath>../../../bin/</OutputPath> | ||
2897 | </Options> | ||
2898 | </Configuration> | ||
2899 | |||
2900 | <ReferencePath>../../../bin/</ReferencePath> | ||
2901 | <Reference name="System"/> | ||
2902 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2903 | <Reference name="OpenMetaverse.dll"/> | ||
2904 | <Reference name="OpenSim.Framework"/> | ||
2905 | <Reference name="OpenSim.Framework.Console"/> | ||
2906 | <Reference name="OpenSim.Servers.Base"/> | ||
2907 | <Reference name="Nini.dll" /> | ||
2908 | <Reference name="log4net.dll"/> | ||
2909 | |||
2910 | <Files> | ||
2911 | <Match pattern="*.cs" recurse="true"/> | ||
2912 | </Files> | ||
2913 | </Project> | ||
2914 | |||
2888 | <!-- Tools --> | 2915 | <!-- Tools --> |
2889 | 2916 | ||
2890 | <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe"> | 2917 | <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe"> |