Problems after changing Identity Application Pool Settings (sn-yycbk.dll)

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

  1. #1

    Default Problems after changing Identity Application Pool Settings (sn-yycbk.dll)

    Applies to: W2K3 Server / IIS6 / Default Isolation Mode / ASP.NET 1.1

    We wish to run our ASPNET worker process in a domain account so as to use
    RDBMS trusted connections.
    We have created a domain account for this purpose.
    We have added this domain account to the W2K3 Server
    machine IIS_WPG group as per
    ([url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/ht[/url]
    ml/cpconidentityapplicationpoolsettings.asp).

    We use this machine to host some WebServices.

    Our WebService apps write to 2 directories on the web service machines, so
    we've added granted IIS_WPG full-control to those directories.

    I changed the Application Pool Identity to Configurable, to use the account,
    then ran iisreset at the command line.

    However, we execute the web service APIs we get unexpected errors. There
    are no errors in the machine's event log, but the WebUI callers of the Web
    Service APIs get SoapExceptions with an error message I've never seen
    before:

    [Server was unable to process request. --> File or assembly name
    sn-yycbk.dll, or one of its dependencies, was not found.]

    I've also seen the file name 'c6ipnd1t.dll' and 'vlk9wnbd.dll' referenced.

    Those file names seem like they could be ASP.NET generated assemblies, but I
    cannot find them in %windir%\Microsoft.net\Framework\v1.1.4322\Tempora ry
    ASP.NET Files, or any of its subdirectories. According to TaskManager, the
    w3wp.exe process is indeed running under our domain account, as per the
    modified configuration.

    Can someone provide any clues as to what I can do to clear up this issue?

    Thanks in advance,

    Howard Hoffman




    Howard Hoffman Guest

  2. Similar Questions and Discussions

    1. Windows authentication breaks after configuring application pool identity
      Hi group I run IIS 6.0 on W2k3 being an Active Directory Controller in a test lab. Create a virtual directory 'test' with Windows authentication...
    2. SQL / IIS Application Pool Identity
      Hi, I've got an ASP.NET web application which uses Windows security with a SQL Server database. I want to use the application pool identity to...
    3. Impersonate IIS Application Pool Identity
      How do I get an IIS application pool identity, and create a Windows Impersonation Context from it? Troy
    4. Obtaining Application Pool Identity in Inpersonation Mode
      I have an ASP.Net application running on IIS 6.0 that is configured to impersonate the identity of the user who is accessing the page. I am...
    5. ASP Error 0178 and Application Pool Settings
      I have an ASP page in an "alternate" website (e.g. - not the default site) in IIS (Win2k3) which does a simple Server.CreateObject() call. If the...
  3. #2

    Default RE: Problems after changing Identity Application Pool Settings (sn-yycbk.dll)

    Adding the new account to IIS_WPG is only part of the story. Additional security settings are needed for ASP.NET

    Verify that your account (or IIS_WPG) has the following privileges (via local security policy)
    - Access this computer from the network
    - Deny logon locally
    - Log on as a batch job
    - Log on as a servic

    If this does not help, below are a couple of links with more comprehensive information e.g. on required NTFS permissions

    How To: Create a Custom Account to Run ASP.NET (IIS 5.0 specific !!!! - you will need to improvise
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/SecNetHT01.as[/url]

    INFO: Default Permissions and User Rights for IIS 6.
    [url]http://support.microsoft.com/default.aspx?kbid=81261[/url]


    richlm 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