0

これは私のコードです。.asmx?WSDL Web サービスを使用しようとしています。

エラー: org.apache.axis2.AxisFault: トランスポート エラー: 407 エラー: プロキシ認証が必要です

    package org.tempuri;


    import org.apache.axis2.AxisFault;
    import org.tempuri.ServiceStub.Get_All_Pendancy_List;
    import org.tempuri.ServiceStub.Get_All_Pendancy_ListResponse;



    public class TestClient {

        /**
         * @param args
         */
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            try {

                //

                //

                //Proxy Settings

                System.getProperties().put("http.proxyHost", "111.11.11.11");
                System.getProperties().put("http.proxyPort", "1111");
                System.getProperties().put("http.proxyUser", "11111");
                System.getProperties().put("http.proxyPassword", "SaK@11111");


                ServiceStub serviceStub = new ServiceStub();
                Get_All_Pendancy_List gpl = new Get_All_Pendancy_List();
                gpl.setDept_code("1111");
                gpl.setUsr("1111");
                gpl.setPasswd("1111@1111");
                gpl.setDate("01/01/2012");

                Get_All_Pendancy_ListResponse response = serviceStub.get_All_Pendancy_List(gpl);
                System.out.println(response.getGet_All_Pendancy_ListResult());



            } catch(AxisFault e1 ) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }
            catch (Exception e) {
                // TODO: handle exception
                e.printStackTrace();
            }



        }

    }

助言がありますか??プロキシ構成を設定するにはどうすればよいですか?

4

1 に答える 1

2

わかりました..ここにあります。これは、axis2のコードを介してプロキシ設定を設定する方法です

// Proxy Settings    
HttpTransportProperties.ProxyProperties HTTPProxyProperties = new HttpTransportProperties.ProxyProperties();
HTTPProxyProperties.setProxyName("PROXYHOST");
HTTPProxyProperties.setProxyPort(PROXYPORT);
HTTPProxyProperties.setUserName("USERNAME");
HTTPProxyProperties.setPassWord("PASSWORD");
HTTPProxyProperties.setDomain("DOMAIN");

Options options = serviceStub._getServiceClient().getOptions();
options.setProperty(MessageContextConstants.HTTP_PROTOCOL_VERSION,
HTTPConstants.HEADER_PROTOCOL_10);
options.setProperty(HTTPConstants.PROXY, HTTPProxyProperties);
于 2013-03-20T06:50:18.393 に答える