Hi Victorin,
the problem is an
java.lang.NoSuchMethodError: com / sun / xml / stream / buffer / Stax / StreamWriterBufferCreator.setCheckAttributeValue (Z) V
i'm not sure but i think that you have two jar loaded with the same name and the application is taken the wrong, that is find the class with same name but implemented diferent.
I suggest the next approch:
1.- Active in the server Classloader Viewer in the server where you are deploying
Servers->Other Properteis/Services->Classloader Viewer Services->Check enable at startup
This services is in the server configuration page at the botton off the properties
After enable restart the server.
2.- When the server is started, login in console and go to:
Trubbleshotting-> Classloader Viewer->find Class and search for
com.sun.xml.wss.jaxws.impl.SecurityClientTube.processRequest class to see whats classloader is loading class and if is more than one classloaders.
I think in that case that the better approach is to use shared librarys and play with class loader orders at the application level in this way you always can isolate classes.
Hope this helps if you need more help say here
regards