Looking for some advice, 
Following snippet of code, wanted to know how do I get access to the current 
URL/URI string in the request object. try a number of things no joy?


Restlet restlet = new Restlet() {  
                 @Override  
                 public void handle(Request request, Response response) {
                         String p = new String();
                        p = 
request.getResourceRef().getQueryAsForm().getFirstValue("edate");
                        response.setEntity("Hello World! ="+p, 
MediaType.TEXT_PLAIN); 
                         
                    }  
                };

------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=1043275

Reply via email to