1

javascript を使用して WCF Web サービス メソッドに ajax GET 要求を作成しようとしています。要求は毎回 400 "Bad Request" エラーで返されます。しかし、WCF テスト クライアントを介して同じ Web サービス メソッドを呼び出すと、正しい結果が返されます。

また、javascript を介した ajax 呼び出しは、GET 要求と POST 要求の両方で不正な要求エラーを返します。

[WebGet] 属性を Web サービス メソッドに追加しましたが、エラーが引き続き発生します。

これが私のjavascriptメソッドとajax呼び出しです:

function Getdata()
{
var methodUrl = serverUrl + "/GetData";
      $.ajax({
    async: false,
                 type: "GET",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    url: methodUrl,
    beforeSend: function (XMLHttpRequest) {
    //ensures the results will be returned as JSON.
    XMLHttpRequest.setRequestHeader("Accept", "application/json");
    },
    success: function (data) {

    },
    error: function (XmlHttpRequest, textStatus, errorThrown) {
        alert("ERROR: GetData() Check your browsers javascript console for more details." + " \n XmlHttpRequest: " + XmlHttpRequest + " \n textStatus: " + textStatus + " \n errorThrown: " + errorThrown);
    }
});
}

ここで、serverUrl の形式は「http://hostname:portnumber/webServiceProxy.svc」です。

javascript を介して呼び出されたときに要求が「Bad Request」エラーを返し、WCF テスト クライアントを介して呼び出されたときに完全に機能する理由は何ですか? 任意の入力をいただければ幸いです。ありがとうございました!

また、WCF テスト クライアントから送信されたリクエストと、Fiddler を使用した AJAX リクエストから送信されたリクエストを比較しました。

WCF テスト クライアント リクエスト:

POST http://hostname:portnumber/WebServiceProxy.svc HTTP/1.1
Content-Type: text/xml; charset=utf-8
SOAPAction: "http://tempuri.org/IWebServiceProxy/GetData"
Host: hostname:portnumber
Content-Length: 144
Expect: 100-continue
Accept-Encoding: gzip, deflate

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><GetData xmlns="http://tempuri.org/"/></s:Body></s:Envelope>

私のAJAXリクエスト:

GET http://hostname:portnumber/WebServiceProxy.svc/GetData HTTP/1.1
Content-Type: application/json; charset=utf-8
Accept-Language: en-us
Referer: http://hostname/OrgName/WebResources/resourceName?pagemode=iframe
Accept: application/json
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; InfoPath.3; .NET4.0E; BOIE9;ENUS)

ホスト: ホスト名:ポート番号 接続: キープアライブ

したがって、私が見る最大の違いは、WCF テスト クライアントが POST 要求を作成し、SOAP エンベロープで Web サービス メソッド名を送信するのに対し、私の ajax 要求は GET であり、Web サービス メソッド名を URL に追加することです。これらのリクエストを見て、正しく機能させるために ajax 呼び出しを変更する方法についてのアイデアはありますか? ありがとう!

web.config ファイルの内容を追加するための編集:

<?xml version="1.0"?>

<system.web>
    <compilation debug="true" targetFramework="4.0" />
    <customErrors mode="Off" />
</system.web>

<system.serviceModel>
    <bindings>
        <wsHttpBinding>
            <binding name="WSHttpBinding_IDDSWCFService" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
                allowCookies="false">
                <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <reliableSession ordered="true" inactivityTimeout="00:10:00"
                    enabled="false" />
                <security mode="Message">
                    <transport clientCredentialType="Windows" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="Windows" negotiateServiceCredential="true"
                        algorithmSuite="Default" />
                </security>
            </binding>
        </wsHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://machinename:8080/DDSWCFService" binding="wsHttpBinding"
            bindingConfiguration="WSHttpBinding_IDDSWCFService" contract="WCFService.IDDSWCFService"
            name="WSHttpBinding_IDDSWCFService">
            <identity>

            </identity>
        </endpoint>
    </client>
    <behaviors>
        <serviceBehaviors>

            <behavior>
                <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
                <serviceMetadata httpGetEnabled="true"/>
                <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
                <serviceDebug includeExceptionDetailInFaults="true"/>
            </behavior>

        </serviceBehaviors>

        <endpointBehaviors>
            <behavior name="webHttpBehavior">
                <enableWebScript/>
                <webHttp helpEnabled="true"/>
            </behavior>
        </endpointBehaviors>

    </behaviors>
</system.serviceModel>

4

3 に答える 3

1

WCF テスト クライアント リクエストと私の ajax リクエストの最大の違いは、GET リクエストを作成し、URL で Web サービス メソッドの名前を渡し、WCF テスト クライアントがポスト リクエストを作成して Web で送信することです。 SOAP エンベロープのサービス メソッド名。

サービスが SOAP バインディングで構成されており、AJAX Get 要求を処理できないようです。

WebHttpBindingJS からサービスを利用したい場合に使用する必要があります。

  1. [WebGet]操作を取得した属性を追加
  2. エンドポイントのバインディングを変更します -binding="webHttpBinding"
  3. エンドポイントの動作を構成する

サンプルはインターネット上にたくさんあります。たとえば、これはhttp://bendewey.wordpress.com/2009/11/24/using-jsonp-with-wcf-and-jquery/

<endpointBehaviors>
  <behavior name="webBehavior">
    <webHttp />
  </behavior>
</endpointBehaviors>

サービス セクションを web.config ファイルに追加する必要があります。あなたが彼に言わない限り、ホストはあなたが使いたいと思っていることを知りませんwebHttpBinding

<services>
  <service name="Service1">
    <endpoint address=""
              binding="webHttpBinding"
              contract="IService1" />
  </service>
</services>

以下のリンクは、IIS でサービスをホストするための詳細な手順を提供します (をwsHttpBinding参照)。webHttpBinding代わりに使用する必要があるだけですwsHttpBinding- http://msdn.microsoft.com/en-us/library/ms733766.aspx

于 2012-06-12T14:13:07.683 に答える
0

すべての応答に感謝します。驚いたことに、私はエラーを修正することができましたが、解決策は私が期待していたものではありませんでした. Service1.svc ファイルのマークアップに次の属性を追加する必要がありました。

Factory="System.ServiceModel.Activation.WebScriptServiceHostFactory"

プロジェクトのビルド時にこれがファイルに自動的に追加されなかった理由はわかりませんが、それが原因です。これで、ブラウザからも AJAX リクエストからも問題なく Test メソッドを呼び出すことができます。

みんなの助けに感謝します。

于 2012-06-20T14:51:15.587 に答える