ASP.NET Core 創建 WebService

目標

返回結果和ASP.NET 創建的Webservice完全一樣,實現兼容

代碼

<ItemGroup>
  <PackageReference Include="SoapCore" Version="1.1.0.30" />
</ItemGroup>
public static void Main(string[] args)
{
    var xnm = new XmlNamespaceManager(new NameTable());
    xnm.AddNamespace("soap", "http://schemas.xmlsoap.org/soap/envelope/");
    xnm.AddNamespace("xsi", "http://www.w3.org/2001/XMLSchema-instance");
    xnm.AddNamespace("xsd", "http://www.w3.org/2001/XMLSchema");

    var builder = WebApplication.CreateBuilder(args);

    // Add services to the container.

    builder.Services.AddSoapCore();
    builder.Services.TryAddSingleton<IWebSvc, WebSvc>();
    builder.Services.AddMvc();

    var app = builder.Build();

    // Configure the HTTP request pipeline.

    app.UseRouting();
    app.UseAuthorization();
    app.UseEndpoints(endpoints =>
    {
        endpoints.UseSoapEndpoint<IWebSvc>("/WebSvc.asmx"
            , new SoapEncoderOptions()
            {
                XmlNamespaceOverrides = xnm
            }
            , SoapSerializer.DataContractSerializer
            , omitXmlDeclaration: false
            , indentXml: false);
    });

    app.Run();
}
[ServiceContract]
public interface IWebSvc
{
    [OperationContract]
    XElement Apply(string noaa);
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章