由 何 善才 在 将近 2 年 之前添加
操作步骤:
打开https端口服务:
修改 AAS-V9.0\domains\mydomain\config\apusic.conf 文件
<ATTRIBUTE NAME="SSLEnabled" VALUE="True"/> :原始配置为false
<ATTRIBUTE NAME="SecurePort" VALUE="6889"/>
2、修改金蝶的域目录(比如mydomain)AAS-V9.0\domains\mydomain\config\web.xml文件,在最后(在</web-app>之前)添加如下代码即可实现http跳转到https:
<security-constraint>
<web-resource-collection>
<web-resource-name>SSL</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>