Author: mszefler
Date: Tue Aug 1 14:03:22 2006
New Revision: 427730
URL: http://svn.apache.org/viewvc?rev=427730&view=rev
Log:
Hack to make things work even if JCA server can't start due to RMI
classloading problems.
Modified:
incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeLifeCycle.java
Modified:
incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeLifeCycle.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeLifeCycle.java?rev=427730&r1=427729&r2=427730&view=diff
==============================================================================
--- incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeLifeCycle.java
(original)
+++ incubator/ode/trunk/jbi/src/main/java/org/apache/ode/jbi/OdeLifeCycle.java
Tue Aug 1 14:03:22 2006
@@ -134,7 +134,7 @@
__log.info(__msgs.msgOdeInitialized());
} finally {
if (!_initSuccess) {
- // TODO ..then what?
+ // TODO ..then what? at least shutdown the scheduler
}
}
}
@@ -328,7 +328,7 @@
try {
_connector.start();
} catch (Exception e) {
- throw new JBIException("Failed to initialize JCA connector.",e);
+ __log.error("Failed to initialize JCA connector.",e);
}
}
}