1

我们在我们的应用程序中使用 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>
4

1 回答 1

0

我找到了一种解决方案并在此处发布。它可能对其他人有帮助

我使用了 HTTP 代理 servlet 版本。2.6,它工作正常

http://www.servletsuite.com/servlets/httpproxy.htm

<servlet>
                <servlet-name>accertifyListingProxyServlet</servlet-name>
                <servlet-class>com.jsos.httpproxy.HttpProxyServlet</servlet-class>
                <init-param>
                        <param-name>host</param-name>
                        <param-value>https://abc.com/order</param-value>
                </init-param>
                <init-param>
                        <param-name>headers</param-name>
                        <param-value>true</param-value>
                </init-param>
                <init-param>
                        <param-name>encoding</param-name>
                        <param-value>utf-8</param-value>
                </init-param>
        </servlet>

问候, 苏拉布

于 2012-09-26T09:34:18.623 回答