<div dir="ltr"><div><div><div>adding :<br>;[AssetService]<br>;LocalServiceModule = "OpenSim.Services.AssetService.dll:AssetService"<br>;DefaultAssetLoader = "OpenSim.Framework.AssetLoader.Filesystem.dll"<br>
;AssetLoaderArgs = "./assets/AssetSets.xml"<br><br></div>to the grid.ini file solved the problem without the need to update the code (using 0.7.5-rc1).<br><br></div>but i have removed these lines and updated the code to try to get the error to show it to you.<br>
</div>here is the stack trace :<br><br>Error loading plugin OpenSim.Services.Interfaces.IAssetService from OpenSim.Services.AssetService.dll. Exception: Object reference not set to an in<br>stance of an object, at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] p<br>
arameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0 <br> at System.Reflection.MonoCMethod.Invoke (BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureI<br>
nfo culture) [0x00000] in <filename unknown>:0 <br> at System.Activator.CreateInstance (System.Type type, BindingFlags bindingAttr, System.Reflection.Binder binder, System.Object[] args, System.Globalization.<br>CultureInfo culture, System.Object[] activationAttributes) [0x00000] in <filename unknown>:0 <br>
at System.Activator.CreateInstance (System.Type type, System.Object[] args, System.Object[] activationAttributes) [0x00000] in <filename unknown>:0 <br> at System.Activator.CreateInstance (System.Type type, System.Object[] args) [0x00000] in <filename unknown>:0 <br>
at OpenSim.Server.Base.ServerUtils.LoadPlugin[IAssetService] (System.String dllName, System.String className, System.Object[] args) [0x00000] in <filename u<br>nknown>:0<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">
2013/1/15 Justin Clark-Casey <span dir="ltr"><<a href="mailto:jjustincc@googlemail.com" target="_blank">jjustincc@googlemail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
In git master 1c240cd I made the config print out the full stack trace on failure, which should help with debugging rather than just the unhelpful "Object reference not set" message. It would also help if you could run this in --debug mode if on mono to get line numbers.<br>
<br>
However, from a quick glance at grid.ini, I would guess it's because you don't have an [AssetService] section there, which<br>
<br>
[GridService]<br>
...<br>
AssetService = "OpenSim.Services.<u></u>AssetService.dll:AssetService"<br>
<br>
is referring to.<br>
<br>
With the [AssetService] section, this would contact the asset database directly with it's own asset service, rather than going through the other robust instance that is hosting AssetService. I don't think this is really a problem and would be the easiest message. The alternative would be to try and get the grid ROBUST instance to contact the asset ROBUST instance but I'm not sure how to configure this or whether it's really possible at this point.<br>
<br>
I guess this isn't<br>
<br>
AssetService = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>HGAssetService"<br>
<br>
instead because the grid service only needs to access local assets for map tiles, though you could try this anyway and maybe it will reuse [HGAssetService] (no idea if this will work).<br>
<br>
Also, a small tip is that if you want to see the config the server is definitely using, on OpenSimulator 0.7.5 you can type "config show" from the robust instance (assuming it will start up).<br>
<br>
Unfortunately, with both splitting ROBUST services and using HG you're into advanced config territory for which unfortunately little documentation currently exists.<br>
<br>
If you've broken this into three separate config files<div class="im"><br>
On 14/01/13 22:20, ssm2017 wrote:<br>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
following the radams1 recommendations in irc, i have made this :<br>
<br>
in the file : OpenSim/Services/AssetService/<u></u>AssetServiceBase.cs<br>
line 51 was changed from<br>
if (configName != string.Empty)<br>
to<br>
if (!String.IsNullOrEmpty(<u></u>configName))<br>
<br>
in the file : OpenSim/Server/Base/<u></u>ServerUtils.cs<br>
line 284 was changed from<br>
interfaceName, dllName, e.InnerException == null ? e.Message : e.InnerException.Message);<br>
to<br>
interfaceName, dllName, e.InnerException == null ? e.ToString() : e.InnerException.Message);<br>
<br>
and there is not any other error displayed in the console or the log file.<br>
the result is the same.<br>
<br>
<br></div>
2013/1/14 Adams, Robert <<a href="mailto:robert.adams@intel.com" target="_blank">robert.adams@intel.com</a> <mailto:<a href="mailto:robert.adams@intel.com" target="_blank">robert.adams@intel.com</a><u></u>>><div class="im">
<br>
<br>
The stack trace does not come out on the console. The console only displays the error while the error and<br></div>
(hopefully) the stack trace is output into the “OpenSim.log” logfile.____<br>
<br>
__ __<br>
<br>
-- ra____<br>
<br>
__ __<br>
<br>
*From:*<a href="mailto:opensim-dev-bounces@lists.berlios.de" target="_blank">opensim-dev-bounces@<u></u>lists.berlios.de</a> <mailto:<a href="mailto:opensim-dev-bounces@lists.berlios.de" target="_blank">opensim-dev-bounces@<u></u>lists.berlios.de</a>><br>
[mailto:<a href="mailto:opensim-dev-bounces@lists.berlios.de" target="_blank">opensim-dev-bounces@<u></u>lists.berlios.de</a> <mailto:<a href="mailto:opensim-dev-bounces@lists.berlios.de" target="_blank">opensim-dev-bounces@<u></u>lists.berlios.de</a>>] *On Behalf Of *ssm2017<br>
*Sent:* Monday, January 14, 2013 10:15 AM<br>
*To:* <a href="mailto:opensim-dev@lists.berlios.de" target="_blank">opensim-dev@lists.berlios.de</a> <mailto:<a href="mailto:opensim-dev@lists.berlios.de" target="_blank">opensim-dev@lists.<u></u>berlios.de</a>><br>
*Subject:* Re: [Opensim-dev] multiple robust instances____<br>
<br>
__ __<div class="im"><br>
<br>
here is a screenshot of the console at the time the error occurs (screenshot to get colors)<br></div>
<a href="http://i.imagebanana.com/img/n3wemq2h/Slection_002.png____" target="_blank">http://i.imagebanana.com/img/<u></u>n3wemq2h/Slection_002.png____</a><br>
<br>
and here are my ini files :____<div class="im"><br>
<br>
inventory.ini :<br>
******************************<u></u>*****************************<br>
[Startup]<br>
<br>
[ServiceList]<br>
InventoryInConnector = "8003/OpenSim.Server.Handlers.<u></u>dll:XInventoryInConnector"<br>
<br>
[Network]<br>
port = 8003<br>
<br>
[DatabaseService]<br>
StorageProvider = "OpenSim.Data.MySQL.dll"<br>
ConnectionString = "Data Source=localhost;Database=****<u></u>;User ID=opensim;Password=***;Old Guids=true;"<br>
<br>
[InventoryService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>InventoryService.dll:<u></u>XInventoryService"<br></div>
******************************<u></u>*****************************_<u></u>___<div class="im"><br>
<br>
asset.ini :<br>
******************************<u></u>*****************************<br>
[Startup]<br>
<br>
[ServiceList]<br>
AssetServiceConnector = "8004/OpenSim.Server.Handlers.<u></u>dll:AssetServiceConnector"<br>
<br>
[Network]<br>
port = 8004<br>
<br>
[DatabaseService]<br>
StorageProvider = "OpenSim.Data.MySQL.dll"<br>
ConnectionString = "Data Source=localhost;Database=****<u></u>;User ID=opensim;Password=****;Old Guids=true;"<br>
<br>
[AssetService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>AssetService.dll:AssetService"<br>
DefaultAssetLoader = "OpenSim.Framework.<u></u>AssetLoader.Filesystem.dll"<br>
AssetLoaderArgs = "./assets/AssetSets.xml"<br></div>
******************************<u></u>*****************************_<u></u>___<div class="im"><br>
<br>
grid.ini :<br>
******************************<u></u>*****************************<br>
[Startup]<br>
<br>
[ServiceList]<br>
VoiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:FreeswitchServerConnector"<br>
GridServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:GridServiceConnector"<br>
GridInfoServerInConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:GridInfoServerInConnector"<br>
AuthenticationServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:<u></u>AuthenticationServiceConnector<u></u>"<br>
OpenIdServerConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:OpenIdServerConnector"<br>
AvatarServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:AvatarServiceConnector"<br>
LLLoginServiceInConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:LLLoginServiceInConnector"<br>
PresenceServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:PresenceServiceConnector"<br>
UserAccountServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:<u></u>UserAccountServiceConnector"<br>
GridUserServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:GridUserServiceConnector"<br>
FriendsServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:FriendsServiceConnector"<br>
MapAddServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:MapAddServiceConnector"<br>
MapGetServiceConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:MapGetServiceConnector"<br>
<br>
; hg<br>
GatekeeperServiceInConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:<u></u>GatekeeperServiceInConnector"<br>
UserAgentServerConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:UserAgentServerConnector"<br>
HeloServiceInConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:HeloServiceInConnector"<br>
HGFriendsServerConnector = "8002/OpenSim.Server.Handlers.<u></u>dll:HGFriendsServerConnector"<br></div>
InstantMessageServerConnector = "8002/OpenSim.Serverm_log.<u></u>Handlers.dll:<u></u>InstantMessageServerConnector"<br>
HGInventoryServiceConnector = "HGInventoryService@8002/<u></u>OpenSim.Server.Handlers.dll:<u></u>XInventoryInConnector<br>
<mailto:<a href="mailto:HGInventoryService@8002" target="_blank">HGInventoryService@<u></u>8002</a>/OpenSim.Server.Handlers.<u></u>dll:XInventoryInConnector>"<br>
HGAssetServiceConnector = "HGAssetService@8002/OpenSim.<u></u>Server.Handlers.dll:<u></u>AssetServiceConnector<br>
<mailto:<a href="mailto:HGAssetService@8002" target="_blank">HGAssetService@8002</a>/<u></u>OpenSim.Server.Handlers.dll:<u></u>AssetServiceConnector>"<div><div class="h5"><br>
<br>
[Network]<br>
port = 8002<br>
<br>
[DatabaseService]<br>
StorageProvider = "OpenSim.Data.MySQL.dll"<br>
ConnectionString = "Data Source=localhost;Database=****<u></u>;User ID=opensim;Password=****;Old Guids=true;"<br>
<br>
[GridService]<br>
LocalServiceModule = "OpenSim.Services.GridService.<u></u>dll:GridService"<br>
HypergridLinker = true<br>
AssetService = "OpenSim.Services.<u></u>AssetService.dll:AssetService"<br>
Region_Beta = "DefaultRegion, FallbackRegion"<br>
HypergridLinker = true<br>
Gatekeeper = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
<br>
[FreeswitchService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>FreeswitchService.dll:<u></u>FreeswitchService"<br>
<br>
[AuthenticationService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>AuthenticationService.dll:<u></u>PasswordAuthenticationService"<br>
<br>
[OpenIdService]<br>
AuthenticationServiceModule = "OpenSim.Services.<u></u>AuthenticationService.dll:<u></u>PasswordAuthenticationService"<br>
UserAccountServiceModule = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>UserAccountService"<br>
<br>
[UserAccountService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>UserAccountService"<br>
AuthenticationService = "OpenSim.Services.<u></u>AuthenticationService.dll:<u></u>PasswordAuthenticationService"<br>
PresenceService = "OpenSim.Services.<u></u>PresenceService.dll:<u></u>PresenceService"<br>
GridService = "OpenSim.Services.GridService.<u></u>dll:GridService"<br>
InventoryService = "OpenSim.Services.<u></u>InventoryService.dll:<u></u>XInventoryService"<br>
AvatarService = "OpenSim.Services.<u></u>AvatarService.dll:<u></u>AvatarService"<br>
CreateDefaultAvatarEntries = true<br>
<br>
[GridUserService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>GridUserService"<br>
<br>
[PresenceService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>PresenceService.dll:<u></u>PresenceService"<br>
<br>
[AvatarService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>AvatarService.dll:<u></u>AvatarService"<br>
<br>
[FriendsService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>FriendsService.dll:<u></u>FriendsService"<br>
<br>
[LibraryService]<br>
LibraryName = "OpenSim Library"<br>
DefaultLibrary = "./inventory/Libraries.xml"<br>
<br>
[LoginService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>LLLoginService.dll:<u></u>LLLoginService"<br>
UserAccountService = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>UserAccountService"<br>
GridUserService = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>GridUserService"<br>
AuthenticationService = "OpenSim.Services.<u></u>AuthenticationService.dll:<u></u>PasswordAuthenticationService"<br>
InventoryService = "OpenSim.Services.<u></u>InventoryService.dll:<u></u>XInventoryService"<br>
AvatarService = "OpenSim.Services.<u></u>AvatarService.dll:<u></u>AvatarService"<br>
PresenceService = "OpenSim.Services.<u></u>PresenceService.dll:<u></u>PresenceService"<br>
GridService = "OpenSim.Services.GridService.<u></u>dll:GridService"<br>
SimulationService ="OpenSim.Services.Connectors.<u></u>dll:<u></u>SimulationServiceConnector"<br>
LibraryService = "OpenSim.Services.<u></u>InventoryService.dll:<u></u>LibraryService"<br>
UserAgentService = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>UserAgentService"<br>
FriendsService = "OpenSim.Services.<u></u>FriendsService.dll:<u></u>FriendsService"<br>
<br>
WelcomeMessage = "Welcome, Avatar!"<br>
AllowRemoteSetLoginLevel = "false"<br>
<br>
MapTileURL = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>";<br>
GatekeeperURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
<br>
SRV_HomeURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
SRV_InventoryServerURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
SRV_AssetServerURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
SRV_ProfileServerURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
SRV_FriendsServerURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
SRV_IMServerURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
<br>
DSTZone = "America/Los_Angeles;Pacific Standard Time"<br>
<br>
[MapImageService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>MapImageService.dll:<u></u>MapImageService"<br>
<br>
[GridInfoService]<br>
login = <a href="http://login.beta.francogrid.org:8002/" target="_blank">http://login.beta.francogrid.<u></u>org:8002/</a><br>
gridname = "FrancoGrid Beta"<br>
gridnick = "fgbeta"<br>
welcome = <a href="http://beta.francogrid.org/loginpage" target="_blank">http://beta.francogrid.org/<u></u>loginpage</a><br>
about = <a href="http://beta.francogrid.org" target="_blank">http://beta.francogrid.org</a><br>
register = <a href="http://beta.francogrid.org/user/register" target="_blank">http://beta.francogrid.org/<u></u>user/register</a><br>
help = <a href="http://beta.francogrid.org/aide" target="_blank">http://beta.francogrid.org/<u></u>aide</a><br>
password = <a href="http://beta.francogrid.org/user/password" target="_blank">http://beta.francogrid.org/<u></u>user/password</a><br>
gatekeeper = <a href="http://hg.beta.francogrid.org:8002/" target="_blank">http://hg.beta.francogrid.org:<u></u>8002/</a><br>
uas = <a href="http://hg.beta.francogrid.org:8002/" target="_blank">http://hg.beta.francogrid.org:<u></u>8002/</a><br>
<br>
[GatekeeperService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>GatekeeperService"<br>
UserAccountService = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>UserAccountService"<br>
UserAgentService = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>UserAgentService"<br>
PresenceService = "OpenSim.Services.<u></u>PresenceService.dll:<u></u>PresenceService"<br>
GridService = "OpenSim.Services.GridService.<u></u>dll:GridService"<br>
AuthenticationService = "OpenSim.Services.Connectors.<u></u>dll:<u></u>AuthenticationServicesConnecto<u></u>r"<br>
SimulationService ="OpenSim.Services.Connectors.<u></u>dll:<u></u>SimulationServiceConnector"<br>
ExternalName = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
AllowTeleportsToAnyRegion = true<br>
<br>
[UserAgentService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>UserAgentService"<br>
GridUserService = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>GridUserService"<br>
GridService = "OpenSim.Services.GridService.<u></u>dll:GridService"<br>
GatekeeperService = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>GatekeeperService"<br>
PresenceService = "OpenSim.Services.<u></u>PresenceService.dll:<u></u>PresenceService"<br>
FriendsService = "OpenSim.Services.<u></u>FriendsService.dll:<u></u>FriendsService"<br>
UserAccountService = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>UserAccountService"<br>
<br>
[HGInventoryService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>HGSuitcaseInventoryService"<br>
<br>
UserAccountsService = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>UserAccountService"<br>
AvatarService = "OpenSim.Services.<u></u>AvatarService.dll:<u></u>AvatarService"<br>
HomeURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
<br>
[HGAssetService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>HGAssetService"<br>
UserAccountsService = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>UserAccountService"<br>
HomeURI = "<a href="http://hg.beta.francogrid.org:8002" target="_blank">http://hg.beta.francogrid.<u></u>org:8002</a>"<br>
<br>
[HGFriendsService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>HGFriendsService"<br>
UserAgentService = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>UserAgentService"<br>
FriendsService = "OpenSim.Services.<u></u>FriendsService.dll:<u></u>FriendsService"<br>
UserAccountService = "OpenSim.Services.<u></u>UserAccountService.dll:<u></u>UserAccountService"<br>
GridService = "OpenSim.Services.GridService.<u></u>dll:GridService"<br>
PresenceService = "OpenSim.Services.<u></u>PresenceService.dll:<u></u>PresenceService"<br>
<br>
[HGInstantMessageService]<br>
LocalServiceModule = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>HGInstantMessageService"<br>
GridService = "OpenSim.Services.GridService.<u></u>dll:GridService"<br>
PresenceService = "OpenSim.Services.<u></u>PresenceService.dll:<u></u>PresenceService"<br>
UserAgentService = "OpenSim.Services.<u></u>HypergridService.dll:<u></u>UserAgentService"<br>
InGatekeeper = True<br>
<br>
[Messaging]<br>
OfflineMessageURL = <a href="http://beta.francogrid.org/grid/services/offline-messages" target="_blank">http://beta.francogrid.org/<u></u>grid/services/offline-messages</a><br>
ForwardOfflineGroupMessages = true<br>
<br></div></div>
******************************<u></u>*****************************_<u></u>___<br>
<br>
__ __<br>
<br>
2013/1/14 ssm2017 <<a href="mailto:ssm2017@gmail.com" target="_blank">ssm2017@gmail.com</a> <mailto:<a href="mailto:ssm2017@gmail.com" target="_blank">ssm2017@gmail.com</a>>>___<u></u>_<br>
<br>
there is no stack trace and all the rest of the console output is clean and the grid is working :)____<div class="im"><br>
<br>
i only have one red line that is this one but maybe i have made a mistake in the robust configuration with my<br></div>
myltiple instances____<br>
<br>
__ __<br>
<br>
2013/1/14 Adams, Robert <<a href="mailto:robert.adams@intel.com" target="_blank">robert.adams@intel.com</a> <mailto:<a href="mailto:robert.adams@intel.com" target="_blank">robert.adams@intel.com</a><u></u>>>____<div class="im">
<br>
<br>
If you are lucky, there is a stack trace after that error in the OpenSim.log file. Creating a Mantis entry with that<br></div>
stack trace would help pinpointing the error.____<br>
<br>
____<br>
<br>
-- ra____<br>
<br>
____<br>
<br>
*From:*<a href="mailto:opensim-dev-bounces@lists.berlios.de" target="_blank">opensim-dev-bounces@<u></u>lists.berlios.de</a> <mailto:<a href="mailto:opensim-dev-bounces@lists.berlios.de" target="_blank">opensim-dev-bounces@<u></u>lists.berlios.de</a>><br>
[mailto:<a href="mailto:opensim-dev-bounces@lists.berlios.de" target="_blank">opensim-dev-bounces@<u></u>lists.berlios.de</a> <mailto:<a href="mailto:opensim-dev-bounces@lists.berlios.de" target="_blank">opensim-dev-bounces@<u></u>lists.berlios.de</a>>] *On Behalf Of *ssm2017<br>
*Sent:* Sunday, January 13, 2013 3:48 PM<br>
*To:* <a href="mailto:opensim-dev@lists.berlios.de" target="_blank">opensim-dev@lists.berlios.de</a> <mailto:<a href="mailto:opensim-dev@lists.berlios.de" target="_blank">opensim-dev@lists.<u></u>berlios.de</a>><br>
*Subject:* [Opensim-dev] multiple robust instances____<br>
<br>
____<br>
<br>
hello____<br>
<br>
using 0.7.5-rc1 under a debian 6 with mono 2.10.8.1____<br>
<br>
i have separated robut on 3 parts : grid/assets/inventory____<br>
<br>
following this procedure :<br>
<a href="http://opensimulator.org/wiki/Configuration#Running_multiple_ROBUST_service_instances____" target="_blank">http://opensimulator.org/wiki/<u></u>Configuration#Running_<u></u>multiple_ROBUST_service_<u></u>instances____</a><div class="im">
<br>
<br>
everything looks working but i see a non blocking error when i start the grid robust instance :<br>
Error loading plugin OpenSim.Services.Interfaces.<u></u>IAssetService from OpenSim.Services.AssetService.<u></u>dll. Exception:<br>
Object reference not set to an in<br></div>
stance of an object____<br>
<br>
any idea about what it could be ?____<div class="im"><br>
<br>
if there are any errors on the wiki page, is it possible please to update it ?____<br>
<br>
__ __<br>
<br>
______________________________<u></u>_________________<br>
Opensim-dev mailing list<br></div>
<a href="mailto:Opensim-dev@lists.berlios.de" target="_blank">Opensim-dev@lists.berlios.de</a> <mailto:<a href="mailto:Opensim-dev@lists.berlios.de" target="_blank">Opensim-dev@lists.<u></u>berlios.de</a>><br>
<a href="https://lists.berlios.de/mailman/listinfo/opensim-dev____" target="_blank">https://lists.berlios.de/<u></u>mailman/listinfo/opensim-dev__<u></u>__</a><br>
<br>
__ __<br>
<br>
__ __<br>
<br>
<br>
______________________________<u></u>_________________<br>
Opensim-dev mailing list<br>
<a href="mailto:Opensim-dev@lists.berlios.de" target="_blank">Opensim-dev@lists.berlios.de</a> <mailto:<a href="mailto:Opensim-dev@lists.berlios.de" target="_blank">Opensim-dev@lists.<u></u>berlios.de</a>><div class="im">
<br>
<a href="https://lists.berlios.de/mailman/listinfo/opensim-dev" target="_blank">https://lists.berlios.de/<u></u>mailman/listinfo/opensim-dev</a><br>
<br>
<br>
<br>
<br>
______________________________<u></u>_________________<br>
Opensim-dev mailing list<br>
<a href="mailto:Opensim-dev@lists.berlios.de" target="_blank">Opensim-dev@lists.berlios.de</a><br>
<a href="https://lists.berlios.de/mailman/listinfo/opensim-dev" target="_blank">https://lists.berlios.de/<u></u>mailman/listinfo/opensim-dev</a><br>
<br>
</div></blockquote><span class="HOEnZb"><font color="#888888">
<br>
<br>
-- <br>
Justin Clark-Casey (justincc)<br>
OSVW Consulting<br>
<a href="http://justincc.org" target="_blank">http://justincc.org</a><br>
<a href="http://twitter.com/justincc" target="_blank">http://twitter.com/justincc</a></font></span><div class="HOEnZb"><div class="h5"><br>
______________________________<u></u>_________________<br>
Opensim-dev mailing list<br>
<a href="mailto:Opensim-dev@lists.berlios.de" target="_blank">Opensim-dev@lists.berlios.de</a><br>
<a href="https://lists.berlios.de/mailman/listinfo/opensim-dev" target="_blank">https://lists.berlios.de/<u></u>mailman/listinfo/opensim-dev</a><br>
</div></div></blockquote></div><br></div>