Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jbruggeman

    bean forward to jsp page ?

    Just for the sake of documentation, I post the solution I've found: if (action.equalsIgnoreCase("login")) { nextPage = "/doorgeefeinde.jsp"; } else if (action.equalsIgnoreCase("einde")) { nextPage = "/doorgeefbegin.jsp"; } else {...
  2. jbruggeman

    bean forward to jsp page ?

    Hello, I would like to implement the equivalent of the jsp tag : <jsp:forward page=&quot;next.jsp&quot;> in a servlet. What I want to do is: a jsp or html page has a form with a get or post, which connects to a servlet, which forwards the processing results of the form towards a jsp page...
  3. jbruggeman

    Enterprise Java Beans Question

    of course. Two instances of classes can communicate with each other, in different ways. Even if they do not run in the same JVM, but you'll need some more logic there.
  4. jbruggeman

    anybody know how to link jsp with oracle??

    I use this class: (replace all in between <> with your appropriate iformation) public class DbConn { private static DbConn database = new DbConn(); // for PostgreSQL // private String jdbc = &quot;org.postgresql.Driver&quot;; // private String...
  5. jbruggeman

    when to use beans

    JavaBeans are just plain classes !!! jou only put some set and get methods in it to fill or read it's variables from your jsp. As far as I know, Enterprise JavaBean (which came with J2EE) are classes that sit over a database connection, or maintain process information. You use them to get an...
  6. jbruggeman

    java xml : normalize a dom structure

    Hi, I use j2sdk version 1.4.0 (under windows NT workstation) - downloaded at www.sun.com. The code that produces a problem is: <snip> ... Import org.w3c.com; ... Document menu = null; File bestand = null; ... DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance()...

Part and Inventory Search

Back
Top