web-dev-qa-db-ja.com

WCFサービスのREST / SOAP個のエンドポイント

私はWCFサービスを持っていて、それをRESTfulサービスとSOAPサービスの両方として公開したいと思います。誰かが前にこのようなことをしたことがありますか?

415
Wessam Zeidan

2つの異なるエンドポイントでサービスを公開することができます。 SOAPはSOAPをサポートするバインディングを使用できます。 basicHttpBinding、RESTfulなものはwebHttpBindingを使用できます。 RESTサービスはJSONになると思います。その場合は、次の動作設定で2つのエンドポイントを設定する必要があります。

<endpointBehaviors>
  <behavior name="jsonBehavior">
    <enableWebScript/>
  </behavior>
</endpointBehaviors>

シナリオのエンドポイント設定の例は次のとおりです。

<services>
  <service name="TestService">
    <endpoint address="soap" binding="basicHttpBinding" contract="ITestService"/>
    <endpoint address="json" binding="webHttpBinding"  behaviorConfiguration="jsonBehavior" contract="ITestService"/>
  </service>
</services>

だから、サービスはで利用可能になります

操作規約に[WebGet]を適用してRESTfulにします。例えば.

public interface ITestService
{
   [OperationContract]
   [WebGet]
   string HelloWorld(string text)
}

RESTサービスがJSONに含まれていない場合、操作のパラメータに複合型を含めることはできません。

SOAPおよびRESTful POX(XML)の投稿への返信

戻り形式としての普通のXMLでは、これはSOAPとXMLの両方で機能する例です。

[ServiceContract(Namespace = "http://test")]
public interface ITestService
{
    [OperationContract]
    [WebGet(UriTemplate = "accounts/{id}")]
    Account[] GetAccount(string id);
}

RESTに対するPOXの動作普通のXML

<behavior name="poxBehavior">
  <webHttp/>
</behavior>

エンドポイント

<services>
  <service name="TestService">
    <endpoint address="soap" binding="basicHttpBinding" contract="ITestService"/>
    <endpoint address="xml" binding="webHttpBinding"  behaviorConfiguration="poxBehavior" contract="ITestService"/>
  </service>
</services>

サービスはで利用可能になります

RESTリクエストブラウザで試してみてください、

http://www.example.com/xml/accounts/A123

サービス参照を追加した後のSOAP serviceに対するSOAP要求クライアントエンドポイント設定

  <client>
    <endpoint address="http://www.example.com/soap" binding="basicHttpBinding"
      contract="ITestService" name="BasicHttpBinding_ITestService" />
  </client>

c#で

TestServiceClient client = new TestServiceClient();
client.GetAccount("A123");

もう1つの方法は、2つの異なるサービス契約を公開し、それぞれに特定の構成を適用することです。これはコードレベルでいくつかの重複を生成するかもしれませんが、結局のところ、あなたはそれを機能させることを望みます。

577
Ray Lu

この投稿には既に「コミュニティウィキ」による非常に良い回答があり、私はRick StrahlのWebブログも参照することをお勧めします。WCFRestについての多くの良い投稿があります this .

私はこの種のMyServiceサービスを取得するために両方を使いました...それから私はjQueryからのRESTインターフェースまたはJavaからのSOAPを使うことができます。

これは私のWeb.Configからです:

<system.serviceModel>
 <services>
  <service name="MyService" behaviorConfiguration="MyServiceBehavior">
   <endpoint name="rest" address="" binding="webHttpBinding" contract="MyService" behaviorConfiguration="restBehavior"/>
   <endpoint name="mex" address="mex" binding="mexHttpBinding" contract="MyService"/>
   <endpoint name="soap" address="soap" binding="basicHttpBinding" contract="MyService"/>
  </service>
 </services>
 <behaviors>
  <serviceBehaviors>
   <behavior name="MyServiceBehavior">
    <serviceMetadata httpGetEnabled="true"/>
    <serviceDebug includeExceptionDetailInFaults="true" />
   </behavior>
  </serviceBehaviors>
  <endpointBehaviors>
   <behavior name="restBehavior">
    <webHttp/>
   </behavior>
  </endpointBehaviors>
 </behaviors>
