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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MultipartRequest

  1. MultipartRequest

    connection pool sharing

    Lets say I have 5 servlets which all of them executes querys and updates to a database. The question is as follows. If in one of those servlets I create a connection pool, how can I share that connection with the other servlets, in order not to create one for each servlet.?
  2. MultipartRequest

    ResultSet Size?

    Easy, just do: .... rs.last(); int number = rs.getRow(); rs.beforeFirst(); while(rs.next()) { ... }
  3. MultipartRequest

    ResultSet Size?

    Easy, just do: .... rs.last(); int number = getRow(); rs.beforeFirst(); while(rs.next()) { ... }
  4. MultipartRequest

    certificate application

    how can i test my jsp application? i want to know if supports acertain amount of users connected during a period of time
  5. MultipartRequest

    jsp error pages

    i want to redirect errors to my own error pages, how can i do that
  6. MultipartRequest

    encoding url

    lets see the following example http://www.mysite.com/index.jsp?var1=""&var2="" how can i hide or encrypt the parameters passed in order that no one can see the parameters that i am passing from one page to another?
  7. MultipartRequest

    class/.exe conversion

    yes there is a way. Use Excelsior Jet packer.
  8. MultipartRequest

    sending compressed (gzip) jsp

    where can i get more information of the servlet filter?
  9. MultipartRequest

    sending compressed (gzip) jsp

    i know how to send a compressed page generated by a servlet, but is thre a way to send a compressed JSP?
  10. MultipartRequest

    JSP and XSL

    how can i pass a parameter from a jsp to an xsl For example i want to pass the`parameter: String elmt="news"; in order to extract with xsl the value-of the element "news", corresponding to the variable elmt.?
  11. MultipartRequest

    JSP Vs Class

    I`ve got a question. In a JSP file i need to run a process. I can create a class(which has the process) and call the process from the JSP file, or I can create another JSP(which has the process) and include it in the other JSP file. Which of these two methods gives me a best performance...
  12. MultipartRequest

    Download files through servlets

    well, i thin i understood what you wanto to do. I know one way to do this. First you have to see what protected folders your webserver has, then use session trackin to trace the user along the website, and also use the authorization header. if no authorization header is recieved automatically...
  13. MultipartRequest

    parsing strings

    the problem is that there is no file, the problem is that is an xml file, so in an element i have a huge text split by line breaks. So i parse the xml document and extract the text and place it on a string. now i have to detect the line breaks, after i read the file, not during. thanksl.
  14. MultipartRequest

    parsing strings

    if i have a string with line breaks (carriege return), how can i detect where the line breaks are while i parse the string?
  15. MultipartRequest

    xsl question

    I have an xml file with different articles, and i am displaying the title of each o them in a jsp file. I would like that when the client clicks one of the titles could be sent to another page showing the full article. I have done this passing a parameter to a jsp file wich extracts form the...

Part and Inventory Search

Back
Top