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 any browser. But if use restlet client to access the service, then I don't get those headers. The way I have done is ---
Map<String,Object> attributes=form.getAttributes(); But this attribute map doesn't contains 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

