我正在使用Microsoft IIS来代理WebLogic服务器的请求。
我在IIS上启用了https。
[http://webserver gives error that 'page must be viewed on https' and https://webserver gives content of Default.htm file]
我在WebLogic Server上启用了https。
[http://weblogic:7001/myapp/test.jsp and https://weblogic:7002/myapp/test.jsp both works]
通信黑白IIS和WebLogic Server位于https。
问题是当我使用webserver URL (https://webserver/myapp/test.jsp)
访问https上的应用程序时,我得到了响应(test.jsp的内容)但是当我在过滤器中打印request.getRequestURL()时,我得到了http URL {{ 1}}。这在执行sendRedirect()...
为什么我的https网址会转换为http?有什么想法吗?
感谢。
答案 0 :(得分:0)
以下解决了我的问题:
如果插件正在与WebLogic应用程序服务器通信,请执行以下操作 - 环境>服务器>选择您的服务器>一般>高级>检查WebLogic插件是否已启用
再次感谢。