diff options
author | Diva Canto | 2010-01-02 20:16:21 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-02 20:16:21 -0800 |
commit | 8bed461957c38fb90a65a148d3f3791e9e0222f8 (patch) | |
tree | 02fff66df5f96b292e9ebc8d606b53cfae478c90 /OpenSim/Tests/Clients/UserAccounts/OpenSim.Server.ini | |
parent | Flattening the ServiceURLs (diff) | |
download | opensim-SC_OLD-8bed461957c38fb90a65a148d3f3791e9e0222f8.zip opensim-SC_OLD-8bed461957c38fb90a65a148d3f3791e9e0222f8.tar.gz opensim-SC_OLD-8bed461957c38fb90a65a148d3f3791e9e0222f8.tar.bz2 opensim-SC_OLD-8bed461957c38fb90a65a148d3f3791e9e0222f8.tar.xz |
Test client for remote user account connector and service. It seems to be working.
Diffstat (limited to 'OpenSim/Tests/Clients/UserAccounts/OpenSim.Server.ini')
-rw-r--r-- | OpenSim/Tests/Clients/UserAccounts/OpenSim.Server.ini | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/OpenSim/Tests/Clients/UserAccounts/OpenSim.Server.ini b/OpenSim/Tests/Clients/UserAccounts/OpenSim.Server.ini new file mode 100644 index 0000000..eb1f473 --- /dev/null +++ b/OpenSim/Tests/Clients/UserAccounts/OpenSim.Server.ini | |||
@@ -0,0 +1,33 @@ | |||
1 | ; * Run a ROBUST server shell like this, from bin: | ||
2 | ; * $ OpenSim.Server.exe -inifile ../OpenSim/Tests/Clients/Presence/OpenSim.Server.ini | ||
3 | ; * | ||
4 | ; * Then run this client like this, from bin: | ||
5 | ; * $ OpenSim.Tests.Clients.UserAccountClient.exe | ||
6 | ; * | ||
7 | ; * | ||
8 | |||
9 | [Startup] | ||
10 | ServiceConnectors = "OpenSim.Server.Handlers.dll:UserAccountServiceConnector" | ||
11 | |||
12 | ; * This is common for all services, it's the network setup for the entire | ||
13 | ; * server instance | ||
14 | ; * | ||
15 | [Network] | ||
16 | port = 8003 | ||
17 | |||
18 | ; * The following are for the remote console | ||
19 | ; * They have no effect for the local or basic console types | ||
20 | ; * Leave commented to diable logins to the console | ||
21 | ;ConsoleUser = Test | ||
22 | ;ConsolePass = secret | ||
23 | |||
24 | ; * As an example, the below configuration precisely mimicks the legacy | ||
25 | ; * asset server. It is read by the asset IN connector (defined above) | ||
26 | ; * and it then loads the OUT connector (a local database module). That, | ||
27 | ; * in turn, reads the asset loader and database connection information | ||
28 | ; * | ||
29 | [UserAccountService] | ||
30 | LocalServiceModule = "OpenSim.Services.UserAccountService.dll:UserAccountService" | ||
31 | StorageProvider = "OpenSim.Data.MySQL.dll" | ||
32 | ConnectionString = "Data Source=localhost;Database=opensim;User ID=opensim;Password=opensim123;" | ||
33 | |||