Hello! GENESYS start learning. Plans to develop on .Net in VStudio. Download a sample and want to run it, there is an error
[code]error.common.AilFactoryNotInitialized[/code]
This part is going well
[code]
mContext["Url"] = "http://gnome:8080/gis";
mContext["notification.HTTPport"] = (int)0;
mContext["notification.createHTTPchannel"] = (bool)true;
mContext["notification.objectURI"] = "NotifLoad";
mContext[ServiceFactory.DEFAULT_SERVICE_FACTORY] = ServiceFactory.DEFAULT_SERVICE_FACTORY;
mContext["gis.username"] = "default";
mContext["gis.password"] = "password";
mServiceFactory = ServiceFactory.createServiceFactory(ServiceFactory.DEFAULT_SERVICE_FACTORY, mContext, new Listener(this));
mEventService = mServiceFactory.createService(typeof(IEventService), null) as IEventService;
mAgentService = mServiceFactory.createService(typeof(IAgentService), null) as IAgentService;
mPlaceService = mServiceFactory.createService(typeof(IPlaceService), null) as IPlaceService;
mSystemService = mServiceFactory.createService(typeof(ISystemService), null) as ISystemService;
ConnectionStatus connectionStatus = mServiceFactory.ConnectionInfo.status; (CONNECTED)[/code]
And here there is an error
[code]ServerDescriptionDTO[] dtos = mSystemService.getServersDescriptionDTO(new string[] { "system.server-info:type", "system.server-info:status" });[/code]
Read that the problem may be due to the license, but I check passes. Read that there are similar problems in GAD, but put it all starts up there. Tell me how to initialize, what's my fault?
[b]Thanks in advance for your help, and I apologize for my English.[/b]