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

system.out.println in Tomcat 4.1

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
hwo can I view the system.out.println in Tomcatcat 4.1 in Windows platform. I want to see system.out.println coded in Applet from HTML.

regards
Hari.
 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've never programmed applets, but I do know that they run in the JVM of the browser on the client side.

So system.out.println would always go to the client, not the server-side.

If you only mean 'how to debug', isn't there a java console in most browsers? Would it appear there?
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using the Tomcat on the Linux OS. The system.out.println from the servlets goes into the catalina.out file of the tomcat server. The system.out.println in the applets can be seen with the plugin console.
 
reply
    Bookmark Topic Watch Topic
  • New Topic