CrazyEngineers
Howdy guest!
Dear guest, you must be logged-in to participate on CrazyEngineers. We would love to have you as a member of our community. Consider creating an account or login.
Replies
  • Kaustubh Katdare

    AdministratorNov 26, 2008

    Note: Please do NOT use SMS language while posting on CE Forums.

    Taken from: #-Link-Snipped-#

    The servletrunner is located in the bin directory of the JSDK. As an example, I've installed the JSDK in a directory named C:\JSDK2.0 on my Windows PC, so the servletrunner is located in C:\JSDK2.0\BIN.

    Starting Servelet Runner:

    You can start the servletrunner in a variety of ways, but here's how I do it:

    1. Create the servlet you want to deploy to your web server.
    2. Copy the servlet to the C:\JAVA\JSDK2.0 directory.
    3. Open a DOS window (Unix users: open a terminal/console window or telnet session). Use the cd command to move to the C:\JAVA\JSDK2.0 directory.
    4. On a Windows PC, I start the servletrunner by running a small batch file I created for this purpose (see Listing 1).
    5. Open Netscape (or another browser).
    6. In Netscape, I enter the URL for the servlet to be tested. As an example, if the servlet is named myservlet, the URL will be "https://localhost:8080/servlet/myservlet". (Note that the servletrunner listens on port 8080 by default.)
    7. At this time, the output of your servlet should appear in your browser.
    Note that if you have a more complicated Java servlet that requires the passing of parameters to the servlet, you'll have a few more steps to follow before starting the servletrunner.

    REM 
    REM  SRUNNER.BAT 
    REM  ----------- 
    REM 
    REM  PURPOSE:  Run the JSDK 'servletrunner' 
    REM 
    REM  JDK installed in C:\JAVA\JDK1.1.5 
    REM  JSDK installed in C:\JAVA\JSDK2.0  set PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\JAVA\JDK1.1.5\BIN;C:\JAVA\JSDK2.0\BIN  
    set CLASSPATH=C:\JAVA\JSDK2.0\LIB\JSDK.JAR;C:\JAVA\JDK1.1.5\LIB\CLASSES.ZIP  
    bin\servletrunner -d . 
    Hope this helps.
    Are you sure? This action cannot be undone.
    Cancel
  • siyawatch

    MemberSep 2, 2012

    Here is the link for JSDK 2.0

    #-Link-Snipped-#
    Are you sure? This action cannot be undone.
    Cancel
Home Channels Search Login Register