13

fx3.5 で WCF を使用して JSONP Web サービスを学習および構築してきました。.NET ASMX - Returning Pure JSON?で行った試行の一部を読むことができます。ようやくサンプルを実行できるようになりましたが、今はそれを自分のアプリに組み込んでいます。

サービスの web.config:

  <system.serviceModel>
    <behaviors>
      <endpointBehaviors>
        <behavior name="JsonpServiceBehavior">
          <webHttp />
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <services>
      <service name="RivWorks.Web.Service.CustomerService">
        <endpoint address=""
                  binding="customBinding"
                  bindingConfiguration="jsonpBinding"
                  behaviorConfiguration="JsonpServiceBehavior"
                  contract="RivWorks.Web.Service.ICustomerService" />
      </service>
      <service name="RivWorks.Web.Service.NegotiateService">
          <endpoint address=""
                  binding="customBinding"
                  bindingConfiguration="jsonpBinding"
                  behaviorConfiguration="JsonpServiceBehavior"
                  contract="RivWorks.Web.Service.INegotiateService" />
      </service>
    </services>
    <bindings>
      <customBinding>
        <binding name="jsonpBinding" >
          <jsonpMessageEncoding />
          <httpTransport manualAddressing="true"/>
        </binding>
      </customBinding>
    </bindings>    
    <extensions>
      <bindingElementExtensions>
        <add name="jsonpMessageEncoding"
             type="RivWorks.Web.Service.JSONP.JsonpBindingExtension
                 , RivWorks.Web.Service
                 , Version=1.0.0.0
                 , Culture=neutral
                 , PublicKeyToken=null"/>
      </bindingElementExtensions>
    </extensions>
  </system.serviceModel>

次のエラーが表示されます。修正するために考えられるすべてのことを試しました。コード全体にいくつかのタイプミス (Service ではなく Service) が散らばっていることを発見しました。MSDNにあるサンプル コードを使用しています。エラーは次のとおりです。

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: The type 'RivWorks.Web.Service.JSONP.JsonpBindingExtension
                , RivWorks.Web.Service
                , Version=1.0.0.0
                , Culture=neutral
                , PublicKeyToken=null' registered for extension 'jsonpMessageEncoding' could not be loaded.

Source Error:

Line 58:  <customBinding>
Line 59:      <binding name="jsonpBinding">
Line 60:          <jsonpMessageEncoding />
Line 61:          <httpTransport manualAddressing="true" />
Line 62:      <binding>

Source File: C:\RivWorks\dev\services\web.config    Line: 60

Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3082

他に何をチェックできるかについて誰かアイデアがありますか? RivWorks.Web.Service.dll という DLL があり、ビルドされ、Web サイトの bin ディレクトリにコピーされます。サービスの Web.config は、Web サイトの Services ディレクトリにコピーされています。Web サイトの web.config に競合するものはありません。すべてのスペルの問題を確認しました。

4

1 に答える 1

17

ビルド出力にdll(RivWorks.Web.Service.dll)はありますか?

次に、(「jsonpMessageEncoding」拡張機能の場合):

type="RivWorks.Web.Service.JSONP.JsonpBindingExtension, RivWorks.Web.Service, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"

" , "とキャリッジ リターンの両方のスペースが異なることに注意してください。

その後、弦を高音でチェックします。必要な dll (RivWorks.Web.Service) を参照するコンソール exe を作成し、次のように出力します。

Console.WriteLine(
     typeof(RivWorks.Web.Service.JSONP.JsonpBindingExtension)
     .AssemblyQualifiedName);

これは、xml で必要な文字列です。この文字列に余分な空白を含めないでください。

于 2009-12-17T23:21:09.010 に答える