使用 Spring 对象将 ServiceRoute 添加到 RouteTable
有没有办法将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论