• 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
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Fed Up with the problems of Oracle Application Server

 
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am facing lot of problems with Oracle Application Server when i make any changes in .java file and compile. Class Files are not getting updated and each and every time i have to re-start the server, i donno wht is the problem and many times getting Internal Server Error and to overcome this have to Restart the system...Fed up with the problems
kindly solve this problem.......
 
Ranch Hand
Posts: 1157
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Raghavender,
Could you let us know the error/expecption that you are getting.Perhaps we might be able to help you.
Regards,
 
raghavender rao
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
no exception no error....
for ex:

first time:
public void disp(){
out.println("Hello...");
}
when u compile this and run this on browser it displays

" Hello... "
and when u make some changes like
public void disp(){
out.println("Hello...");
out.println("Bye...");
}
and when u compile this and run, the output is same
" Hello... "
wht cd be the problem....
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
OAS is not very good at refreshing the class files automatically. I suggest you to use 9iAS instead.
reply
    Bookmark Topic Watch Topic
  • New Topic