1. You are viewing our forum as a guest. For full access please Register. WindowsBBS.com is completely free, paid for by advertisers and donations.

Web Mail - Logon Issue

Discussion in 'Networking (Hardware & Software)' started by Steve R Jones, 2008/04/07.

  1. 2008/04/07
    Steve R Jones

    Steve R Jones SuperGeek Staff Thread Starter

    Joined:
    2001/12/30
    Messages:
    12,317
    Likes Received:
    252
    I actually figured out the problem but am trying to figure out if I'm getting old or my IT consultant is:eek:

    Short version is that I accidently figured out that the logon is Case Sensitive.

    Example: sjones@[B]C[/B]ompany[B]N[/B]ame[B]H[/B]ere.com

    The actual address is a few characters longer But has three names like this example. The sign on screen no likeee the capital letters. It only took three weeks to luck upon the solution.

    Any thoughts or comments?
     
  2. 2008/04/07
    PeteC

    PeteC SuperGeek Staff

    Joined:
    2002/05/10
    Messages:
    28,896
    Likes Received:
    389
    Methinks you're getting old Steve and the grey matter is failing :D

    Think back - all addresses used to be in lower case - and clearly some still need to be. My webmail logon is exclusively lower case.

    Another example today while registering a debit card for internet security - my name had to be in lower case.
     

  3. to hide this advert.

  4. 2008/04/07
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,072
    Likes Received:
    400
    All Web logon forms are processed by server scripts or server applications. Most all are case sensitive, as are the password fields. These scripts usually contain code that validates the form input, such as:
    ifempty(username) || (password) {
    # show an error message to user
    }
    if $username && password != exact username & password stored in database {
    # send user back to login form
    }
    else {
    # grant access to user
    }
     
    Last edited: 2008/04/07
  5. 2008/04/08
    ReggieB

    ReggieB Inactive Alumni

    Joined:
    2004/05/12
    Messages:
    2,786
    Likes Received:
    2
    JavaScript (the scripting language used on many client side validations systems) is case sensitive. However, like most case sensitive languages I've come across, it also contains a String method which can be used to force text to become lower case ( "toLowerCase "). This makes it easy to create a case insensitive validation if (as in the case of e-mail addresses) the item being checked can be in any case.
    Code:
    var test_string =  "Test ";
    a = test_string.match( "test ");
    b = test_string.toLowerCase.match( "test ");
    
    a would return nil because "Test" is not an exact match of "test ".
    b would successfully return the test pattern because "Test" was converted to "test" before it was compared.

    Therefore, I'd say you are suffering from poorly designed interface. It's behaving the way you describe, because the developers of that software have made it so it works that way.
     
  6. 2008/04/08
    Steve R Jones

    Steve R Jones SuperGeek Staff Thread Starter

    Joined:
    2001/12/30
    Messages:
    12,317
    Likes Received:
    252
    Great thanks...Lower Case is good:cool:

    I've only seen a few softwares/websites where the UserName is case sensitive. Thus this thread...

    My on line banking for example isn't....Of the eight vBulletin sites I post on, only one of them is...
     
  7. 2008/04/08
    TonyT

    TonyT SuperGeek Staff

    Joined:
    2002/01/18
    Messages:
    9,072
    Likes Received:
    400
    Rule of thumb is Usernames not case sensitive, passwords always case sensitive. However, that rule only really applies to Usernames that are email addresses. Many sites use email addresses as the username, thus case sensitive should not apply. But for example, if a username = TonyT then the login form should not accept tOnYt.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.