1

こんにちは、会員申請で「会員にメールを送る」機能を実現したところ、以下の問題に遭遇しました。私はいくつかの調査を行い、追加しました

             <system.web>
             <securityPolicy>
                <trustLevel name="Full" policyFile="internal"/>
             </securityPolicy>
            </system.web> 

私のWeb.configに追加してから、サーバーに再度デプロイしましたが、問題はまだ存在します。何か案は?前もって感謝します。

   Server Error in '/TestApp' Application.

   Security Exception

   Description: The application attempted to perform an operation not allowed by the security policy.  To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file. 

   Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.

   Source Error: 

   An unhandled exception was generated during the execution of the current web request. Information  regarding the origin and location of the exception can be identified using the exception stack trace below.
4

1 に答える 1

1

電子メールを送信するときに、許可されていない SMTP ポート番号を指定している可能性があります。

これが私が話していることの例です: SecurityException: タイプ 'System.Net.Mail.SmtpPermission' のアクセス許可の要求

于 2013-08-01T21:38:21.143 に答える