RE: org.apache.cxf.interceptor.Fault: Marshalling Error: class javax.xml.ws.Holder nor any of its super class is known to this context.

2007-10-09 Thread Jarada, Hussam
Hi Daniel, I am using JaxWsProxyFactoryBean now and it does create the factory and the port class as expected but still getting the exception when invoking any RSI web service, any help in resolving this? JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();

Re: org.apache.cxf.interceptor.Fault: Marshalling Error: class javax.xml.ws.Holder nor any of its super class is known to this context.

2007-10-05 Thread Daniel Kulp
Use the JaxWsProxyFactoryBean instead.The javax.xml.ws.Holder objects are a JAX-WS thing and thus the interceptors for handling them are part of the JAX-WS frontend.The ClientProxyFactoryBean is from the simple frontend that doesn't have all the JAX-WS stuff. Alternatively, you MAY be