JBoss Seam Excel 和 HTTPS
考虑使用 Seam 的 Excel 库的以下测试视图:
<e:workbook type="csv">
<e:worksheet name="Export" >
<e:cell value="1" row="0" column="0"/>
<e:cell value="2" row="1" column="1"/>
</e:worksheet>
</e:workbook>
我想通过 HTTPS 将参数保护到更复杂的版本。不安全视图可以正常生成文件。当我将 view.page.xml 中的方案更改为“https”(而不是我的 csv 文件)时,浏览器将重定向到 http://localhost/seam/docstore/document.seam 以及查询字符串中的对话 ID。使用 https 保护的其他页面(例如登录)工作正常。
关于解决或更好地诊断问题有什么建议吗?
谢谢!
Consider the following test view using Seam's Excel library:
<e:workbook type="csv">
<e:worksheet name="Export" >
<e:cell value="1" row="0" column="0"/>
<e:cell value="2" row="1" column="1"/>
</e:worksheet>
</e:workbook>
I'd like to secure parameters to a more complicated version via HTTPS. The unsecure view generates the file fine. When I change the scheme to "https" in view.page.xml, instead of my csv file, the browser is redirected to http://localhost/seam/docstore/document.seam with the conversation id in the query string. Other pages secured using https (e.g. login) are working fine.
Any suggestions on resolving or better diagnosing the problem?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能与 web.xml 中的安全约束设置有关。请查看此处。
如果 Excel 尝试访问限制区域之外的资源,您将无法生成该文件。
It could be related to your security constraints settings in web.xml. Take a look here.
If excel is trying to access resources outside of the restricted area you won't be able to generate the file.