Re: Configuring CXF FaultListener in TomEE

2017-03-20 Thread Romain Manni-Bucau
you just need to set your faultlistener in the cxf Message, this is easily done through an interceptor. Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github

Re: Configuring CXF FaultListener in TomEE

2017-03-20 Thread Paul Carter-Brown
Is that not for an interceptor? This is a FaultListener On 20 March 2017 at 20:28, Romain Manni-Bucau wrote: > cxf.jaxws.out-fault-interceptors = xx > > > Romain Manni-Bucau > @rmannibucau | Blog >

Re: Configuring CXF FaultListener in TomEE

2017-03-20 Thread Romain Manni-Bucau
cxf.jaxws.out-fault-interceptors = xx Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn

Re: Configuring CXF FaultListener in TomEE

2017-03-20 Thread Romain Manni-Bucau
Hi don't know if that's gmail formatting but the sample you shared doesnt follow the doc page format. Also if your class is in a webapp and not tomee/lib you cant set it on the bus and you need to use openejb-jar.xml to set it either on a pojo-deployment or ejb-deployment (depending if it is an

Tomee plume maven coordinate

2017-03-20 Thread Lazar Kirchev
Hello, What are the maven coordinates of Tomee plume zip? Is there such thing as org.apache.tomee apache-tomee 7.0.3 zip plume Or they are different? Regards, Lazar

Configuring CXF FaultListener in TomEE

2017-03-20 Thread Paul Carter-Brown
Hi, Currently, my log files are full of warnings from org.apache.cxf.phase. PhaseInterceptorChain.doDefaultLogging whenever my JAX-WS services return with a SOAP Fault (even though its an application level fault defined in the WSDL). This means I get stack traces and dirty logs whenever a SOAP

Re: Camel-CXF in tomee

2017-03-20 Thread Romain Manni-Bucau
You use a JTA datasource and therefore you need to deifne a jta-datasource in your persistence.xml. If you want to do it in the app you can using either vendor specific config file like resources.xml for tomee (you can put it in WEB-INF) or just use @DataSourceDefinition which is the EE way to

Re: Camel-CXF in tomee

2017-03-20 Thread syadav
I did not understand. Please could you explain in detail. I only understood that I need to use @DataSourceDefinition annotation. Please explain me in detail if possible with example. -- View this message in context:

Re: Failure using javax.mail services with TomEE

2017-03-20 Thread jyerrami
I use the sun version of javax.mail.jar file, modified catalina.properties file to use this jar file vs the apache one and it worked. I want to thank you all for such prompt support. You are all amazing. -- View this message in context:

Re: Camel-CXF in tomee

2017-03-20 Thread syadav
is there any other way, as using jta datasource involves changes in tomee server for adding resource and I do not want to do this changes. This increases the deployment task more. I do not want to do any changes in the server. Any change should be in the application itself. -- View this