Search:

Type: Posts; User: aswinraj11

Search: Search took 0.22 seconds.

  1. Re: How to block the JSP being called by GET method

    I resolved it by checking whether the same is GET or post inside success of request.getParameter if case. Blocked it when the request is GET. Thanks for your suggestion. :)
  2. Re: How to block the JSP being called by GET method

    Hi Jash.. Thanks for your response. Yes that's my query. I tried following the steps mentioned in - How to disable GET requests to JSP page? - Stack Overflow. Tried it in my resin 2.1.3 but was not...
  3. How to block the JSP being called by GET method

    Hi Guys ... I have an existing JSP which is coded like this.

    /<%
    if( (request.getParameter("userid")!=null) && (request.getParameter("token")!=null) ) {

    session.setParameter("USERID",...
Results 1 to 3 of 3