Results 1 to 2 of 2

Thread: Session servlet and vectors

  1. #1

    Thread Starter
    Member
    Join Date
    Apr 2003
    Posts
    38

    Session servlet and vectors

    Hi people, from the following servlet code:


    public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
    HttpSession session = request.getSession(true);
    session.setAttribute("name", request.getParameter("name"));



    It stores the name in the session. Question is how do i store the name in a vector? Examples or references would be helpful Thanks alot!
    The NewB learns something new again !
    Then again, maybe not......

  2. #2
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594
    What do you mean store? Persistent data is best stored as session var or in some database. How would you persist the vector?
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width