listenerType = _appClassLoader.loadClass(listener != null ? listener : JCAConstants.DEFAULT_LISTENER_CLASS);
} catch (Exception e) {
throw JCAMessages.MESSAGES.noListenerClassFound(listener, e);
}
EndpointModel endpointModel = inboundInteractionModel.getEndpoint();
if (endpointModel == null) {
throw JCAMessages.MESSAGES.noEndpointConfigured();
}
String endpointClassName = endpointModel.getEndpointClassName();
Properties endpointProps = endpointModel.getProperties();
ActivationSpec activationSpec = null;
ResourceAdapter resourceAdapter = null;
MessageListener listenerContainer = null;
try {