Hi, I am trying to develop a fat client, I mean there will be a client implementation to access server services instead of browser. I am facing a problem on fetching non standard headers on client side. I have set the header on client side, and it was set correctly. I can see that header if I access the service through any browser. But if I use Restlet client to access the service, then I don't get those headers. The way I have done is ---
Response response=client.handle(request); Map<String,Object> attributes=response.getAttributes(); But this attribute map doesn't contains my non-standard header. I have searched though both key and the object of the above attribute map, but didn't find my non-standard header. Any idea how to resolve this problem? Here I want to mention that, I am using Restlet 1.0.4. Looking forward for your response. Regards, Jahid

