Java - jsp, java y registros

 
Vista:

jsp, java y registros

Publicado por Gloria (12 intervenciones) el 25/11/2007 14:14:00
hola, estoy intentando reutilizar las clases java que tenia y hacer una web, para interactuar mas facil con el usuario. Tengo un formulario que lee la descripcion y pasa a la siguiente pagina:

<%@ page import ="omar.*"%>
<div align="center" >

<% String descripcion=request.getParameter("descripcion");
if (descripcion !=null && descripcion.trim().length() >0){
BuscarBPS bpp = new BuscarBPS();
String qURL = "http://localhost:8080/omar/registry/soap";
String pURL = "http://localhost:8080/omar/registry/soap";
bpp.buscar(qURL, pURL);



%>
<font color="red"><h1>Descripcion correcta</h1></font>
<%
}else{
%>
<font color="red"><h1>Por favor, introduzca una descripcion</h1></font>
<% }
%>
</div>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder