Kevan,
I started G using geronimo.bat. The server started fine. But the exception
causing startup failure for others was thrown after the server started :o).
Here is the console output tail.
Geronimo Application Server started
Exception in thread "Timer-2"
javax.xml.transform.TransformerFactoryConfiguratio
nError: Provider org.apache.xalan.processor.TransformerFactoryImpl not found
at javax.xml.transform.TransformerFactory.newInstance(Unknown
Source)
at org.apache.geronimo.kernel.util.XmlUtil.newTransformerFactory
(XmlUtil
.java:95)
at org.apache.geronimo.kernel.util.XmlUtil.newTransformerFactory
(XmlUtil
.java:79)
at
org.apache.geronimo.system.configuration.LocalAttributeManager.saveXm
lToFile(LocalAttributeManager.java:494)
at
org.apache.geronimo.system.configuration.LocalAttributeManager.save(L
ocalAttributeManager.java:459)
at
org.apache.geronimo.system.configuration.LocalAttributeManager$2.run(
LocalAttributeManager.java:667)
at java.util.TimerThread.mainLoop(Timer.java:512)
at java.util.TimerThread.run(Timer.java:462)
On 11/17/06, Kevan Miller <[EMAIL PROTECTED]> wrote:
On Nov 17, 2006, at 9:22 AM, anita kulshreshtha wrote:
> I have been running server using java -jar bin\server.jar on both
> 1.4 and 1.5. The server was built using 1.5:
> ...
> The console works fine. I hope this info is useful..
Anita,
You'll only get this error if you use geronimo.sh/.bat or explicitly
set endorsed dirs to lib/endorsed when invoking java.
IMO, 'java -jar server.jar' is not really the recommended way of
starting Geronimo. geronimo.sh currently launches Geronimo as follows:
exec "$_RUNJAVA" $JAVA_OPTS $GERONIMO_OPTS \
-Dorg.apache.geronimo.base.dir="$GERONIMO_BASE" \
-Djava.endorsed.dirs="$JRE_HOME/lib/endorsed:$GERONIMO_BASE/lib/
endorsed" \
-Djava.ext.dirs="$JRE_HOME/lib/ext:$GERONIMO_BASE/lib/ext" \
-Djava.io.tmpdir="$GERONIMO_TMPDIR" \
-jar "$GERONIMO_HOME"/bin/server.jar $LONG_OPT "$@"
IMO, this issue highlights the fact that we should be using
geronimo.sh (or specifying equivalent java options) when running
geronimo tests...
--kevan