WCFacility 和 WVF 4.0 REST
如何将 Windsor-Castle WCFFacility 与 WCF 4.0 REST 服务结合使用?
当您不再拥有 .svc 文件时,如何链接到工厂?
蒂亚·
索伦
How do you use the Windsor-Castle WCFFacility with the WCF 4.0 REST services ?
How you you make the link to the factory, when you don't have the .svc file anymore?
TIA
Søren
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Windsor 3.0 这非常简单(如果我正确理解了你的问题,如果我遗漏了一些东西,我很抱歉)。
向您展示的最简单的方法是创建一个控制台应用程序并确保您引用:
现在定义一个 RESTful 服务像这样:
现在您可以像这样将该服务连接到温莎容器中(因为它是一个控制台应用程序,我将只向您展示主要方法):
这是由 Castle Windsor 托管的 WCF REST 服务。
将浏览器指向“http://localhost/frobs”将获得所有 frobs,将浏览器指向“http://localhost/frobs/Doob”将获得名为 Doob 的 frob,您将获得主意...
Using Windsor 3.0 this is pretty straightforward (if I have understood your question correctly, my apologies if I am missing something).
The simplest thing to do to show you is to create a console application and make sure you are referencing:
Now define a RESTful service like this:
Now you have that you can hook up that service into the windsor container like so (and since it is a console application, I will just show you the main method):
And that is a WCF REST service hosted by Castle Windsor.
Pointing a browser at: "http://localhost/frobs" will get you all the frobs and pointing a browser at, say, "http://localhost/frobs/Doob" will get you the frob called Doob, you get the idea...