Asp.net mvc 如何使用ASP.NET MVC在Plesk主机中使用Rotativa生成PDF?

Asp.net mvc 如何使用ASP.NET MVC在Plesk主机中使用Rotativa生成PDF?,asp.net-mvc,web-config,rotativa,Asp.net Mvc,Web Config,Rotativa,我在plesk托管环境中托管了我的ASP.NET MVC应用程序。一切都很好,但除了一件事:无法在该环境中使用Rotativa生成PDF 这就是错误: 此程序被组策略阻止。有关详细信息,请与系统管理员联系 我的web.config: 我的本地服务器在ASP.NET MVC中使用Rotativa库生成PDF时运行良好,但无法在plesk主机中运行。我在互联网上找不到解决办法 我必须配置我的plesk主机吗 PD:我正在使用共享主机环境。尝试删除system.codedom标记中的所有标记,然

我在plesk托管环境中托管了我的ASP.NET MVC应用程序。一切都很好,但除了一件事:无法在该环境中使用Rotativa生成PDF

这就是错误:

此程序被组策略阻止。有关详细信息,请与系统管理员联系

我的web.config:


我的本地服务器在ASP.NET MVC中使用Rotativa库生成PDF时运行良好,但无法在plesk主机中运行。我在互联网上找不到解决办法

我必须配置我的plesk主机吗


PD:我正在使用共享主机环境。

尝试删除system.codedom标记中的所有标记,然后添加或要求主机提供商检查信任级别并将其设置为“完全”。完成,但不起作用。
    <?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  https://go.microsoft.com/fwlink/?LinkId=301880
  -->
<configuration>
  <configSections>
        <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </configSections>
  <appSettings>
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    <add key="owin:AutomaticAppStartup" value="true" />
  </appSettings>
  <system.web>

    <trust level="Full" />
    <customErrors mode="Off" />
    
    <compilation debug="true" targetFramework="4.7.2" />
    <httpRuntime targetFramework="4.7.2" />
  </system.web>
  
  <system.webServer>

    <handlers>
      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
      <remove name="OPTIONSVerbHandler" />
      <remove name="TRACEVerbHandler" />
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
    
    <!--<httpErrors errorMode="Custom" existingResponse="Replace">
      <remove statusCode="404" />
      <error statusCode="404" responseMode="ExecuteURL" path="/Error/PageNotFound" />
    </httpErrors>-->
    
  </system.webServer>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" />
        <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
        <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-5.2.7.0" newVersion="5.2.7.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  
  
  <entityFramework>
    <contexts>
      <context type="CapaBaseDeDatos.Data.Context, CapaBaseDeDatos">
        <databaseInitializer type="CapaBaseDeDatos.Data.DatabaseInitializer, CapaBaseDeDatos" />
      </context>
    </contexts>

    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
  <system.codedom>
    <compilers>
      
    </compilers>
  </system.codedom>
</configuration>