.NET 中的 WebSphere 等效项
.NET 中是否有相当于 websphere 风格的应用服务器?能够跨多个项目/解决方案管理所有 WCF 端点、跟踪依赖项和版本、处理 WS-Discovery(或 WSDL 或其他)的东西?
最好是 F/OSS?
Is there an equivalent in .NET to a websphere-style app server? Something that will manage all our WCF endpoints across multiple projects/solutions, track dependencies and versions, handle WS-Discovery (or WSDL or whatever)?
Ideally something F/OSS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在运行 WCF,您可能也在使用 Windows Server 2003 或 2008。.NET 世界中的应用程序服务器类型功能分布在 IIS、MSMQ 和 COM+ 上,这些功能与服务器捆绑在一起,因此免费,无需额外付费。服务器,但不一定免费,因为您可以阅读和修改代码。
这是另外两个用于 .NET 的开源应用程序服务器
Base4 http://en.wikipedia.org/wiki/Base4_Application_Server
TNAPS http://en.wikipedia.org/wiki/TNAPS_Application_Server
另外,WCF 能够说话标准,所以我想您可以有一个 .NET WCF 客户端调用/向 JBoss 发送消息,但是,有传言说,对于此类所有产品,您可以通过使用同构堆栈获得最佳结果 - 标准是不错但不完美。
If you are running WCF, you probably also are using Windows Server 2003 or 2008. The appserver type features in the .NET world are spread across IIS, MSMQ and COM+, which are bundled with the server, so free as in no additional cost after the server, but not necessarily free as in code you can read and modify.
These are two more opensource app servers for .NET
Base4 http://en.wikipedia.org/wiki/Base4_Application_Server
TNAPS http://en.wikipedia.org/wiki/TNAPS_Application_Server
Also, WCF is capable of speaking standards, so I suppose you could have a .NET WCF client invoke/send messages to JBoss, however, the rumor is that for all products of this sort, you get the best results from using a homogeneous stack-- the standards are good but not perfect.