Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/03/2008, 23:07
Avatar de HackmanC
HackmanC
 
Fecha de Ingreso: enero-2008
Ubicación: Guatemala
Mensajes: 1.817
Antigüedad: 17 años
Puntos: 260
Mensaje Re: XML, Webservices y java(netbeans 6.0)

Evidentemente, no estás llamando al WebService de la forma adecuada.
Tienes algo parecido a esto en tu aplicación ?

Código:
package JavaApplication1;

public class Main {
	public static void main(String[] args) {
		try {
			JavaApplication1.Service1 service = new JavaApplication1.Service1();
			JavaApplication1.Service1Soap port = service.getService1Soap();
			java.lang.String value = "";
			JavaApplication1.Class1 result = port.ingreso(value);
			System.out.println("Result = " + result);
			System.out.println(result.value1);
			System.out.println(result.value2);
		} catch (Exception ex) {
		}
	}
}