• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Problem with Linux

 
Ranch Hand
Posts: 76
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have tomcat and DB installed in a linux machine. I am deploying a war file. When I run the application in the browser, I can enter the user name and password. but after that I get an error page with a line "An Error has occurred in this application. Please check your log files for further information. "

When I check catalina.out, I found an error that said

"ERROR - StandardManager.doLoad(434) | IOException while loading persisted sessions: java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.sfo.web.SelectOptionBean
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.sfo.web.SelectOptionBean "

When I run tomcat in windows, I still get this error but I get the next page in the browser.... that is the application is running.

What could be the error here? why is linux not forcing the application to run?

Thanks,
Angel
 
Ranch Hand
Posts: 293
Mac OS X Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It looks like Linux is not so tolerant. Does it all work if you make com.sfo.web.SelectOptionBean Serializable?

Cheers,

Dave.
 
Saloon Keeper
Posts: 28401
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's never been a good idea to store non-serializable objects in a Session, even though Sun's never actually has come out and officially discouraged it in the JavaDocs.

Tomcat4 had no significant issues, but Tomcat5 is much less tolerant, since part of its clustering ability is predicated on being able to bounce sessions from one VM to another.
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Tim Holloway:
Tomcat4 had no significant issues, but Tomcat5 is much less tolerant, since part of its clustering ability is predicated on being able to bounce sessions from one VM to another.


...and that holds for not just Tomcat 5 but any other J2EE application server or web container that supports session replication.
 
Padma Prasad
Ranch Hand
Posts: 76
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for your responses.

I implemented serializable interface and I don't get that error any more.
But I have a different issue. When I run the application on tomcat server installed on linux, I get the login page and I login with correct username/pwd. But I don't get the next page. Instead I see a page which says "An Error has occurred in this application. Please check your log files for further information.". But when I check catalina.out, there is no error in it. Why am I getting this error? is Linux stopping the application by any chance?

I get this at the url which ends with j_security_check. Don't know if this is a stupid question, but what's about this?

Please help me.

Thanks,
Angel
[ July 25, 2005: Message edited by: Angel Hafer ]
 
Tim Holloway
Saloon Keeper
Posts: 28401
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Check your other logfiles like the localhost log. It should be in one of them.

Catalina.out is mostly for messages from the Tomcat system itself, not apps. It does tend to see some app messages (also I think stdout prints) under Solaris, but not in Linux.
 
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic