Erro ao acessar web Service usando ksoap2

       Estou tentando acessar um web service mas esta ocorrendo o seguinte erro:

org.xmlpull.v1.XmlPullParserException: expected: END_TAG {http://schemas.xmlsoap.org/soap/envelope/}Body (position:END_TAG </{http://schemas.xmlsoap.org/soap/envelope/}S:Fault>@1:323 in java.io.InputStreamReader@1cb37664)

Alguem poderia me ajudar ? :cry:
Acho que estou colocando o url e o namespace errado.
Agradeco desde ja.

       //codigo que chama no web ervice           
      //usando ksopa2
         url = "http://localhost:8080/CalculatorWSApplication/CalculatorWS?wsdl";           
         String namespace = "http://localhost:8080/CalculatorWSApplication/CalculatorWS";       
      
         SoapObject request = new SoapObject(namespace, "add");//namespace/operation    
         SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);                
         envelope.setOutputSoapObject(request);
    
         request.addProperty("i", new Integer(1));
         request.addProperty("j", new Integer(5));   
      
         HttpTransport transportJ2me = new HttpTransport(url);              
         transportJ2me.call("", envelope);
       
         String resposta =(String) envelope.getResponse();         
         // mostra o valor do resultado na tela.
         textBox = new TextBox("Resposta Valor: ", resposta.toString() , 1024, 0);
         display.setCurrent(textBox);

////////////////web service

<?xml version="1.0" encoding="UTF-8" ?>

Rapas,

Tava tendo o mesmo problema que vc, no meu caso o namespace estava errado, segue abaixo o codigo, seu namespace pode ser verificado acessando a url do seu webservic/?wsdl.

public String teste(String param) throws IOException, XmlPullParserException {

    String url = "http://10.1.1.7:8080/FinancialMobile/sincronizar?wsdl";
    String namespace = "http://webservices.financialmobile.com.br/";

    SoapObject soapObject = new SoapObject(namespace, "pong");

    SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);

    // Assigns the object to the envelope
    envelope.setOutputSoapObject(soapObject);

    // Add a parameter
    soapObject.addProperty("param", param);

    // make the call
    HttpTransport transport = new HttpTransport(url);
    transport.call("", envelope);

   String resposta =  envelope.getResponse().toString();

   return resposta;
}