Cliente web service com Axis2

Caros, estou tentando criar um cliente p/ comunicação com o web service da Receita Federal.
Abaixo segue o código utilizado

		
        HttpTransportProperties.ProxyProperties proxyProperties = new HttpTransportProperties.ProxyProperties();
        proxyProperties.setProxyName("proxy");
        proxyProperties.setProxyPort(porta);
		
        ServiceClient serviceClient = new ServiceClient(null, 
        		new URL("https://homologacao.nfe.sefazvirtual.rs.gov.br/ws/nfestatusservico/NfeStatusServico.asmx?wsdl"), 
        		null, 
        		null);
        serviceClient.getOptions().setProperty(org.apache.axis2.transport.http.HTTPConstants.PROXY, proxyProperties);
        OMElement omElement = serviceClient.sendReceive(createDados()); 

O problema é que sempre retorna o seguinte erro:

java.net.ConnectException: Connection timed out: connect

Alguém tem alguma dica?