我可以使用 scriptmanager 为 WCF 服务库生成代理对象吗?
我在 Web 应用程序中使用了启用 AJAX 的 WCF 服务模板。通过向脚本管理器添加服务引用,会生成一些客户端对象,使我能够轻松使用该服务。我的问题是,当我使用 WCF 服务库时,我可以做类似的事情吗?我将该项目添加到我的解决方案中,并在我的 Web 应用程序中添加了对该服务的服务引用。这是我有点卡住的地方。我现在该怎么做才能允许使用客户端的服务。
I have used the AJAX Enabled WCF Service template from within a web application. By adding a Service reference to the scriptmanager, some client objects are generated allowing me to easily consume the service. My question is can I do anything like that when I use a WCF Service Library? I added the project to my solution and in my web app I added a service reference to the service. This is where I get a bit stuck. What do I do now to allow consuming the service from the client.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,为了使用wcf服务,您必须使用VS包中的“svcutil”应用程序来生成代理类,使用起来非常简单。
So, just to consume wcf service, you have to use "svcutil" app from VS pack to generate o proxy class, which is very simple in usage.