目标
返回结果和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);
}