dale77 schrieb: > > > I'm still confused though, my code is a CXF java webservice *client* that > works perfectly with NO additional jars in the same jvm that the Oracle app > server is running in. That says to me that all dependencies are satisfied by > the bare 1.6.0_10 jvm... Why should I need to add CXF jars to the > environment, given this fact? > >
Your client probably uses built in JAX-WS stack from java 1.6, and not CXF. It's not a good idea to use the built in stack, because its classes are located in internal package, and also throw exceptions from internal package that can't be caught in a catch block (code won't compile with javac, only with eclipse compiler). Jaro
