use of com.sun.appserv.connectors.internal.api.PoolingException in project Payara by payara.
the class ConnectorXAResource method getResourceHandle.
private ResourceHandle getResourceHandle(boolean beginTxIfNeeded) throws PoolingException {
try {
ResourceHandle h = null;
JavaEETransaction j2eetran = getCurrentTransaction();
if (j2eetran == null) {
// Only if some thing is wrong with tx manager.
// Just return the local handle.
h = localHandle_;
} else {
h = (ResourceHandle) j2eetran.getNonXAResource();
// can be acquired. If the resource in question is not the one in transaction, fail
if (!localHandle_.isShareable()) {
if (h != localHandle_) {
throw new ResourceAllocationException("Cannot use more than one local-tx resource in unshareable scope");
}
}
}
if (beginTxIfNeeded && h.getResourceState().isUnenlisted()) {
ManagedConnection mc = (ManagedConnection) h.getResource();
// begin the local transaction if first time
// this ManagedConnection is used in this JTA transaction
mc.getLocalTransaction().begin();
}
return h;
} catch (Exception ex) {
_logger.log(Level.SEVERE, "poolmgr.system_exception", ex);
throw new PoolingException(ex.toString(), ex);
}
}
use of com.sun.appserv.connectors.internal.api.PoolingException in project Payara by payara.
the class ConnectorAllocator method fillInResourceObjects.
public void fillInResourceObjects(ResourceHandle resource) throws PoolingException {
try {
ManagedConnection mc = (ManagedConnection) resource.getResource();
Object con = mc.getConnection(subject, reqInfo);
resource.incrementCount();
XAResource xares = mc.getXAResource();
resource.fillInResourceObjects(con, xares);
} catch (ResourceException ex) {
throw new PoolingException(ex);
}
}
use of com.sun.appserv.connectors.internal.api.PoolingException in project Payara by payara.
the class NoTxConnectorAllocator method fillInResourceObjects.
public void fillInResourceObjects(ResourceHandle resource) throws PoolingException {
try {
ManagedConnection mc = (ManagedConnection) resource.getResource();
Object con = mc.getConnection(subject, reqInfo);
resource.fillInResourceObjects(con, null);
} catch (ResourceException ex) {
throw new PoolingException(ex);
}
}
use of com.sun.appserv.connectors.internal.api.PoolingException in project Payara by payara.
the class NoTxConnectorAllocator method destroyResource.
public void destroyResource(ResourceHandle resource) throws PoolingException {
try {
ManagedConnection mc = (ManagedConnection) resource.getResource();
mc.destroy();
} catch (Exception ex) {
throw new PoolingException(ex);
}
}
use of com.sun.appserv.connectors.internal.api.PoolingException in project Payara by payara.
the class AdministeredObjectResource method createAdministeredObject.
// called by com.sun.enterprise.naming.factory.AdministeredObjectFactory
// FIXME. embedded??
public Object createAdministeredObject(ClassLoader jcl) throws PoolingException {
try {
if (jcl == null) {
// use context class loader
jcl = (ClassLoader) AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
return Thread.currentThread().getContextClassLoader();
}
});
}
Object adminObject = jcl.loadClass(adminObjectClass_).newInstance();
AccessController.doPrivileged(new SetMethodAction(adminObject, configProperties_));
// associate ResourceAdapter if the admin-object is RAA
if (adminObject instanceof ResourceAdapterAssociation) {
try {
ResourceAdapter ra = ConnectorRegistry.getInstance().getActiveResourceAdapter(resadapter_).getResourceAdapter();
((ResourceAdapterAssociation) adminObject).setResourceAdapter(ra);
} catch (ResourceException ex) {
_logger.log(Level.SEVERE, "rardeployment.assoc_failed", ex);
}
}
// At this stage, administered object is instantiated, config properties applied
// validate administered object
// ConnectorRuntime should be available in CLIENT mode now as admin-object-factory would have bootstapped
// connector-runtime.
ConnectorRuntime.getRuntime().getConnectorBeanValidator().validateJavaBean(adminObject, resadapter_);
return adminObject;
} catch (PrivilegedActionException ex) {
throw (PoolingException) (new PoolingException().initCause(ex));
} catch (Exception ex) {
throw (PoolingException) (new PoolingException().initCause(ex));
}
}
Aggregations