Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/10/2014, 21:36
Avatar de chuidiang
chuidiang
Colaborador
 
Fecha de Ingreso: octubre-2004
Mensajes: 3.774
Antigüedad: 20 años, 3 meses
Puntos: 454
Respuesta: JSP- como llenar un input text con el result de un servicio web

Hola:

Así más o menos

Código Java:
Ver original
  1. <%
  2. try {
  3.  
  4.  
  5.  
  6. wsdisplay.WsServicioDisplay_Service service = new wsdisplay.WsServicioDisplay_Service();
  7. wsdisplay.WsServicioDisplay port = service.getWsServicioDisplayPort();
  8. // TODO initialize WS operation arguments here
  9. java.lang.String numero1 = request.getParameter("a");
  10. java.lang.String pantalla = request.getParameter("txtDisplay");
  11.  
  12. // TODO process result here
  13. java.lang.String result = port.devdisplay(numero1, pantalla);
  14.  
  15. %>
  16. <input type="text" value="<%= result %>"/>
  17. <%
  18. } catch (Exception ex) {
  19. // TODO handle custom exceptions here
  20. }
  21.  
  22. %>

Se bueno.
__________________
Apuntes Java
Wiki de Programación