IntelliJ Java IDE
The moose likes Web Services and the fly likes CXF -Endpoint - Binding object Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "CXF -Endpoint - Binding object" Watch "CXF -Endpoint - Binding object" New topic
Author

CXF -Endpoint - Binding object

Aruna Jayabalu
Greenhorn

Joined: Aug 09, 2011
Posts: 12
Hi,

I am using CXF webservice. I am trying to access the published endpoint in the Interceptor class.

Endpoint ep= null;
Bus bus = CXFBusFactory.getDefaultBus();
ServerRegistry serverRegistry = bus.getExtension(ServerRegistry.class);
List<Server> servers = serverRegistry.getServers();
Server targetServer = null;
for (Server server : servers) {
targetServer = server;
String address = server.getEndpoint().getEndpointInfo().getAddress();
ep = server.getEndpoint();
logger.debug("Endpoint ******* "+ep);
logger.debug("Endpoint Info******* "+ep.getEndpointInfo());
}


The above code works fine and I am able get the endpoint object.
With the endpoint object when I try to access the method ep.getBinding()
I need to setMTOMEnabled property on the binding object.

SOAPBinding binding = (SOAPBinding)ep.getBinding();
binding.setMTOMEnabled(true);

I am getting class cast exception. Cannot cast org.apache.cxf.binding.soap.SoapBinding cannot be cast to javax.xml.ws.soap.SOAPBinding
It is expecting cxf.binding.soap.SoapBinding object. But there is no setMTOMEnabled in cxf SoapBinding.

Can you please suggest any solution for the above problem.

We have confirgured the below service factory in cxf-servlet.xml
<jaxws:serviceFactory>
<bean class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean"/>
</jaxws:serviceFactory>

Will this create any problem?


Thanks,
Aruna.J



 
 
subject: CXF -Endpoint - Binding object
 
Threads others viewed
GlassFish Application Client Container in Standalone Java SE
simple java problem
Job market in singapore.. PLease help me..
Java EE doesnot support Encoded binding
EJB 3.0 WebService, How to change context
WebSphere development made easy
without the weight of IBM tools
http://www.myeclipseide.com