Silverlight 中的动态服务引用

发布于 2024-07-25 02:04:27 字数 340 浏览 2 评论 0原文

我正在构建一个与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绿光 2024-08-01 02:04:27

鉴于您正在使用 WCF(引用服务),您可以更改服务的地址,如下所示:

MyServiceSoapClient soapClient = new MyServiceSoapClient();
mySoapClient.Endpoint.Address = new EndpointAddress(URI]);
// do call here 

Seeing as you are using WCF (to reference the Service), you can change the Address of the service like so:

MyServiceSoapClient soapClient = new MyServiceSoapClient();
mySoapClient.Endpoint.Address = new EndpointAddress(URI]);
// do call here 
千秋岁 2024-08-01 02:04:27

这个例子似乎遗漏了很多东西。 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文