I need to have this link:
http://myserver:/myproject/innerpage/clip.jsf&id=9099
to extract the id from a code like this:
HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
String clipId = request.getParameter("id");
When I run it on tomcat I get:
message /OnAir/innerpage/clip.jsf&id=9099
description The requested resource (/OnAir/innerpage/clip.jsf&id=9099) is not available.
When I run it without &id=9099 it runs all right.
How can I make it run?