我们在我们的应用程序中使用 proxy-1.0.2.jar 并且需要将 xml 有效负载 POST 到重定向的 URL。当我们重定向到 HTTPS URL 时,它不起作用。但其他 HTTP 或静态 IP 地址工作正常。我们是否需要在代理过滤器中为 HTTPS URL 做任何额外的配置?
示例网址:
https url - https://abc.com/request/listing (not working)
http url - http://xx.xx.xx.xx:8080/request/listing (working)
在 web.xml 中,我们有以下条目:
<servlet-mapping>
<servlet-name>listingProxyServlet</servlet-name>
<url-pattern>/proxy/listing</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>listingProxyServlet</servlet-name>
<servlet-class>com.woonoz.proxy.servlet.ProxyServlet</servlet-class>
<init-param>
<param-name>target-url</param-name>
<param-value>https://abc.com/request/listing</param-value>
</init-param>
</servlet>