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 ZePAG

  1. ZePAG

    keep getting InvalidClassException

    Or make a Custom class with just the Serializable elements you need from ReloadScheduleTableModel ;). hope I helped anyway. See you ;)
  2. ZePAG

    how to detect if user close the browser

    First you should use DataSources so that you always put your connection back in a pool after a request. And You should never keep a connection in a session between two requests!!
  3. ZePAG

    Implementing a next button

    I think it's better to do paging on server side except if you're sure the user(s) will use only determined browsers. So a session object for the paging would be useful, storing current page, lines per page...etc with methods to navigate thru them and request parameters to command it from buttons...
  4. ZePAG

    keep getting InvalidClassException

    from the javadoc of DefaultTableModel : Warning: serialized objects of this class will not be compatible with future swing releases. The current serialization support is appropriate for short term storage or RMI between Swing1.0 applications. It will not be possible to load serialized Swing1.0...
  5. ZePAG

    keep getting InvalidClassException

    First clue : try to serialize it :) (half-joking) Second Clue : go and see the javadoc to check its attributes.
  6. ZePAG

    keep getting InvalidClassException

    In what you show me, I see 2 things : You declare 2 classes as Serializable (means that YOU declare that every non-static or non-transient attribute of these classes is also Serializable) This doesn't mean that they ARE serializable, but that YOU assume they are. By the way, public class...
  7. ZePAG

    keep getting InvalidClassException

    One more time, check this recursively :) Your class extends DefaultTableModel. Is this other class Serializable?
  8. ZePAG

    keep getting InvalidClassException

    a good link : http://java.sun.com/developer/technicalArticles/ALT/serialization/
  9. ZePAG

    keep getting InvalidClassException

    By the way Serializable only tags your class as one that can be serialized(??) ;) It doesn't explicitly define how this class is serialized. (you let the jvm handle it) To explicitly do it, you have to implement Externalizable. But that's not your point here.
  10. ZePAG

    keep getting InvalidClassException

    Give us the info ;) What is there in your class???? Are all the attributes of this class (or inherent classes) serializable? Let me look for a complete list of what is serializable and what is not. moment please ;)
  11. ZePAG

    keep getting InvalidClassException

    what about the class ReloadScheduleTableModel? Is it serializable??? A serializable class must contain only Serializable elements. ZePag
  12. ZePAG

    Deployment order

    Hi and thanx for your reply... I'm sorry I couldn't post this before but here is something that might be helpful to you in the future. I learned from a BEA Consultant that the proper way to use EJBs and then to manage them easily is to put all of them in the same EJB Jar. This way you can...
  13. ZePAG

    Deployment order

    Sorry but it seems none of these solutions will do it... 1st solution : I don't want to do it from the console, I won't deploy it myself so I want my ear to "do the job by itself" with no other things to do... 2nd solution : I already tried it, it won't work... Even if it's...
  14. ZePAG

    Deployment order

    Hello BEA users! :o) I have a problem with a Session EJB (EJB 2.0) in WLS 6.1. My application is an .ear which contains .war, and .jar (EJBs) When I start my blank Weblogic Server (no apps, "newly installed") One Session EJB won't be deployed... It seems it depends on another EJB to...
  15. ZePAG

    object monitoring

    Is there anyway to monitor component activity with MTS and Windows NT4 SP6 even when there is no transaction support. (number of accesses to the componant, numbre of instances...) or is it only based on transactions??? Fwd Thnx ZEPAG over ZENET

Part and Inventory Search

Back
Top