我可以在不使用属性的情况下创建 WCF 服务吗?
声明 WCF 服务的方式似乎是在 C# 或 VB 中创建一个接口,然后使用 ServiceContractAttribute
对其进行标记,并使用 OperationContractAttribute
对其方法进行标记。
问题是,我想尝试从 IronRuby 或 IronPython 创建一个(据我所知)不支持属性。
这可能吗?
The way you seem to declare WCF services is to create an interface in C# or VB, and then tag it with ServiceContractAttribute
and it's methods with OperationContractAttribute
.
The issue is, I'd like to try creating one from IronRuby or IronPython, which (to my knowledge) don't support attributes.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以仅使用 System.ServiceModel.Description 中的对象模型 命名空间(例如 ContractDescription)来创建正确的描述对象,将它们放入 服务的描述的端点,然后打开主机。 但这非常重要。
You can just use the object model in the System.ServiceModel.Description namespace (e.g. ContractDescription) to new up the right description objects, poke them in to a service's description's endpoints, and then open the host. But this is very non-trivial.
AFAIK 在 IronRuby 中还不能。 这是在处理语言兼容性时处于次要地位的互操作事情之一。 关于如何做到这一点仍然需要进行大量讨论...但这是我们这些从事 IronRuby 工作的人希望看到的。
AFAIK you can't yet in IronRuby. It's one of those interop things that are on the back burner while language compatibility is worked on. There's still alot of discussion needed about how to do this... but it is something that those of us working on IronRuby would like to see.
好吧,虽然我不会(只是偏好,没必要激怒我),但你可以使用像 Boo 这样的语言:
http ://boo.codehaus.org/
另一种选择是用 C# 构建一个片段来为您进行此通信,然后从 IronyRuby 或您想要使用的任何语言调用它。
Well, while I wouldn't (just preference, no need to flame me), you could use a language like Boo:
http://boo.codehaus.org/
Another alternative is to just build a piece in C# to do this communication for you then call that from IronyRuby or whatever language you want to use.