English 中文(简体)
如何将共享文件纳入网络应用,并增加外部用户的全权证书
原标题:How to integrate sharepoint document into web application and adding credentials for external users

作为将共享文件纳入网络应用的新工具,我正致力于以下任务,因此,任何帮助或指导都将受到高度赞赏。

我的网页上有一页,需要从共用点显示文件。

我利用 app光共用点网服务获得一份共同点清单中所有文件的清单,然后请我去找回文件,走到文件的道路上,以便最终做到:

Company%20Hire/Hire%20Site%20Price%20Lists/0.pdf

在我们的网络内,我可以采取以下行动:

iframePdf.Attributes

“src”] = ConfigurationManager.AppSettings[“SharepointUrl”] +__filePath;

这将在iframe上展示文件......我从网络外来的共享点(由于防火墙等原因)。

我们确实在外部服务器上 to回我们的网络。 如果要在服务器上浏览器上使用纸浆,我就会收到全权证书,然后查看文件。

网上申请是否有办法使用 v、使用证书(例如通过假冒)来查阅该文件并向外部客户展示?

最佳回答

我通过采取以下行动解决了这一问题:

我使用了网站用户类别,这使你能够增加全权证书,我刚刚称之为下载档案方法。 接着,从节省的地点(在届会变量中节省的位置)读到pdf的另一页,并将档案汇至对应流。

遵循法典:

    using (var _webclient = new WebClient())
            {
                _webclient.Credentials = new NetworkCredential(ConfigurationManager.AppSettings["DomainUsername"],ConfigurationManager.AppSettings["DomainPassword"],
"domain");

                _webclient.DownloadFile(ConfigurationManager.AppSettings["SharePointPortal"] + _filePath, _path);                
            }

            Portal.Common.Objects.CommonSessionHelper.Instance.IframeUrl = _path; 

            iframePdf.Attributes["src"] = "PdfEmbedder.aspx";

Pdfembeder.aspx.cs是:

protected void Page_Load(object sender, EventArgs e)
{
    try
    {            
        if (!String.IsNullOrEmpty(Portal.Common.Objects.CommonSessionHelper.Instance.IframeUrl))
        {
            Response.Clear();
            Response.ContentType = "application/pdf";
            Response.WriteFile(Portal.Common.Objects.CommonSessionHelper.Instance.IframeUrl);            
            Response.Flush();
            Response.Close();
            Portal.Common.Objects.CommonSessionHelper.Instance.IframeUrl = null;
        }
    }
    catch (Exception error)        
    {
        Response.Write(error.Message);
    }
}
问题回答

你可以考虑在你的网络应用上安装一个手稿,负责从共享点下载文件并将其输入网络。

下载内容的更方便的课堂有:System.Net.WebRequest。 这份指南可帮助您与一名习惯的吉卜赛人进行滚动。 在您的网页上,您将向您的用户超链接,即向吉大港定居人士协会的手稿提供显示文件下载参数的查询。 您的手稿将下载文件,在答复中确定适当的内容类型和内容处置,并抄录网络要求的答复范围。

<密码>网络查询的财产对于认证客户以分享点非常重要。 如果你使用NTLM综合视窗认证,那么它就只是一个小trick,因为。 您可以围绕双重方式开展工作,包括明确推动用户资格(通过表格)、实施Kerberos,或者在冒着固定特权使用者时处理授权。

亲爱!





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签