• 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

Servlet Runner

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am new to servlet programming,I wrote a servlet and want to execute from the JDeveloper .
I trid ,but it is giving me an error..
pl,help me
suren
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We'd like to help, but without a bit more information it's hard to tell what your problem is. Please let us know the following:
1. what servlet container you are using
2. the full test of the error message you get back
3. what you are trying to do with your servlet
If it's small, you ould also include the code of your servlet. With this information, someone here should be able to help you.
Thanks.
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Servletrunner is a utility comes with JSDK2.0, javaservlet development kit which can be downloaded from www.java.sun.com
It is a utility which can be utilised to execute any servlets
from the address bar of the browser.
It runs default at port no:8080.
Its features are limited as compared to a web server, but however is usefull while learning java servlets.
Only servlet in the local machine and within a lan can be executed using the following command in the address bar of the browser
http://machinename:8080/servlet/SevletClassFileName
 
reply
    Bookmark Topic Watch Topic
  • New Topic