In the below code to get values from repository from form handler ,I am not getting any output[All mapings are correct]..
public void handleSearch(DynamoHttpServletRequest req,DynamoHttpServletResponse res)throws ServletException,IOException, RepositoryException{
try{
RepositoryView view=getProfileValue().getView("onetomanyarray");
RqlStatement statement=RqlStatement.parseRqlStatement("Uage like ?0");
//while using integers for retrieval I used following code
Object params[] = new Object[1];
params[0] = new Integer(25);
//for string I am using
Object params[] ={new String("sud")};
RepositoryItem [] items=statement.executeQuery(view, params);
}catch (RepositoryException rpe){
logError("There is Some Error");
}
In the above sample class code when I hit the submit button ,no changes in JSP Page but in the console I get Error in Item descriptor name[both for integer and string]. NOTE:onetomanyarray Is the name of Item Descriptor