You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by "Murugappan, Thaiyal" <tm...@cbs.com> on 2007/05/17 20:34:59 UTC

Http Binding with Tomcat

Hi, 

 

I tried to run the restful_http_binding example within Tomcat, using
Spring to load the JaxWsServerFactoryBean. 

The address is set to "/xml" instead of http://localhost:8080/xml and
got the following exception. 

 

java.lang.ClassCastException: org.apache.cxf.service.model.BindingInfo

      at
org.apache.cxf.binding.soap.SoapTransportFactory.createPortExtensors(Soa
pTransportFactory.java:89)

      at
org.apache.cxf.frontend.AbstractEndpointFactory.createEndpointInfo(Abstr
actEndpointFactory.java:212)

      at
org.apache.cxf.frontend.AbstractEndpointFactory.createEndpoint(AbstractE
ndpointFactory.java:104)

      at
org.apache.cxf.frontend.ServerFactoryBean.create(ServerFactoryBean.java:
84)

      

 

Here is my beans.xml

 

<bean id="customerService"

      class="org.apache.cxf.jaxws.JaxWsServerFactoryBean"
init-method="create">

       <property name="bus" ref="cxf"/>

          <property name="serviceClass"
value="com.acme.customer.CustomerService" />

      <property name="serviceBean">

                  <bean class="com.acme.customer.CustomerServiceImpl"/>

          </property>

      <property name="address" value="/xml"/>

      <property name="bindingId">

            <value>http://apache.org/cxf/binding/http</value>

      </property>     

</bean>

 

I was able to find only a Jetty Http Transport factory implementation.
Is there a Tomcat transport factory implementation available for Http?
What should I do to run it within Tomcat?
 
Thanks,
Thaiyal

 


Re: Http Binding with Tomcat

Posted by Willem Jiang <ni...@iona.com>.
Hi Thaiyal,

Do you add the http-binding module to the beans.xml ?

Please make sure the below line in the beans.xml

<import resource="classpath:META-INF/cxf/cxf-extension-http-binding.xml" />

Murugappan, Thaiyal wrote:
> Hi, 
>
>  
>
> I tried to run the restful_http_binding example within Tomcat, using
> Spring to load the JaxWsServerFactoryBean. 
>
> The address is set to "/xml" instead of http://localhost:8080/xml and
> got the following exception. 
>
>  
>
> java.lang.ClassCastException: org.apache.cxf.service.model.BindingInfo
>
>       at
> org.apache.cxf.binding.soap.SoapTransportFactory.createPortExtensors(Soa
> pTransportFactory.java:89)
>
>       at
> org.apache.cxf.frontend.AbstractEndpointFactory.createEndpointInfo(Abstr
> actEndpointFactory.java:212)
>
>       at
> org.apache.cxf.frontend.AbstractEndpointFactory.createEndpoint(AbstractE
> ndpointFactory.java:104)
>
>       at
> org.apache.cxf.frontend.ServerFactoryBean.create(ServerFactoryBean.java:
> 84)
>
>       
>
>  
>
> Here is my beans.xml
>
>  
>
> <bean id="customerService"
>
>       class="org.apache.cxf.jaxws.JaxWsServerFactoryBean"
> init-method="create">
>
>        <property name="bus" ref="cxf"/>
>
>           <property name="serviceClass"
> value="com.acme.customer.CustomerService" />
>
>       <property name="serviceBean">
>
>                   <bean class="com.acme.customer.CustomerServiceImpl"/>
>
>           </property>
>
>       <property name="address" value="/xml"/>
>
>       <property name="bindingId">
>
>             <value>http://apache.org/cxf/binding/http</value>
>
>       </property>     
>
> </bean>
>
>  
>
> I was able to find only a Jetty Http Transport factory implementation.
> Is there a Tomcat transport factory implementation available for Http?
> What should I do to run it within Tomcat?
>  
>   
I think Dan has reply your mail.
> Thanks,
> Thaiyal
>
>  
>
>
>   
Cheers,
Willem.