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: ZePAG
  • Order by date
  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
  16. ZePAG

    JSP Cache Problem??

    Maybe you already found the answer to your problems, but this may be a clue : look for cache systems at all the levels of the process. It may be a cache problem from your IIS Server... See You on the http://www.zepag.fr.st (French language but you can post the forum in english) ZEPAG over ZENET
  17. ZePAG

    JSP Cache Problem??

    Thank you very much, I found this code this morning and it quite helped me out of this mess. This really was the answer to my problem!! See You on the www ZEPAG over ZENET
  18. ZePAG

    JSP Cache Problem??

    Hello everybody, I have a problem using jsp for database access Apache or tomcat seem to keep my pages in cache. I often have to refresh my page to see the result of my request (insert or delete). Is there a simple way to help them caching away?? :o) See you on the www. ZEPAG
  19. ZePAG

    HTMLEncoder???

    I'm looking for a class that does exactly like URLEncoder, but for HTML encoding, could someone help me finding this?? Thanks :o) ZEPAG
  20. ZePAG

    missing mslng32.dll

    Hello World!! :o) I've got a problem at WinME startup : Missing MSlng32.dll anybody knows the use of this?? I know it disappeared with or is needed by Intelli(?)mouse Plus now Explorer.exe and My Computer often crash!! maybe there is a way to repair this Thanks for your responses, World!!

Part and Inventory Search

Back
Top