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: *

  • Users: kally
  • Order by date
  1. kally

    ticky jsp redirect question

    I do not know a lot about JSESSIONID, and again, I am not sure what the relationship between cookies and sessions is. What I do know is this, the session var stores a JSESSIONID and it can be accessed with an appropriately named method in the api. The method returns a nonsensical string as one...
  2. kally

    ticky jsp redirect question

    SOLUTION I made a newbie mistake. The problem is this: an absolute path in a hyperlink creates a new request and thus a new session. A relative path does not, so instead of "myhost/controller" you have to use "contoller
  3. kally

    ticky jsp redirect question

    you are totally on the right track, but what I have failed to get across is this: The jsp page has a session It generates some code includign a hyper link you click on the hyper link to boot up the controller class and subsequently the details page ahh, but wait, you just started a new request...
  4. kally

    ticky jsp redirect question

    the path you mentioned is a mapping in my tomcat web.xml stuff or one of those config files and it accesses the controller class that uses a factory to forward the request to the viewdetails command. so if I could get the info to the control class that would solve teh problem I think
  5. kally

    ticky jsp redirect question

    The problem occurs before the controller class, the controller class does not receive the session either.
  6. kally

    ticky jsp redirect question

    That is the root of the problem, the htmlUtil code you see there is the front end, ie what is output to explorer, the link that is generated that has my local url in it is my gateway to the viewDetails servlet, how can I pass the current "request", ie the one used by my jsp page, through to the...
  7. kally

    ticky jsp redirect question

    here is the criticl jsp code ArrayList productsForRooms = new ArrayList();//list of product lists ShowroomProductsXRefDAO myShowroomProductsXRefDAO = new ShowroomProductsXRefDAO(); if(showrooms.size()>0){ for(int i=0; i<showrooms.size(); i++){...
  8. kally

    ticky jsp redirect question

    as I said at the bottom of my post I am a newb. I don't quite understand the interaction between the general JSP context(including context, session, response, and request). what I think is happening is the following, when I click on the generates link...something like <href...
  9. kally

    How can I resolve this compile error

    the application you are working on probably has a com directory in the src file or something similar to this. The problem may be that the missing package is in the wrong location...if that is the case, copy and past it into the com directory where the remainder of the application exists
  10. kally

    ticky jsp redirect question

    platform details win2k/apache2/tomcat5/mysql(not sure about version num) goal dynamically create a table of photo graphs which are queried from the database. have those photographs redirect the user to a details.jsp page where information about the photo is displayed. my approach use a list of...
  11. kally

    vpopmail + vchkpwd dont want to use my /etc/passwd file !

    it's written that vchkpwd can lookup in /etc/passwd for locals sites but it doesn't work ! Im under FreeBSD and all work except that ! vpopmail is compiled with the --enable-passwd=y option !
  12. kally

    XML certification

    Is there an XML certification exam?If so,who offers it and what are the pre requisites?
  13. kally

    how to auto-kill anormal long-queries ?

    I've a small memory system (128Mg) and a big forum in php running... all works fine, but sometimes, a long query such as a search, blocks all the others queries, and the processlist become bigger and bigger, and it take many time to rewind in a normal situation... How can i do to avoid this ?

Part and Inventory Search

Back
Top