use of org.omg.PortableServer.POAPackage.WrongPolicy in project alliance by codice.
the class MockNsili method startMockServer.
public void startMockServer(int corbaPort) {
ORB orb = null;
try {
orb = getOrbForServer(corbaPort);
LOGGER.info("Server Started...");
// blocks the current thread until the ORB is shutdown
orb.run();
} 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);
}
if (orb != null) {
orb.destroy();
}
}
use of org.omg.PortableServer.POAPackage.WrongPolicy in project alliance by codice.
the class AccessManagerImplTest method setUp.
@Before
public void setUp() throws Exception {
setupCommonMocks();
setupAccessMgrMocks();
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);
}
testQuery = new Query(NsiliConstants.NSIL_ALL_VIEW, bqsQuery);
String managerId = UUID.randomUUID().toString();
accessManager = new AccessManagerImpl();
accessManager.setFilterBuilder(new GeotoolsFilterBuilder());
accessManager.setCatalogFramework(mockCatalogFramework);
if (!CorbaUtils.isIdActive(rootPOA, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
rootPOA.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), accessManager);
} 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.WrongPolicy in project alliance by codice.
the class CatalogMgrImplTest method setUp.
@Before
public void setUp() throws Exception {
setupCommonMocks();
setupCatalogMgrMocks();
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);
}
testQuery = new Query(NsiliConstants.NSIL_ALL_VIEW, bqsQuery);
catalogMgr = new CatalogMgrImpl(rootPOA, new GeotoolsFilterBuilder(), null);
catalogMgr.setCatalogFramework(mockCatalogFramework);
}
use of org.omg.PortableServer.POAPackage.WrongPolicy in project alliance by codice.
the class CreationMgrImplTest method setUp.
@Before
public void setUp() throws Exception {
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();
creationMgr = new CreationMgrImpl();
creationMgr.setFilterBuilder(new GeotoolsFilterBuilder());
creationMgr.setCatalogFramework(mockCatalogFramework);
if (!CorbaUtils.isIdActive(rootPOA, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
rootPOA.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), creationMgr);
} 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.WrongPolicy in project alliance by codice.
the class LibraryImpl method getOrderMgrObject.
private Object getOrderMgrObject(String managerId) {
Object obj;
OrderMgrImpl orderMgr = new OrderMgrImpl();
orderMgr.setCatalogFramework(catalogFramework);
orderMgr.setFilterBuilder(filterBuilder);
orderMgr.setEmailConfiguration(emailConfiguration);
if (!CorbaUtils.isIdActive(poa, managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)))) {
try {
poa.activate_object_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), orderMgr);
} catch (ServantAlreadyActive | ObjectAlreadyActive | WrongPolicy e) {
LOGGER.info("Error activating OrderMgr: ", e);
}
}
obj = poa.create_reference_with_id(managerId.getBytes(Charset.forName(NsiliEndpoint.ENCODING)), OrderMgrHelper.id());
return obj;
}
Aggregations