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 strongm 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. rmarkert

    Connection Pool

    Thank you very much! I'm using only JSP and Servlets! So I put them under WEB-INF/classes!
  2. rmarkert

    Connection Pool

    I use two classes to ConnectionPool: DBConnectionPool and DBConnectionPool. Where do they be located? I put them at my Servlets directory... but I read an article that say that they must be located at the CLASSPATH used by the Servlet Engine. What is this ? Thanks, Renata
  3. rmarkert

    BouncyCastle Provider

    Anyone has used BouncyCastle Provider? I installed it as extension of jsdk.1.4 and it didn't work... Here are the steps that I followed: 1- Download bcprov-jdk14-113 2- Copy bcprov-jdk14-113.jar to jsdk1.4/jre/lib/ext 3- Edit java.security in jsdk1.4/jre/lib/security...
  4. rmarkert

    Connecting Database inside Servlet

    Which is the most correct way to connect database inside the Servlet? In the init method or service method? Thanks!
  5. rmarkert

    Connection Error

    Thank you!
  6. rmarkert

    Connection Error

    How can I catch an error from a Connection failed? This is my code... public void init(ServletConfig conf) throws ServletException { super.init(conf); try{ String driver = (String)getServletContext().getAttribute("db_driver"); String user =...
  7. rmarkert

    JavaBean , Servlet and JSP

    It works! Thank you very much! Renata
  8. rmarkert

    JavaBean , Servlet and JSP

    Hi, I was thinking about.... Is it possible I retrieve a JavaBean information from JSP and send it to a Servlet? Thanks... Renata
  9. rmarkert

    File and Servlet

    Thank you very much!!!!!!!!!!!!!
  10. rmarkert

    File and Servlet

    I have a text file with information that I used to connect to database. How can I read this file into Servlet? Thank you, Renata
  11. rmarkert

    Stored Procedure

    I'm new using Ultradev with JSP. I can't pass parameters to a stored procedure. Callable text : {call dbo.SPwebaluno(?)} variables: Name type direction default value run-time value @codpes integer in 97562...

Part and Inventory Search

Back
Top