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 Chriss Miller 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 jem122974

  1. jem122974

    Facelet will not render

    I found my problem, or problems. The funny thing is now I'm not sure how my current projects are working! First problem was my taglib.xml couldn't be found. I simply had it in the wrong folder. Once I moved it to the correct place I got past the rendering problem. Then I got the following...
  2. jem122974

    Facelet will not render

    I have done a couple projects using JSF and facelets, but it has been awhile since I set up a new one from scratch. I think I have all the pieces in place but the facelet will not render. Can anyone tell me what I am missing? The last piece of code is the resulting HTML page. The...
  3. jem122974

    dojox.grid.DataGrid delete key

    I just discovered that I need to check the keyCode and not the charCode. Now it traps the delete key...
  4. jem122974

    dojox.grid.DataGrid delete key

    I have a DataGrid that I connected a function to, based on the onkeypressed event. In my function I'm just alerting the charCode. For keys like delete and backspace it always returns zero, even though these are specified in the dojo.keys array. My goal is to select a row and press delete to...
  5. jem122974

    AS400JDBCDriver connection timeout

    Interesting thought, Dian. In fact I am using an application server - Glassfish. Can I do something in the web.xml? If you could just point me in the right direction I'd appreciate it.
  6. jem122974

    AS400JDBCDriver connection timeout

    Hmmm... You are probably right. I was just hoping there as a way I could change it for just my application and not for all database connections.
  7. jem122974

    How do I get a list of users currently signed in?

    I have a JSF app that has a user session bean. From an admin point of view I would like a screen that lists all of the users currently signed in. How would I go about that? Then secondly I would like a way to sign out or invalidate a users session. Can someone point me in the right...
  8. jem122974

    How do I get a list of users currently signed in?

    I'm going to repost this under the Java J2EE forum. That is probably the correct forum.
  9. jem122974

    AS400JDBCDriver connection timeout

    How can I set the timeout limit? I would like the database connections to timeout if they are inactive for say 1/2 hour. I'm not even sure what the default is. Thank you, Jon Mitchell
  10. jem122974

    How do I get a list of users currently signed in?

    I have a JSF app that has a user session bean. From an admin point of view I would like a screen that lists all of the users currently signed in. How would I go about that? Then secondly I would like a way to sign out or invalidate a users session. Can someone point me in the right...
  11. jem122974

    Handling time in a date/time field

    Thanks Paul, that makes sense...
  12. jem122974

    Handling time in a date/time field

    Interesting... Sorry I am so slow, but in the database what would the half hour field contain for 10:25? Would it contain an integer 1 for the first half hour? Or would it contain a string "10:00"? Or would it contain 36,000 for the number of seconds since midnight? Thanks, Jon
  13. jem122974

    Handling time in a date/time field

    Paul, just to clarify, what goes into the half hour field for example? Do you put "10:30" in there for every record between "10:01" and "10:30"? Or do you put a 1 for first half hour and a 2 for second half hour? This is the structure I was thinking of: Seconds from midnight (int) -- KEY 12...
  14. jem122974

    Handling time in a date/time field

    Thanks for the feedback. That is the direction I'll head...
  15. jem122974

    Star Schemas and Date/Time Fields

    Problem 1 - In this case my users want to query live data so I can't use an ETL tool. I need to just model this in FM into a star schema. Currently I'm using the function in a MS SQL view and then importing this view into FM instead of the original table. Is there a better way, short of...

Part and Inventory Search

Back
Top