[ 
https://issues.apache.org/jira/browse/CXF-5053?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sergey Beryozkin updated CXF-5053:
----------------------------------

    Issue Type: Improvement  (was: Bug)

I agree, makes sense to have Message retrieved from the contexts consistently
                
> JAX-RS behavior differs from JAX-WS for MessageContext.get( 
> Message.class.getName() ) 
> --------------------------------------------------------------------------------------
>
>                 Key: CXF-5053
>                 URL: https://issues.apache.org/jira/browse/CXF-5053
>             Project: CXF
>          Issue Type: Improvement
>          Components: JAX-RS
>            Reporter: Minto van der Sluis
>         Attachments: jira-5053.patch
>
>
> In JAX-WS:
>   WebServiceContext webServiceContext; // injected with proper value.
>   Message message = Message.class.cast( 
> webServiceContext.getMessageContext().get( Message.class.getName() ) );
> results in a valid message object reference (not null)
> In JAX-RS however similar code:
>   MessageContext jaxrsContext; // injected with proper value.
>   Message message = Message.class.cast( jaxrsContext.get( 
> Message.class.getName() ) );
> results in an invalid message object (null);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to