gpt4 book ai didi

c# - ServiceStack - 如何在一项服务中托管多个版本化的端点?

转载 作者:太空宇宙 更新时间:2023-11-03 11:11:49 25 4
gpt4 key购买 nike

我在哪里

我正在尝试将某些 WCF 服务转换为使用 ServiceStack。在大多数情况下,它实现了我想要的,但肯定存在差异。例如,对于 WCF,我有类似的东西:

interface IMethod1{ ResultDTO Method1(InputDTO input); }
interface IMethod2{ ResultDTO Method2(InputDTO input); }
interface IMethod3{ ResultDTO Method3(InputDTO input); }

interface IMyService : IMethod1, IMethod2, IMethod3

然后实现:

public class MyService : ServiceBase, IMyService { /*  ... */ }

我在哪里

对于 ServiceStack,它更像是:

public class Method1{
// parameters for method as properties
}
public class Method2{
// parameters for method as properties
}
public class Method3{
// parameters for method as properties
}

我尝试了各种方法,最近遇到的死胡同是:

public class MyServiceHost<T> : AppHostBase
{
public MyServiceHost(string version)
: base("My Service v" + version, typeof(T).Assembly)
{ }

public override void Configure(Funq.Container container){
Routes.AddFromAssembly(typeof(T).Assembly);
}
}

protected void Application_Start(object sender, EventArgs e) {
new MyServiceHost<Foo.Bar.V0101.MyService>("1.1").Init();
new MyServiceHost<Foo.Bar.V0102.MyService>("1.2").Init();
new MyServiceHost<Foo.Bar.V0201.MyService>("2.1").Init();
}

它提示 AppHost 已经初始化。


我想去的地方

我想揭露这样的事情:

http://www.sandwich.com/example/v0101/sandwichservice.wsdl
http://www.sandwich.com/example/v0102/sandwichservice.wsdl
http://www.sandwich.com/example/v0201/sandwichservice.wsdl

http://www.sandwich.com/example/sandwich_v0101.wsdl
http://www.sandwich.com/example/sandwich_v0102.wsdl
http://www.sandwich.com/example/sandwich_v0201.wsdl

最好托管在同一个服务进程中。

那么我是否遗漏了一个简单的答案,或者我是不是从根本上错误地处理了整件事?或者简而言之:使用 ServiceStack,是否可以以及如何在同一主机服务中为版本化 Web 服务公开多个端点和 WSDL?

最佳答案

请参阅 recommended versioning strategies with ServiceStack 的答案.

您不能在 ServiceStack 中公开多个版本的 SOAP/WSDL,我们鼓励您发展相同的 DTO,这意味着没有以前的类型版本来创建旧版本的 WSDL。您需要托管旧版本的 ServiceStack 项目,以便自动生成的 WSDL 与旧类型相匹配。

您还可以获取 WSDL 的快照并静态托管它,但是新的 SOAP 端点是否接受发送旧 SOAP 版本的客户端取决于 .NET 的 WCF 消息类进行解析。但由于 SOAP 是一种脆弱的格式,YMMV。

关于c# - ServiceStack - 如何在一项服务中托管多个版本化的端点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13717028/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com