从 Silverlight 打开共享点文档并重用会话
我们有一个位于 ISA 服务器后面的 silverlight 应用程序,用户必须针对 ISA 服务器进行身份验证。
在silverlight应用程序中,我们使用Sharepoint 2007作为文档库(后端上传文档)。
当用户想要打开文档时,我们在 silverlight 中使用 JavaScript、editDocumentWithProgID2 和 HtmlPage.Window.Invoke(...)。
问题是 word/excel 显示一个新的登录对话框,因此用户必须再次登录。有没有办法避免这个登录对话框?
干杯 托马斯
We have a silverlight application thats behind a ISA server, and the users have to authenticate against the ISA server.
In the silverlight application we uses Sharepoint 2007 as a documentlibrary (the backend uploads the documents).
When the user wants to open a document, we use a javascript, editDocumentWithProgID2, and HtmlPage.Window.Invoke(...) in silverlight.
The problem is that word/excel shows a new login dialog, so the users have to login again. Is there a way of avoiding this login dialog?
cheers
Thomas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Word/Excel 就像第二个“浏览器”,您无法重用会话。
避免双重登录的唯一方法是将文件保存在本地驱动器上,然后用 Office 打开它。
Word/Excel act like a second "browser", you can't reuse the session.
The only way to avoid double login is to save the file on the local drive and then open it with office.