</system.serviceModel>

そしてこれが私のサービスクラスです(.svc-codebehind、インターフェースは不要です)。

    /// <summary> MyService documentation here ;) </summary>
[ServiceContract(Name = "MyService", Namespace = "http://myservice/", SessionMode = SessionMode.NotAllowed)]
//[ServiceKnownType(typeof (IList<MyDataContractTypes>))]
[ServiceBehavior(Name = "MyService", Namespace = "http://myservice/")]
public class MyService
{
    [OperationContract(Name = "MyResource1")]
    [WebGet(ResponseFormat = WebMessageFormat.Xml, UriTemplate = "MyXmlResource/{key}")]
    public string MyResource1(string key)
    {
        return "Test: " + key;
    }

    [OperationContract(Name = "MyResource2")]
    [WebGet(ResponseFormat = WebMessageFormat.Json, UriTemplate = "MyJsonResource/{key}")]
    public string MyResource2(string key)
    {
        return "Test: " + key;
    }
}

実際にはJsonまたはXmlのみを使用していますが、両方ともデモ目的でここにあります。これらはデータを取得するためのGETリクエストです。データを挿入するには、属性付きのメソッドを使用します。

[OperationContract(Name = "MyResourceSave")]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, UriTemplate = "MyJsonResource")]
public string MyResourceSave(string thing){
    //...
36
Tuomas Hietanen

単一のWebサービスを開発し、それをさまざまなエンドポイント(つまり、XML、JSON、CSV、HTMLのアウトプットを含むSOAP + REST)でホストするだけの場合。また、ServiceStackを使用することも検討する必要があります。 SOAPとRESTの両方のエンドポイントで、設定は不要です。

Hello World の例は、単純なwith serviceを作成する方法を示しています(設定不要)。

public class Hello {
    public string Name { get; set; }
}

public class HelloResponse {
    public string Result { get; set; }
}

public class HelloService : IService
{
    public object Any(Hello request)
    {
        return new HelloResponse { Result = "Hello, " + request.Name };
    }
}

他の設定は不要で、このサービスはすぐにRESTで利用可能になります。

また、 わかりやすいHTML出力 が組み込まれています(を持つHTTPクライアントで呼び出された場合):text/html ブラウザなど、サービスの出力を視覚化することができます。

さまざまなREST動詞の処理も些細なことです。C#1ページの完全なRESTサービスCRUDアプリです(WCFを構成するのに必要なものより少ない)。

25
mythz

MSDNは今これについての記事を持っているようです:

https://msdn.Microsoft.com/ja-jp/library/bb412196(v = vs.110).aspx

イントロ:

デフォルトでは、Windows Communication Foundation(WCF)はSOAPクライアントだけがエンドポイントを利用できるようにします。 「方法:基本的なWCF Web HTTPサービスを作成する」で、エンドポイントが非SOAPクライアントに利用可能になります。 Webエンドポイントとしても_ ​​SOAPエンドポイントとしても、同じ契約を両方の方法で利用可能にしたい場合があります。このトピックでは、これを行う方法の例を示します。

6
FMFF

動作設定をRESTの終点に定義する必要があります。

<endpointBehaviors>
  <behavior name="restfulBehavior">
   <webHttp defaultOutgoingResponseFormat="Json" defaultBodyStyle="Wrapped" automaticFormatSelectionEnabled="False" />
  </behavior>
</endpointBehaviors>

そしてまたサービスへ

<serviceBehaviors>
   <behavior>
     <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="false" />
   </behavior>
</serviceBehaviors>

動作の後、次のステップはバインディングです。たとえば、basicHttpBindingをSOAPエンドポイントに、webHttpBindingをRESTに指定します。 。

<bindings>
   <basicHttpBinding>
     <binding name="soapService" />
   </basicHttpBinding>
   <webHttpBinding>
     <binding name="jsonp" crossDomainScriptAccessEnabled="true" />
   </webHttpBinding>
</bindings>

最後に、サービス定義で2つのエンドポイントを定義しなければなりません。エンドポイントのaddress = ""に注意してください。どこにREST serviceを指定する必要はありません。

<services>
  <service name="ComposerWcf.ComposerService">
    <endpoint address="" behaviorConfiguration="restfulBehavior" binding="webHttpBinding" bindingConfiguration="jsonp" name="jsonService" contract="ComposerWcf.Interface.IComposerService" />
    <endpoint address="soap" binding="basicHttpBinding" name="soapService" contract="ComposerWcf.Interface.IComposerService" />
    <endpoint address="mex" binding="mexHttpBinding" name="metadata" contract="IMetadataExchange" />
  </service>
</services>

サービスのインタフェースでは、その属性を使用して操作を定義します。

namespace ComposerWcf.Interface
{
    [ServiceContract]
    public interface IComposerService
    {
        [OperationContract]
        [WebInvoke(Method = "GET", UriTemplate = "/autenticationInfo/{app_id}/{access_token}", ResponseFormat = WebMessageFormat.Json,
            RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped)]
        Task<UserCacheComplexType_RootObject> autenticationInfo(string app_id, string access_token);
    }
}

すべてのパーティーに参加して、これは私たちのWCF system.serviceModel定義になります。

<system.serviceModel>

  <behaviors>
    <endpointBehaviors>
      <behavior name="restfulBehavior">
        <webHttp defaultOutgoingResponseFormat="Json" defaultBodyStyle="Wrapped" automaticFormatSelectionEnabled="False" />
      </behavior>
    </endpointBehaviors>
    <serviceBehaviors>
      <behavior>
        <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
        <serviceDebug includeExceptionDetailInFaults="false" />
      </behavior>
    </serviceBehaviors>
  </behaviors>

  <bindings>
    <basicHttpBinding>
      <binding name="soapService" />
    </basicHttpBinding>
    <webHttpBinding>
      <binding name="jsonp" crossDomainScriptAccessEnabled="true" />
    </webHttpBinding>
  </bindings>

  <protocolMapping>
    <add binding="basicHttpsBinding" scheme="https" />
  </protocolMapping>

  <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />

  <services>
    <service name="ComposerWcf.ComposerService">
      <endpoint address="" behaviorConfiguration="restfulBehavior" binding="webHttpBinding" bindingConfiguration="jsonp" name="jsonService" contract="ComposerWcf.Interface.IComposerService" />
      <endpoint address="soap" binding="basicHttpBinding" name="soapService" contract="ComposerWcf.Interface.IComposerService" />
      <endpoint address="mex" binding="mexHttpBinding" name="metadata" contract="IMetadataExchange" />
    </service>
  </services>

</system.serviceModel>

両方のエンドポイントをテストするには、WCFClientからSOAPを使用します。 PostManからREST

2
Jailson Evora

これは私がそれを機能させるためにしたことです。あなたが置くことを確認してください
エンドポイント動作内のwebHttp automaticFormatSelectionEnabled = "true"

[ServiceContract]
public interface ITestService
{

    [WebGet(BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "/product", ResponseFormat = WebMessageFormat.Json)]
    string GetData();
}

public class TestService : ITestService
{
    public string GetJsonData()
    {
        return "I am good...";
    }
}

内部サービスモデル

   <service name="TechCity.Business.TestService">

    <endpoint address="soap" binding="basicHttpBinding" name="SoapTest"
      bindingName="BasicSoap" contract="TechCity.Interfaces.ITestService" />
    <endpoint address="mex"
              contract="IMetadataExchange" binding="mexHttpBinding"/>
    <endpoint behaviorConfiguration="jsonBehavior" binding="webHttpBinding"
              name="Http" contract="TechCity.Interfaces.ITestService" />
    <Host>
      <baseAddresses>
        <add baseAddress="http://localhost:8739/test" />
      </baseAddresses>
    </Host>
  </service>

エンドポイントの動作

  <endpointBehaviors>
    <behavior name="jsonBehavior">
      <webHttp automaticFormatSelectionEnabled="true"  />
      <!-- use JSON serialization -->
    </behavior>
  </endpointBehaviors>
0