2009-08-10 18 views
1

これは数ヶ月間ローカルで正常に動作し、サーバー(discountasp)へのデプロイメントを壊しました。私は.net 3.5とasp.net mvcで開発しています。私は以前、この同じアカウントでasp.net mvcアプリケーションを正常にホストしました(ただし、configセクションはありません)。カスタム設定セクションの設定エラー - 指定されたファイルが見つかりませんでしたか?

Configuration Error 

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 

Parser Error Message: An error occurred creating the configuration section handler for SCConfig: The system cannot find the file specified. 

Source Error: 

Line 179: 
Line 180: <SCConfig> 
Line 181: <authentication> 
Line 182:  <groups Administrators="Administrator" Auditors="Auditor" Auditor_Supervisors="Auditor Supervisor" Auditor_Externals="External Auditor" Biz_Users="Business User"/> 

Source File: E:\web\irstagelert\htdocs\web.config Line: 180 

Version Information: Microsoft .NET Framework Version:2.0.50727.3074; ASP.NET Version:2.0.50727.3074 

私はコンフィグハンドラを定義web.configファイルの一部である:

私は負荷に次のエラーを引き起こしている私のweb.configファイルで設定したカスタム設定セクションを持っています

<section name="SCConfig" type="com.lerteco.SoxCompliance.ConfigHandler.CustomTagHandler, com.lerteco.SoxCompliance.ConfigHandler"/> 

私はタイプのいくつかの異なる反復で演奏しましたが、それらはすべて上記と同じエラーメッセージを生成します。

クラスファイルの先頭には、次のとおりです。

namespace com.lerteco.SoxCompliance.ConfigHandler 
{ 

    [Flags] 
    public enum GroupCodes 
    { 
     .... 
    } 

    public class CustomTagHandler : IConfigurationSectionHandler 
    { 
     public object Create(object parent, object configContext, XmlNode section) 
     { 

そして、私はホスト上/binに/ディレクトリがcom.lerteco.SoxCompliance.ConfigHandler.dllの両方が含まれていることを確認しましたし、 .... pdbファイル。任意の助け

おかげで、 ジェームズ

+1

設定ファイルのconfigSectionsセクションとConfigHandlerクラスの残りの部分を投稿できますか? ConfigHandlerで実行時エラーが発生しているように見えます。 – Jacob

答えて

0

ヤコブは正しかったです。ハンドラファイル自体ではなく、ハンドラ内からエラーが生成されていました。

私は問題を発見するまでreturn文のコードを書いて移動しました。

具体的には、私はRSACrytpoServiceProvider()を作成しました。この投稿に記載されているエラーはRSACryptoServiceProvider CryptographicException System Cannot Find the File Specified under ASP.NETです。

James

関連する問題