0

vs2012 で RESTful wcf サービスを作成しました。この sservice から Web ブラウザからアクセスできます。私のインターフェースファイルはそうです:

namespace RestService
{
    [ServiceContract]
    public interface IRestServiceImpl
    {
        [OperationContract]
        [WebInvoke(Method = "GET",
            ResponseFormat = WebMessageFormat.Xml,
            BodyStyle=WebMessageBodyStyle.Wrapped,
            UriTemplate = "xml/{id}"
            )]
        string XMLData(string id);

        [OperationContract]
        [WebInvoke(Method = "GET",
            ResponseFormat = WebMessageFormat.Json,
            BodyStyle = WebMessageBodyStyle.Wrapped,
            UriTemplate = "json/{id}"
            )]
        string JSONData(string id);

    }
}

私の設定ファイルは次のとおりです。

  <system.serviceModel>
    <services>
      <service name="RestService.RestServiceImpl" behaviorConfiguration="ServiceBehavior">
        <endpoint address="" binding="webHttpBinding" contract="RestService.IRestServiceImpl" behaviorConfiguration="web">
        </endpoint>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="ServiceBehavior">
          <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="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="false"/>
        </behavior>
      </serviceBehaviors>
      <endpointBehaviors>
        <behavior name="web">
          <webHttp/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <protocolMapping>
        <add binding="basicHttpsBinding" scheme="https" />
    </protocolMapping>    
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  </system.serviceModel>

ctr+F5 でサービスを実行すると、その URL が表示されますlocalhost:50046/RestServiceImpl.svc

そして、そのコードを Web ブラウザーに書き込むと、サービスにアクセスでき、応答が返されます。

コードは//localhost:50046/RestServiceImpl.svc/json/123 レスポンスです{"JSONDataResult":"you requested product 123"}

今私の問題は、html コードからそのサービスにアクセスすることです。そして、サービスにデータを送信し、そのサービスからの応答を受け取ります。私の単純なjqueryコードは次のとおりです。

$("input:#giris").click(function(){
    function GetCategoriesJson() {

        $.ajax(
        {
            type:"GET",
            url:"localhost:50046/RestServiceImpl.svc",
            data:"{123}",
            contentType: "application/json; charset=utf-8", 
            dataType: "json/{123}", 
            success: OnSuccessJson, 
            error: OnErrorJson
        });
        function OnSuccessJson(data, status) {
            alert("basarili")
        }
        function OnErrorJson(data, status) {
            alert("Exception");
        }
        }   
    });

私がしなければならないことと、タイプ、URL、データ、コンテンツタイプ、データタイプなどに何を書かなければならないか。助けてください私は数日間働いてきました

4

2 に答える 2

0

クライアントから呼び出すと、どのようなエラーが発生しますか?

それはWCFなので、構成の問題だと思います.configファイルでこれを試してください。

<standardEndpoint name="" helpEnabled="true" 
    automaticFormatSelectionEnabled="false" 
    defaultOutgoingResponseFormat ="Json" />

良い例を次に示します: http://www.codeproject.com/Articles/128478/Consuming-WCF-REST-Services-Using-jQuery-AJAX-Call

于 2013-02-06T08:58:50.377 に答える
0

よくわかりませんが、これを試してみてください:-

ajax 呼び出しで、URL をこれに変更します

url:"localhost:50046/RestServiceImpl.svc/json/123"

于 2013-02-07T10:43:08.080 に答える