SolutionsSolutions Products Services Support Developers Partners Customers About BEA
专业咨询服务
客户支持服务
服务导航
活动与新闻
技术资源
AskBEA
常见技术问题
BEA产品文档
BEA新闻组
dev2dev 中文站点
dev2dev 英文站点
其它有用资源
联系我们
ALUI & ALBPM支持
培训服务
最新培训
服务


related links header
item indicator 如何购买BEA产品
item indicator 产品文档
item indicator BEA客户
item indicator 培训
item indicator 客户支持
item indicator SOA资源中心
Developer Resources
BEA dev2dev
BEA dev2dev网站
在线技术论坛
资源中心
User Group
客户支持服务

技术资源


常见技术问题(FAQs)

Portal 常见问题
     
最近更新时间: 作者: 浏览次数:
 
文章ID:4001
文章标题: 如何让Portal中产生的URL以https协议开始?
文章关键字: url,http
文章路径: http://www.bea.com.cn/channel/support/FAQs/Portal/4001.htm
 

如何让Portal中产生的URL以https协议开始?

在Portal中的URL一般通过<portlet:createWebflowURL>和<webflow:createWebflowURL>等等来产生URL,默认产生的是http://。如果想生成https://,可以在JSP的上述Tag中,加上httpsInd=https的参数;也可以在web.xml中,把需要生成https的Webflow的节点列在HTTPS_URL_PATTERN中,比如

<context-param>
<param-name>HTTPS_URL_PATTERNS</param-name>
<param-value> URLs-and-URL patterns</param-value>
</context-param>