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 7518223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:41:49+00:00 2026-05-30T01:41:49+00:00

I try to validate a field with ajax and a function which verify that

  • 0

I try to validate a field with ajax and a function which verify that the value is not already in base.

All examples I found are with php ; how to do with java ?

JSP code :

<form id="FLoginNew" action="Loginnew" method="post">
.....
<script>
$(document).ready(function(e) {
    $("#FLoginNew").validationEngine('attach', {promptPosition : "centerRight", scroll: false, validationEventTrigger: "blur", autoHidePrompt:true, autoHideDelay:3000 });
});
</script>

jquery.ValidationEngine-fr.js altered :

"ajaxLoginCall": {
                "url": "myapp.selvlets.DoublonLoginServlet",
                "extraDataDynamic": ['#login'],
                "alertText": "* Ce login est déjà pris",
                "alertTextOk": "* Ce login est disponible",
                "alertTextLoad": "* Chargement, veuillez attendre"
            },

As URL, I tried : "url": "/DoublonLogin", which is the declaration of the servlet mapping in web.xml.

  • 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-05-30T01:41:51+00:00Added an answer on May 30, 2026 at 1:41 am

    I’m answering myself : I found the solution :

    At first, the input class (I didn’t display) : class="validate[required,ajax[Ajaxdoublonlogin]]"

    Then, the url of the Ajax call called “Ajaxdoublonlogin” : "Doublonlogin" as it is declared in the web.xml file. It’s a servlet.

    The servlet :

    • It must import a JSON librairy. I chose “JSONSimple” : simple and
      enough for what I want to do.
    • Create a JSON array and put then name of the input field then true or false
      after verification is made.
    • Create a writer in the response object and write the JSON array.

    Nothing difficult ! ^_^

    Example : “login” is the id of the input field

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    
        String login = new String(request.getParameter("login")); // we catch the value
    
        JSONArray jsres = new JSONArray(); // new JSON array
    
        jsres.add("login"); // 1st field : the field name = "login"
    
        if(<login in the database ?>) jsres.add(new Boolean(false)); // In database ? => false in the JSON array
        else jsres.add(new Boolean(true)); // Not in database > true in the JSON array !! 
    
        response.setContentType("application/json"); // The answer is in JSON content type
        response.setCharacterEncoding("UTF-8"); // Put the right encoding
        PrintWriter writer = response.getWriter();  // new answer writer
    
        try {
            writer.println(jsres); // WRITE !! ^_^
            log.info("Retour JSON : " + jsres);
            } catch(Exception e){
            log.error("Erreur lors du transfert JSON : " + e.getMessage());
        } finally {
            writer.close(); // Don't forget to close the writer
        }
    }
    

    It works fine…
    If you have suggestions, I’ll take with pleasure !

    Now, I’ll try to prevent the form submit because if the last condition is this condition, the submit appends ; I don’t know why…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Try to see which cast is faster (not necessary better): new c++ case or
I try to validate a date field. I only want to allow, numeric chars
am trying to validate recaptcha with ajax, the only problem am facing is that
I have an input field which I would like to dynamically validate while user
try: spam.foo except AttributeError: do_somthing() (Is it wise to check an attribute like that
I'm using ui.datepicker.js and I want to validate the date field to make sure
Is it possible to have Required Field Validator controls to validate more than one
I have an ExtJS combobox, which is a required field, but I don't want
I need to allow Arabic usernames on my website which is already using ctype_alnum
I need to validate that certain variables can create a valid datetime and if

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.