import org.apache.axis.client.*; import javax.xml.namespace.QName; public class Main { /** * @param args the command line arguments */ public static void main(String[] args) throws Exception{ // 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/", "getReferenceById")); String resultString = (String) call.invoke( new Object[] {"643675"});//aqui da un error /*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/", "getKmValue")); String resultString = (String) call.invoke( new Object[] {"ecNumber*1.1.1.1#organism*Mus musculus"} ); System.out.println(resultString);*/ }