XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
    config.setServerURL( new URL(url));
    XmlRpcClient client = new XmlRpcClient();
    client.setTransportFactory(new XmlRpcCommonsTransportFactory(client));
    client.setConfig(config);
    
    Object result = client.execute(postMethod, params);
return result;
如题,由于公司的网络只开了80端口所有上网使用的是http代理。所以程序不能解析url,请问如何解决,,