Olá pessoal bom dia a todos desde ja agradeço pela compreensão…queria saber se algum de vcs já
fez um cliente Java para comunicar com o php, um serviço web service…estou tendo dificuldade com a comunicação.
desde já agradeço.
eu estou utilizando no java dessa forma aqui
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
public class Cliente
{
public static void main(String[] args) throws Exception
{
String endpoint = “http://localhost/webService/Servidor.php?wsdl”;
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(endpoint);
call.setOperationName(“dadosCliente”);
Integer ret = (Integer) call.invoke(new Object[]{new Integer(args[0])});
System.out.println("Got result : " + ret);
}
}
só que dá esse erro
- Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled.
Exception in thread “main” java.lang.ArrayIndexOutOfBoundsException: 0
at Cliente.main(Cliente.java:17)
se alguem souber ai…desde já agradeço…valew.