Jag har ett mycket enkel webform som har en textbox och en knapp. Detta visas utan problem. Nu implementerar jag kod för att anropa ett COM gränsnitt och får "Access is denied" från IIS. Jag har gjort en del inställningar i IIS'en, jag har tillåtelse att köra script och exekveringsbara filer, app. protection är "Medium". Under "Directory Security" har jag angivit möjlighet att logga in annonymt (och angivit en användare med administratörs rättigheter). Jag har också kopplat på "Basic authentication" men inget hjälper. Frågan är om du verkligen får felet från IIS, kan kanske vara Garp.Application som ger dig felet? Vad gör komponenten? SKulle du kunna klippa ut hela felmedelandet du får och slänga in det här i forumet? Här kommer felmeddelandet i sin helhet. Garp är vår egen applikation så den har jag full koll på och vi har inte denna typ av säkerhetshantering via COM gränssnittet Tydligen en bugg. Den här taggen i Web.config löste mitt problem. Det finns mer att läsa på KB Q315904. ASP.NET/IIS och Access is denied
Det mest irriterande är att jag har lyckats vid en tidigare installation (jag har installerat om VS.NET).
Koden jag har i Page_Load, det är bara dessa två rader och såklart är det när jag försöker skapa objektet som det "skiter sig"
<code>
Dim objGarp as Garp.Application
objGarp = New Garp.Application()
</code>
Vad är fel?Sv: ASP.NET/IIS och Access is denied
/Fredrik NSv: ASP.NET/IIS och Access is denied
'# ## START FELMEDDELANDE ###
Access is denied.
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.UnauthorizedAccessException: Access is denied.
The ASP.NET process is not authorized to access the requested resource. For security reasons the default ASP.NET process identity is '{machinename}\ASPNET', which has limited privileges. Consider granting access rights to the resource to the ASP.NET process identity.
To grant ASP.NET write access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the "{machinename}\ASPNET" user. Highlight the ASP.NET account, and check the Write box in the Allow column.
Source Error:
Line 22: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Line 23: Dim objGarp As Garp.Application
Line 24: objGarp = New Garp.Application()
Line 25: End Sub
Line 26:
Source File: c:\inetpub\wwwroot\GarpASP\WebForm1.aspx.vb Line: 24
Stack Trace:
[UnauthorizedAccessException: Access is denied.]
GarpASP.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\GarpASP\WebForm1.aspx.vb:24
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()
'### SLUT FELMEDDELANDE ###Sv: ASP.NET/IIS och Access is denied
<identity impersonate="true" />