如何以编程方式从 InfoPath XSN 模板创建 InfoPath 表单
我需要一个从 SharePoint 服务器上存在的 XSN 模板创建 InfoPath 实例表单的解决方案,我正在使用 此方法 但这会提取服务器临时目录中的模板文件,我们可能没有写入权限到。对此有更好的解决方案吗?
I need a solution that creates an InfoPath instance form from an XSN template that exists on a SharePoint server, I am using this approach but this extracts template files on temp directory of server that we may not have write permission to. Is there better solution for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需将 CAB 库更改为可以将模板文件提取到内存的库,就像这个
从 .CAB 存档或 InfoPath XSN 文件中提取的最少 C# 代码,位于内存
然后调用,
myCab.ExtractFile("template.xml", out buffer, out bufferLen);
完整的代码看起来像这样
You just change the CAB-library, to one that can extract the template file to memory, as this one,
Minimum C# code to extract from .CAB archives or InfoPath XSN files, in memory
And then call,
myCab.ExtractFile("template.xml", out buffer, out bufferLen);
the complete code would look something like