I am developing web services using Restlet Java.
For this I want to protect some webservices from unauthorized clients. So I have written Filter cla
I solved my problem using
Form headers = (Form) request.getAttributes().get("org.restlet.http.headers"); String user_token = headers.getFirstValue("Location");
I found this http://blog.yudongli.com/2009/12/get-request-header-in-restlet_13.html link useful.