I forgot to include a bit from the log file:
2010-11-19 15:41:55,237 INFO [[ACTIVE] ExecuteThread: '3' for queue:
'weblogic.kernel.Default (self-tuning)'] LoggingInInterceptor: Inbound
Message
----------------------------
ID: 3
Address: /service/health/check
Content-Type:
Headers: {Accept-Language=[en-us,en;q=0.5], connection=[keep-alive],
...snipped
--------------------------------------
--> inside the 'check' method
2010-11-19 15:41:55,238 ERROR [[ACTIVE] ExecuteThread: '3' for queue:
'weblogic.kernel.Default (self-tuning)'] RequestDispatcherProvider:
RESOURCE_PATH_NOT_FOUND
2010-11-19 15:41:55,238 WARN [[ACTIVE] ExecuteThread: '3' for queue:
'weblogic.kernel.Default (self-tuning)'] WebApplicationExceptionMapper:
WebApplicationException has been caught : no cause is available
2010-11-19 15:41:55,238 INFO [[ACTIVE] ExecuteThread: '3' for queue:
'weblogic.kernel.Default (self-tuning)'] LoggingOutInterceptor: Outbound
Message
---------------------------
ID: 3
Response-Code: 500
Content-Type: text/html
Headers: {}
--------------------------------------
On Fri, Nov 19, 2010 at 3:40 PM, David Miller <[email protected]> wrote:
> In Weblogic 10.3 and 10.3.3 I am not able to forward to a jsp with
> CXFServlet. The very same app works as desired when deployed to Glassfish 3.
>
> As far as this particular app is concerned, the only difference between
> Weblogic and Glassfish is that an ear is deployed to Weblogic and a war is
> deployed to Glassfish. Unfortunately I need it to work in Weblogic :(
>
> I've followed the documentation (
> http://cxf.apache.org/docs/jax-rs.html#JAX-RS-WithCXFServlet) and have
> thoroughly read a thread where a similar question was asked (
> http://cxf.547215.n5.nabble.com/another-question-on-RequestDispatcherProvider-td547815.html
> ).
>
> Here is one example of my RequestDispatcherProvider:
>
> <bean id="dispatchProvider1"
> class="org.apache.cxf.jaxrs.provider.RequestDispatcherProvider">
> <property name="dispatcherName" value="jsp"/>
> <property name="resourcePath" value="/WEB-INF/views/health.jsp"/>
> <property name="scope" value="request"/>
> </bean>
>
> I have tried every permutation of resourcePath and have placed the jsp both
> inside and outside of WEB-INF.
>
> For example:
> /WEB-INF/views/health.jsp
> WEB-INF/views/health.jsp
> /views/health.jsp
> views/health.jsp
> /health.jsp
> health.jsp
>
> Is there anyone using Weblogic that has successfully done what I'm trying
> to do?
>
>
>