Deployed Application ASP.NET: file and web access.

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

  1. #1

    Default Deployed Application ASP.NET: file and web access.

    Hi,
    I've developped a Web application for my customer: this web application
    allows users to modify some xml file.

    The customer has deployed the web application into his domain on a IIS 5.5
    or superior: his domain/network is very complex and unfortunately I don't
    have a design. The problem that he encountered, occures only for some type of
    user; here is the problem's explenation:

    Users which belongs to the group "System Operator" and try to access the web
    application, obtain the authentication window (not right!): when they have
    authanticated, they can access the web application but they get an "access
    denied" error when the web application access a xml file.

    All other users, such as "Global System Admin" can do everything with my
    application.

    Please, help me finding a solution.
    Thanks
    Siu Guest

  2. Similar Questions and Discussions

    1. CF and Flex deployed on JRun 4
      Hello, I have installed CF 7 on JRun and deployed it as ear file with expanded directories. I have installed flex and merge web.xml files as...
    2. access flex session in cf that deployed on the JRunserver
      I am setting session object in remote object call, here is the java example: public void setSessionVariables(String practiceId){ HttpSession...
    3. WebSerivces not accessible when deployed.
      I have a development environment setup on my Laptop that runs Win2000. I also have IIS running and local SQLServer running. I developed a client in...
    4. What issue will HIT me hard when I convert an Access 2002 MDE application to Web Application?
      Hi All, Current Access 2002 MDE application: - has no tier - has neither business object nor any kind of object (Except MS Form object and...
    5. Access denied when creating Access application object
      In an ASP file I am running the following in VBScript in order to extract data from an Access 2002 MDB file which is physically located in the...
  3. #2

    Default RE: Deployed Application ASP.NET: file and web access.

    I've forgotten to write that the authentication is integrated in Windows and
    that there isn't any impersonation; here it is my web.config for
    authentication:

    <authentication mode="Windows"/>

    <authorization>
    <allow users="*"/> <!-- Allow all users -->
    <deny users="?"/>
    </authorization>

    Besides, users (System Operator) who has probem by accessing xml file
    through my web application, they don't have any problem by accessing xml file
    directly: they can open them and also modify them, because they have NTFS
    (File System) permission.

    Please help me


    "Siu" wrote:
    > Hi,
    > I've developped a Web application for my customer: this web application
    > allows users to modify some xml file.
    >
    > The customer has deployed the web application into his domain on a IIS 5.5
    > or superior: his domain/network is very complex and unfortunately I don't
    > have a design. The problem that he encountered, occures only for some type of
    > user; here is the problem's explenation:
    >
    > Users which belongs to the group "System Operator" and try to access the web
    > application, obtain the authentication window (not right!): when they have
    > authanticated, they can access the web application but they get an "access
    > denied" error when the web application access a xml file.
    >
    > All other users, such as "Global System Admin" can do everything with my
    > application.
    >
    > Please, help me finding a solution.
    > Thanks
    Siu 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