Authentication methods...

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Authentication methods...


    Hi,

    We're likelly to have both internal and external systems on our servers.
    We've only got one IIS server (Charity!).

    Is there going to be any problem running both forms and integrated
    authentication off the same IIS server??

    Thanks in advance....

    P


    Paul M Guest

  2. Similar Questions and Discussions

    1. Accessing htm files without authentication (forms authentication)
      I have application with forms authentication. All works fine. When user opens .aspx file gets login form, login and then get the .aspx page. But...
    2. Illegal to mix Authentication methods ?
      Hello, I have a Web Service, a Winform client and a web Application. The Web App and the WinForm Client use the same Web Service (or such is the...
    3. #26350 [NEW]: Inherited methods can't access private methods
      From: forseti at oak dot rpg dot pl Operating system: Windows 98 SE PHP version: 5.0.0b2 (beta2) PHP Bug Type: Zend Engine 2...
    4. Really confused about authorization/authentication methods in ASP.Net
      I have been reading and reading the Microsoft best practices, articles on and on but still I can't figure out which method to chose to get started....
    5. Aliased setter methods behave differently than other methods?
      Here's another question... I am aliasing and redefining certain methods, determined at runtime. Normal methods work fine, but methods ending in '='...
  3. #2

    Default Re: Authentication methods...

    in Internal server you will not face any problem with the Windows Integrated
    Security, provided all your machines are running Windows which is based on
    NT.

    and for public, you will face problem, because you will not be having
    account of all the users accessing your site on your server, and also it is
    not necessary that the user who visits your web site is using Windows as a
    Operating System, there can be a visitors using Linux Operating System and
    also browser capablities are there, IE 4.0+ supports Windows Integrated
    Secuity, so user require to have IE 4.0+

    So better to go with Basic Authentication, SSL or Form based Authentication
    if publically and internally both the sites are same, and if you are not
    having problem with the Windows thing.

    --
    Dhaval Faria
    Founder, Programmer
    Hirdhav ([url]http://www.hirdhav.com[/url])
    Microsoft India Community Star

    "Paul M" <masonp@trials.bham.ac.uk> wrote in message
    news:uI#wXGavDHA.1060@TK2MSFTNGP12.phx.gbl...
    >
    > Hi,
    >
    > We're likelly to have both internal and external systems on our servers.
    > We've only got one IIS server (Charity!).
    >
    > Is there going to be any problem running both forms and integrated
    > authentication off the same IIS server??
    >
    > Thanks in advance....
    >
    > P
    >
    >

    Dhaval Faria Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139