建立 WS-I 基本配置檔 1.1 互通服務
若要設定 WCF 服務端點與 ASP.NET Web 服務用戶端互通:
使用 System.ServiceModel.BasicHttpBinding 類型作為服務端點的系結類型。
請勿在服務端點上使用回呼和會話合約功能或交易行為
您可以選擇性地在繫結上啟用 HTTPS 和傳輸層級客戶端驗證的支援。
BasicHttpBinding 類別的下列功能需要 WS-I Basic Profile 1.1 以外的功能:
訊息傳輸最佳化機制(MTOM)訊息編碼由 BasicHttpBinding.MessageEncoding 屬性控制。 將此屬性保留為預設值 WSMessageEncoding.Text,以避免使用 MTOM。
由 BasicHttpBinding.Security 值控制的訊息安全性提供符合 WS-I 基本安全設定檔案 1.0 的 WS-Security 支援。 將此屬性保留為預設值 SecurityMode.Transport,以不啟用 WS-Security。
若要讓 WCF 服務的元數據可供 ASP.NET 使用,請使用 Web 服務用戶端產生工具:Web 服務描述語言工具(Wsdl.exe)、Web 服務探索工具(Disco.exe),以及在 Visual Studio 中 新增 Web 參考 功能。 啟用元數據發行。 如需詳細資訊,請參閱 發佈元資料端點。
範例
說明
下列範例程式代碼示範如何新增與程序代碼中的 ASP.NET Web 服務用戶端相容的 WCF 端點,或者,在組態檔中。
程式碼
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.ServiceModel.Description;
[ServiceContract]
public interface IEcho
{
[OperationContract]
string Echo(string s);
}
public class MyService : IEcho
{
public string Echo(string s)
{
return s;
}
}
class Program
{
static void Main(string[] args)
{
string baseAddress = "http://localhost:8080/wcfselfhost/";
ServiceHost host = new ServiceHost(typeof(MyService), new Uri(baseAddress));
// Create a BasicHttpBinding instance
BasicHttpBinding binding = new BasicHttpBinding();
// Add a service endpoint using the created binding
host.AddServiceEndpoint(typeof(IEcho), binding, "echo1");
host.Open();
Console.WriteLine($"Service listening on {baseAddress} . . .");
Console.ReadLine();
host.Close();
}
}
Imports System.Collections.Generic
Imports System.Text
Imports System.ServiceModel
Imports System.ServiceModel.Description
<ServiceContract()> _
Public Interface IEcho
<OperationContract()> _
Function Echo(ByVal s As String) As String
End Interface
Public Class MyService
Implements IEcho
Public Function Echo(ByVal s As String) As String Implements IEcho.Echo
Return s
End Function
End Class
Friend Class Program
Shared Sub Main(ByVal args() As String)
Dim baseAddress = "http://localhost:8080/wcfselfhost/"
Dim host As New ServiceHost(GetType(MyService), _
New Uri(baseAddress))
' Add a service endpoint using the created binding
With host
.AddServiceEndpoint(GetType(IEcho), _
New BasicHttpBinding(), _
"echo1")
.Open()
Console.WriteLine("Service listening on {0} . . .", _
baseAddress)
Console.ReadLine()
.Close()
End With
End Sub
End Class
<configuration>
<system.serviceModel>
<services>
<service name="MyService" behaviorConfiguration="HttpGetMetadata">
<endpoint address="echo2" contract="IEcho" binding="basicHttpBinding" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="HttpGetMetadata">
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
另請參閱
- 與 ASP.NET Web 服務 的互作性