Silverlight 中的动态服务引用
我正在构建一个与 SharePoint Web 服务交互的 Silverlight 应用程序。 在 Windows 窗体应用程序中,我将创建对本地 SharePoint 服务器的 Web 引用,然后在运行时更改引用的 Uri 以指向我想要使用的任何 SharePoint 网站。 Silverlight似乎没有Web引用,但是可以通过服务引用来实现类似的功能。 但是,似乎没有办法在运行时更改引用的 Uri。 在 Silverlight 中有没有办法做到这一点? 或者使用 Silverlight 中的 SharePoint Web 服务的更好方法?
注意:我需要访问列表项附件,因此 owssvr.dll 还不够(我认为?)
I'm building a Silverlight application that interfaces with SharePoint Web Services. In a windows forms application I'd create a web reference to my local SharePoint server, then change the Uri of the reference at runtime to point to whatever SharePoint site I wanted to use. Silverlight doesn't seem to have web references, but similar functionality can be achieved with service references. However, there doesn't seem to be a way to change the Uri of the reference at runtime. Is there a way to do this in Silverlight? Or a better way of using SharePoint web Services from Silverlight?
Note: I need to access list item attachments, so owssvr.dll won't be sufficient (I think?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
鉴于您正在使用 WCF(引用服务),您可以更改服务的地址,如下所示:
Seeing as you are using WCF (to reference the Service), you can change the Address of the service like so:
这个例子似乎遗漏了很多东西。 SoapClient 与 mySoapClient?
Endpoint.address 不是服务 (SVC) 的属性。
There seems to be alot missing from this example. soapClient vs. mySoapClient?
Endpoint.address is not a property of a service (SVC).