• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

MessageContext is null

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm trying to create a webservice using CXF and REST framework. I created a Servlet Client which runs on Weblogic server 10. And I have the Webservice Method running on another Weblogic Server 10.

I followed the JAX-RS example provided in this link, http://cwiki.apache.org/CXF20DOC/jax-rs-jsr-311.html. Communication between my client and the webservice is working as expected. To get to the next step I was trying to get an handle over the request and session object in my webservices server end.

After going thro couple of examples, I used the below code snippet and I'm able to get hold of the WebServiceContext.

@Resource
private WebServiceContext context;

My problem is when I'm trying to get a Message Context, it is returning me null. Please let me know what I'm missing here.

Below is my beans.xml code:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxrs="http://cxf.apache.org/jaxrs"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxrs
http://cxf.apache.org/schemas/jaxrs.xsd">

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

<jaxrs:server id="shoppingbagservice" address="/">
<jaxrs:serviceBeans>
<ref bean="shoppingBean" />
</jaxrs:serviceBeans>
</jaxrs:server>

<bean id="shoppingBean" class="com.limited.directmarketing.shoppingbag.appflow.ShoppingBagService" />
</beans>

Let me know if you need more information on this.

Thanks,
Balaji
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic