Hi,

That was rather hard to understand... lemme rephrase that:

What do you mean by "i need to do that for all the resource mappings."?

Also, see sample below:

   @GET
   @Path("/somepath")
   public void someMethod(
           @HeaderParam("Authorization")
           String authorization) {

I hope that is better.

Gabo

Gabo Manuel wrote:
Hi,

I am not sure what you mean by all resource mappings but the following should work:

@HeaderParam("Authorization") on a method parameter of a service implementation will extract the authorization header.

Hth.

Gabo

CXFbanda wrote:
Hi,

I need to extract HTTP authorization header.
I am able to do it using @Context HttpHeader injection by CXF and then
extracting Authorization info from that.
However, i need to do that for all the resource mappings.
Is there any way I can avoid replicating code in each method?
Is there any way by which I can specify a particular method to be executed,
irrespective of the request?
(where I can have this extraction code, and then store the extracted header
in some instance variable.)

Thanks
------------------------------------------------------------------------


No virus found in this incoming message.
Checked by AVG - www.avg.com Version: 8.0.237 / Virus Database: 270.10.25/1957 - Release Date: 02/17/09 07:07:00

------------------------------------------------------------------------


No virus found in this incoming message.
Checked by AVG - www.avg.com Version: 8.0.237 / Virus Database: 270.10.25/1957 - Release Date: 02/17/09 07:07:00

Reply via email to