You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/09/14 16:52:38 UTC

svn commit: r996928 - /commons/proper/daemon/trunk/src/native/nt/README

Author: sebb
Date: Tue Sep 14 14:52:38 2010
New Revision: 996928

URL: http://svn.apache.org/viewvc?rev=996928&view=rev
Log:
DAEMON-160 - remove obsolete code

Modified:
    commons/proper/daemon/trunk/src/native/nt/README

Modified: commons/proper/daemon/trunk/src/native/nt/README
URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/nt/README?rev=996928&r1=996927&r2=996928&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/nt/README (original)
+++ commons/proper/daemon/trunk/src/native/nt/README Tue Sep 14 14:52:38 2010
@@ -26,65 +26,3 @@ They will not work with earlier versions
 Note that later versions of Visual C++ can be set up to build the applications,
 however they may generate executables linked with a later version of the MS "C"
 runtime library (MSVCRTL), and may not work properly with all versions of Java.
-
-========================
-
-Note: the rest of this file is outdated
-
-Structure of the utilies:
-- bin: exe files.
-- executables/vdmoniadm: project files for the desktop program.
-- executables/vdmonisvc: project files for the sevice wrapper.
-- lib: contains the common include file.
-- moni: contains sources of the vdmoniadm and vdmonisvc.
-- service: contains the sources and the project for the test installer.
-- signals: contains the kill() emulation logic.
-- supcalls_nt: contains the environment emulation logic.
-
-How to use it:
-1 - Build the jsvc.exe (See jakarta-tomcat-4.0/service).
-  It produces:
-  - service.jar
-  - jsvc.exe
-
-2- Create the following directories:
-  c:\home\jakarta\bin
-  c:\home\jakarta\lib
-
-3 - Copy
-  From jakarta-tomcat-4.0/service:
-  service.jar to lib
-  jsvc.exe to bin
-  From winnt:
-  INSTSVC.exe to bin
-  vdmoniadm.exe to bin
-  vdmonisvc to bin.
-
-4 - In a MSDOS windows run INSTSVC
-  It creates all informations to start the service.
-    The service is not started automaticly use control_panel+service and
-    and make it automatic after testing it starts and stops correctly.
-
-  It creates the registry values needed for the environment to start jsvc.exe
-    JAKARTA_HOME
-    CYGWIN (You have to set it to your cygwin directory home).
-    JAVA_HOME (You have to set it to your JAVA_HOME directory).
-    HOSTNAME (not yet used)
-    HOSTPORT (not yet used)
-  I use regedit to modify these values.
-
-5 - Using the explorer go to profiles/allusers/program/startup and add a link
-  to vdmoniadm.exe.
-
-6 - Reboot the machine and logon.
-  You should see a "nice" icon in the System Task-bar indicating that the 
-  Java service is running. A right click on the icon calls a small menu.
-  Restart: (not yet implemented).
-  Configure: (not yet implemented).
-  Stop: Stops the java service.
-
-It is still a work in progress and blabla...
-
-Have fun...
-
- Jean-Frederic <jfrederic.clere AT fujitsu-siemens.com>