我正在尝试将一些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?
答案 0 :(得分:2)
请参阅recommended versioning strategies with ServiceStack的答案。
您不能在ServiceStack中公开SOAP / WSDL的多个版本,我们鼓励您发展相同的DTO,这意味着没有以前的类型版本来创建旧版本的WSDL。您需要为自动生成的WSDL托管较旧版本的ServiceStack项目,以便与旧类型匹配。
您还可以获取WSDL的快照并静态托管它,但是新SOAP端点是否接受发送旧SOAP版本的客户端是由.NET的WCF Message类进行解析。但由于SOAP是一种脆弱的格式,YMMV。