2010-11-22 11 views
0

Silverlight Business Applicationで認証を手伝ってください。 テンプレート(VS2010、Silverlight 4)を使用してSilverlight Business Applicationプロジェクトを開きました。私は特別なコードを追加せず、Web.configにgodaddy SQLサーバー接続エントリのみを追加しました。プロジェクトを公開し、godaddyサーバーにFTPします。Silverlightビジネスアプリケーションをホストする - Godaddy

"IISは認証スキーム「Basic、Anonymous」を指定していますが、バインドでは厳密に1つの認証スキームの指定のみがサポートされています... IIS設定を変更して1つの認証スキームしか使用しないようにしてください。

godaddyに連絡して、基本認証スキームを無効にしました。私はもう一度試して、同じメッセージを得ました。私はgodaddyに再度連絡します(保存ボタンを押すのを忘れたかもしれません)。 "IISが指定した認証スキーム「IntegratedWindowsAuthentication、Anonymous」ですが、バインディングはちょうど1つの認証スキームの指定しかサポートしていません..." 私はこの仕事を得るために私の最後に何かをするために行方不明ですか?助けてください!ここにweb.configファイルがあります:

<configuration> 
<configSections> 
<system.web> 
    <customErrors mode="Off"/> 
    <httpModules> 
     <add name="DomainServiceModule" 
     type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, 
     System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, 
     PublicKeyToken=31BF3856AD364E35" /> 
    </httpModules> 
    <compilation debug="true" targetFramework="4.0" /> 
    <roleManager enabled="true"/> 
    <authentication mode="Forms">  
    </authentication> 
    <profile> 
     <properties> 
     <add name="FriendlyName"/> 
     </properties> 
    </profile> 
</system.web> 
<system.serviceModel> 
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /> 
</system.serviceModel> 
<connectionStrings> 
    <remove name="LocalSqlServer" /> 
    <add name="LocalSqlServer" connectionString="Data Source=myhost; Initial Catalog=mydatabase; User ID=myusername; 
    Password='mypassowrd';" providerName="System.Data.SqlClient"/> 
</connectionStrings> 
</configuration> 

答えて

0

認証スキームを匿名のみに設定するように指示します。

関連する問題