use of org.omg.PortableServer.POAPackage.ObjectAlreadyActive in project alliance by codice.
the class SubmitStandingQueryRequestImpl method get_request_manager.
@Override
public RequestManager get_request_manager() throws ProcessingFault, SystemFault {
if (requestManager == null) {
String requestManagerId = UUID.randomUUID().toString();
RequestManagerImpl requestManagerImpl = new RequestManagerImpl();
try {
_poa().activate_object_with_id(requestManagerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), requestManagerImpl);
} catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
LOGGER.debug("Error activating RequestManager: ", e);
}
org.omg.CORBA.Object obj = _poa().create_reference_with_id(requestManagerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), RequestManagerHelper.id());
requestManager = RequestManagerHelper.narrow(obj);
}
return requestManager;
}
use of org.omg.PortableServer.POAPackage.ObjectAlreadyActive in project alliance by codice.
the class OrderMgrImplTest method setUp.
@Before
public void setUp() throws Exception {
setupCommonMocks();
setupOrderMgrMocks();
try {
setupOrb();
orbRunThread = new Thread(() -> orb.run());
orbRunThread.start();
} catch (InvalidName | AdapterInactive | WrongPolicy | ServantNotActive e) {
LOGGER.error("Unable to start the CORBA server", e);
} catch (IOException e) {
LOGGER.error("Unable to generate the IOR file", e);
} catch (SecurityServiceException e) {
LOGGER.error("Unable to setup guest security credentials", e);
}
String managerId = UUID.randomUUID().toString();
orderMgr = new OrderMgrImpl();
orderMgr.setFilterBuilder(new GeotoolsFilterBuilder());
orderMgr.setCatalogFramework(mockCatalogFramework);
if (!CorbaUtils.isIdActive(rootPOA, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
rootPOA.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), orderMgr);
} catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
LOGGER.error("Error activating ProductMgr: {}", e);
}
}
rootPOA.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), ProductMgrHelper.id());
}
use of org.omg.PortableServer.POAPackage.ObjectAlreadyActive in project alliance by codice.
the class ProductMgrImplTest method setUp.
@Before
public void setUp() throws Exception {
setupCommonMocks();
setupProductMgrMocks();
try {
setupOrb();
orbRunThread = new Thread(() -> orb.run());
orbRunThread.start();
} catch (InvalidName | AdapterInactive | WrongPolicy | ServantNotActive e) {
LOGGER.error("Unable to start the CORBA server", e);
} catch (IOException e) {
LOGGER.error("Unable to generate the IOR file", e);
} catch (SecurityServiceException e) {
LOGGER.error("Unable to setup guest security credentials", e);
}
String managerId = UUID.randomUUID().toString();
productMgr = new ProductMgrImpl(null);
productMgr.setFilterBuilder(new GeotoolsFilterBuilder());
productMgr.setCatalogFramework(mockCatalogFramework);
productMgr.setOutgoingValidationEnabled(false);
if (!CorbaUtils.isIdActive(rootPOA, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
rootPOA.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), productMgr);
} catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
LOGGER.error("Error activating ProductMgr: {}", e);
}
}
rootPOA.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), ProductMgrHelper.id());
}
use of org.omg.PortableServer.POAPackage.ObjectAlreadyActive in project alliance by codice.
the class StandingQueryMgrImplTest method setUp.
@Before
public void setUp() throws Exception {
setupCommonMocks();
setupStandingQueryMgrMocks();
try {
setupOrb();
orbRunThread = new Thread(() -> orb.run());
orbRunThread.start();
} catch (InvalidName | AdapterInactive | WrongPolicy | ServantNotActive e) {
LOGGER.error("Unable to start the CORBA server", e);
} catch (IOException e) {
LOGGER.error("Unable to generate the IOR file", e);
} catch (SecurityServiceException e) {
LOGGER.error("Unable to setup guest security credentials", e);
}
String managerId = UUID.randomUUID().toString();
standingQueryMgr = new StandingQueryMgrImpl(null);
standingQueryMgr.setFilterBuilder(new GeotoolsFilterBuilder());
standingQueryMgr.setCatalogFramework(mockCatalogFramework);
standingQueryMgr.setDefaultUpdateFrequencyMsec(60000);
standingQueryMgr.setMaxWaitToStartTimeMsecs(TimeUnit.MINUTES.toMillis(5));
standingQueryMgr.setMaxPendingResults(10000);
if (!CorbaUtils.isIdActive(rootPOA, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
rootPOA.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), standingQueryMgr);
} catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
LOGGER.error("Error activating StandingQueryMgr: {}", e);
}
}
rootPOA.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), StandingQueryMgrHelper.id());
}
use of org.omg.PortableServer.POAPackage.ObjectAlreadyActive in project alliance by codice.
the class LibraryImpl method getCatalogMgrObject.
private Object getCatalogMgrObject(String managerId) {
Object obj;
CatalogMgrImpl catalogMgr = new CatalogMgrImpl(poa, filterBuilder, querySources);
catalogMgr.setCatalogFramework(catalogFramework);
catalogMgr.setOutgoingValidationEnabled(outgoingValidationEnabled);
catalogMgr.setRemoveSourceLibrary(removeSourceLibrary);
if (!CorbaUtils.isIdActive(poa, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
poa.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), catalogMgr);
} catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
LOGGER.info("Error activating CatalogMgr: ", e);
}
}
obj = poa.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), CatalogMgrHelper.id());
return obj;
}
Aggregations