Problem using Authorization Manager

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

  1. #1

    Default Problem using Authorization Manager

    Hi - help please!

    I've successfully implemented authorization in an asp.net web application
    using Authorization Manager, or AzMan (shipping with Windows Server 2003
    Administration Tools).

    Great tool!

    However, now I wanted to get that little extra out of this tool, and start
    using dynamic application groups (LDAP-groups). Here I get problems. I have
    tried with the simplest LDAP query like "(department = sales)".

    If on any call to myClientContext.HasAccess(), the possibile membership of a
    dynamic group must be evaluated to determine access, asp.net returns the
    error information listed below to my browser:

    Thanks for any hints!!!!!!

    Best regards,
    Mats


    "
    Unable to update the password. The value provided as the current password is
    incorrect.


    Description: An unhandled exception occurred during the execution of the
    current web request. Please review the stack trace for more information about
    the error and where it originated in the code.

    Exception Details: System.Runtime.InteropServices.COMException: Unable to
    update the password. The value provided as the current password is incorrect.

    Source Error:

    Line 303: return ((int)((Object[]) ctx.AccessCheck("access check", scopes,
    operations, names, values, null, null, null))[0] == 0);


    Stack Trace:


    [COMException (0x8007052b): Unable to update the password. The value
    provided as the current password is incorrect.]
    AzRoles.IAzClientContext.AccessCheck(String bstrObjectName, Object
    varScopeNames, Object varOperations, Object varParameterNames, Object
    varParameterValues, Object varInterfaceNames, Object varInterfaceFlags,
    Object varInterfaces) +0


    "
    curry Guest

  2. Similar Questions and Discussions

    1. Authorization Manager, ASP.NET, possible memory Leak
      We are using Authorization Manager in an ASP.NET application. We are using Microsoft.Interop.Security.AzRoles. We appear to have a memory leak when...
    2. Authorization Problem
      I have an asp page with just Integrated Windows authentication set. It works fine if it is accessed with just the server name, but it prompts...
    3. authorization problem for protected dir
      I have started to upload a piece of a web app (ASP.NET and C#) which worked FINE on my localhost server. I am using Forms Authentication linked to...
    4. Authorization Manager Interop availability (azroles)
      I read Keith Brown's article on utilizing AzMan in .NET <reflink>http://msdn.microsoft.com/msdnmag/issues/03/11/Aut horizationManager</reflink>. I...
    5. MySQL 4.1 authorization problem
      Hello! I tried to connect my script with MySQL 4.1 database and everything is Ok if a user have no password. When I connect to db by user with...
  3. #2

    Default Re: Problem using Authorization Manager

    Hi Mats,
    I'm experiencing the same problem. Have you found a solution for this?
    I appreciate any help you can give...

    Thanks,
    Arnie
    > Hi - help please!
    >
    > I've successfully implemented authorization in an asp.net web application
    > using Authorization Manager, or AzMan (shipping with Windows Server 2003
    > Administration Tools).
    >
    > Great tool!
    >
    > However, now I wanted to get that little extra out of this tool, and start
    > using dynamic application groups (LDAP-groups). Here I get problems. I have
    > tried with the simplest LDAP query like "(department = sales)".
    >
    > If on any call to myClientContext.HasAccess(), the possibile membership of a
    > dynamic group must be evaluated to determine access, asp.net returns the
    > error information listed below to my browser:
    >
    > Thanks for any hints!!!!!!
    >
    > Best regards,
    > Mats
    >
    >
    > "
    > Unable to update the password. The value provided as the current password is
    > incorrect.
    >
    >
    > Description: An unhandled exception occurred during the execution of the
    > current web request. Please review the stack trace for more information about
    > the error and where it originated in the code.
    >
    > Exception Details: System.Runtime.InteropServices.COMException: Unable to
    > update the password. The value provided as the current password is incorrect.
    >
    > Source Error:
    >
    > Line 303: return ((int)((Object[]) ctx.AccessCheck("access check", scopes,
    > operations, names, values, null, null, null))[0] == 0);
    >
    >
    > Stack Trace:
    >
    >
    > [COMException (0x8007052b): Unable to update the password. The value
    > provided as the current password is incorrect.]
    > AzRoles.IAzClientContext.AccessCheck(String bstrObjectName, Object
    > varScopeNames, Object varOperations, Object varParameterNames, Object
    > varParameterValues, Object varInterfaceNames, Object varInterfaceFlags,
    > Object varInterfaces) +0
    >
    >
    > "
    User submitted from AEWNET ([url]http://www.aewnet.com/[/url])
    aarguna 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