use of org.apache.cxf.transport.http_jaxws_spi.JAXWSHttpSpiTransportFactory in project cxf by apache.
the class EndpointImpl method publish.
public void publish(javax.xml.ws.spi.http.HttpContext context) {
ServerFactoryBean sf = getServerFactory();
if (sf.getDestinationFactory() == null) {
sf.setDestinationFactory(new JAXWSHttpSpiTransportFactory(context));
}
publish(context.getPath());
}
Aggregations