Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9201725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:05:10+00:00 2026-06-17T23:05:10+00:00

I am having terrible nightmares with ajax and javascript… i’m trying to read the

  • 0

I am having terrible nightmares with ajax and javascript… i’m trying to read the JSON answer and redirect to other site.

My Javascript is supposed to query the verify servlet waiting for procedure == login || loginAlreadyInUse and then redirect it to other place:

<script type="text/javascript">
var userId = "<%=request.getSession().getId()%>";
var timeInterval=self.setInterval("check_userId()", 3000);

function check_userId() {
$.post('http://localhost:8080/qrlogin/verify', {userId: userId}, 
    function(data) {
       if(data.procedure == "login") {
             window.location = 'http://localhost:8080/qrlogin/login'+userId;
        }
       else if(data.procedure == 'loginAlreadyInUse') {
            window.location = 'http://localhost:8080/qrlogin/'+userId;
         }
     }, "json");

}

The verify servlet at the moment:

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    response.setContentType("text/javascript");
    PrintWriter out = response.getWriter();
    // Assuming your json object is **jsonObject**, perform the following, it will return your json object  
    out.print("{'procedure' : 'login' }");
    out.flush();
    return;
}

The problem is the script never redirects to the login page. (keep making the post every 3 secs…)

thanks for your time,

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T23:05:11+00:00Added an answer on June 17, 2026 at 11:05 pm
    1. "{'procedure' : 'login' }" is not valid JSON. All keys and strings in JSON must be double-quoted, not single quoted. So you need to out.print() this instead:
      "{\"procedure\" : \"login\" }"

    2. text/javascript is the wrong MIME type for JSON. Use application/json.

    3. Don’t pass strings to setInterval (or setTimeout, for that matter). It’s eval in disguise, which we all know is evil (right? right?). Just pass the function itself:

      var timeInterval=self.setInterval(check_userId, 3000); // look ma, no quotes
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having terrible trouble trying to get a navigation controller up-and-running. Basically, I want
I'm having terrible trouble trying to understand python scoping rules. With the following script:
I am having a terrible time trying to get an input box like the
Having read this page , I can't believe that VB.Net has such a terrible
I have been having a terrible time trying to compile a python extension -
I'm having a terrible time trying to pull out some values out of an
I'm having a terrible time trying to figure out how to add XML PATH
I am having terrible problems trying to handle ViewexpiredException correctly using the frameworks JSF
I am having a terrible time trying to do something that should be easy.
I´m quite new to iOS development and I´m having a terrible time by trying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.