Re: configure endpoint created by JaxWsServerFactoryBean

2008-10-15 Thread William Tam
I guess my answer is likely to be "no". org.apache.cxf.jaxws.spring.EndpointDefinitionParser calls setBeanClass to org.apache.cxf.jaxws.EndpointImpl.class. That class is not inherited by org.apache.cxf.jaxws.support.JaxWsEndpointImpl. public EndpointDefinitionParser() { super();

configure endpoint created by JaxWsServerFactoryBean

2008-10-15 Thread William Tam
Hi, If I create a server with JaxWsServerFactoryBean, is it possible to configure my endpoint using Spring? It does not work when I am doing the following. JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean(); // populate my factory with setXXX() methods. ... factory.setStart(false);