I have a problem with a code, I'm using NetBeans IDE, and the Axis 1_4 library, so here is it:

Note: import this libraries:

import javax.xml.rpc.ServiceException;
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import javax.xml.namespace.QName;

Then this:

try {
        // TODO code application logic here


        Service service = new Service();
        Call call = (Call) service.createCall();
        String endpoint = "http://www.brenda-enzymes.org/soap2//brenda_server.php";
        call.setTargetEndpointAddress(new java.net.URL(endpoint));
        call.setOperationName(new QName("http://soapinterop.org/", "getEcNumbersFromApplication"));
        String resultString = (String) call.invoke( new Object[] {""});


        System.out.println(resultString);
    } catch (ServiceException ex) {
        System.out.println("Error, Service Exception, fix...");
    } catch(java.net.MalformedURLException ex){
        System.out.println("Error, MalformedURLException, tratar...");
    } catch(java.rmi.RemoteException ex){
        System.out.println("Error, RemoteException, deal with..."+ex.getMessage()+"\r\n"+ex.detail);
    }

This is the result that's shown to me:

 Error, RemoteException, deal with...; nested exception is: 
    java.net.ConnectException: Connection timed out: connect
    java.net.ConnectException: Connection timed out: connect

What could be the cause of this?

link|improve this question
Are the double // wanted in the URL here soap2//brenda_server.php? – talnicolas Nov 15 '11 at 18:15
I'll excuse your English, but I take offense at your typography. I understand this is important to you, but there's still no need to shout at us in bold face. – larsmans Nov 15 '11 at 18:15
1  
@user1048140: what don't you understand about the exception? It failed to connect to the endpoint. Check your networking. – Mat Nov 15 '11 at 18:19
It's pretty self-explanatory, I think. The attempt to connect to the remote server timed out. – David Schwartz Nov 15 '11 at 18:22
I'm sorry, lars mans. – dariels88 Nov 15 '11 at 18:28
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.