2013-04-15 4 views
0

IIS7.5에 웹 사이트를 배포했습니다. 괜찮 았어. 내가 IIS6에 배포하려고 할 때 나는 CustomRoleProvider에 관한 "구성 오류"있어 (* 라인 65 *). 무슨 문제가있는 것 같습니까?IIS6에서 사용자 지정 역할 공급자를 사용할 때 고려할 사항

<roleManager enabled="true" defaultProvider="CustomRoleProvider"> 
     <providers> 
     <clear /> 
Line 65: <add name="CustomRoleProvider" type="A.B.CustomRoleProvider, A" connectionStringName="MyConnectionString" /> 
     </providers> 
</roleManager> 

오류 메시지 :

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: Exception has been thrown by the target of an invocation. 
+0

정확한 오류 메시지는 무엇을 말하는가? – sisve

+0

@SimonSvensson 질문을 업데이트했습니다. –

+1

"호출 대상에 의해 예외가 발생했습니다."는 TargetInvocationException입니다. CustomRoleProvider가 초기화 중에 예외를 throw합니다. 디버거를 연결하여 오류를 찾거나 문제가되는 코드를 추가로 고정하기 위해 많은 로깅을 구현하십시오. – sisve

답변

0
<add name="CustomRoleProvider" type="A.B.CustomRoleProvider, CustomRoleProvider.Web.Security" applicationName="/" connectionStringName="MyConnectionString" />