使用 Spring 对象将 ServiceRoute 添加到 RouteTable

发布于 2024-11-10 04:59:39 字数 527 浏览 1 评论 0原文

有没有办法将 Spring 对象而不是类类型添加到 ServiceRoute 中?

这可行,但我的 ScenarioService 必须有一个无参数构造函数

RouteTable.Routes.Add(new ServiceRoute("services/scenarioservice", 
new WebServiceHostFactory(), typeof (Edu3.Core.Services.ScenarioService)));

我想使用类似的东西,但它不起作用:

RouteTable.Routes.Add(new ServiceRoute("services/scenarioservice", 
new Spring.ServiceModel.Activation.WebServiceHostFactory(), 
typeof (Edu3.Core.Services.ScenarioService)));

我需要提供一个 spring 对象,而不是提供类类型。

Is there a way to add a Spring Object to a ServiceRoute instead of a class type?

This works but my ScenarioService has to have a parameterless constructor

RouteTable.Routes.Add(new ServiceRoute("services/scenarioservice", 
new WebServiceHostFactory(), typeof (Edu3.Core.Services.ScenarioService)));

I would like to use something like this but it doesn't work:

RouteTable.Routes.Add(new ServiceRoute("services/scenarioservice", 
new Spring.ServiceModel.Activation.WebServiceHostFactory(), 
typeof (Edu3.Core.Services.ScenarioService)));

Instead of providing a class type, I would need to provide a spring object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文