• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Migrating to Unix

 
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 folks

i have done the application migration from windows to UNIX.
same application works in windows but not in UNIX.

public SqlManager(HttpServletRequest request)
throws SQLException,IOException,SeptoUserException{
currentRequest = request;
System.out.println(request);
currentRequest = request;
System.out.println(currentRequest);
currentSession = currentRequest.getSession();
System.out.println(currentSession);
setConnection();
SeptoUser user = getSeptoUser();
}

after this line in BOLD
currentSession = currentRequest.getSession()

the execution stops in UNIX and in windows whole application is perfectly

no exceptions were looged in UNIX console when i tried to debug.
i tried to print request object it is getting created perfectly on UNIX Tomcat console but after that session object nothing is printed and execution stops there .
i dont know why this is happenning ?
as Java is paltform independent why same code is working on WINDOWS and not on UNIX.


thanks for any help!

[Edit by Dave - removed the shouting and excessive exclaimation points]
[ May 23, 2006: Message edited by: David O'Meara ]
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ankur:

Please fix your display name. We require a first name and last name or we delete accounts.

Pleasd use meaningful subjects.
Please don't shout.
Please post in the correct forum.

Moving to Java in general (intermediate)

Dave
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic