Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel

Contents

Table of Contents
outlinetrue
stylenone

Implementing the Handle Server on Windows using the Tanuki Service Wrapper

...

More information on the Tanuki project along with the software required can be found at: http://wrapper.tanukisoftware.org/Image Removed

This installation guide will refer to the path of the DSpace installation as dspace, the path of the DSpace source as dspace-src and the path of where the Tanuki software is extracted to as wrapper.

...

3) Register for your handle at http://hdl.handle.net/4263537/5014Image Removed (CNRI Handle.net). You will be required to fill in details about your organisation, pay a small annual fee and upload the sitebndl.zip which was generated in the previous step and can be located in

...

Code Block
# Java Application Path
# i.e. wrapper.java.command=C:/Program Files/Java/jdk1.6.0_04/bin/java
wrapper.java.command=[PATH TO JDK]/bin/java

# Java Classpath (include wrapper.jar)  Add class path elements as needed starting from 1
wrapper.java.classpath.1=[dspace]/config/wrapper.jar
wrapper.java.classpath.2=[dspace]/lib/handle.jar
wrapper.java.classpath.3=[dspace]/lib/*.jar
wrapper.java.classpath.4=[dspace]/config/templates/*
wrapper.java.classpath.5=[dspace]/config/dspace.cfg

# Java Library Path (location of Wrapper.DLL or libwrapper.so)
wrapper.java.library.path.1=[dspace]/config

# Java Additional Parameters
wrapper.java.additional.1=-Ddspace.configuration=[dspace]/config/dspace.cfg
wrapper.java.additional.2=-Ddspace.log.init.disable=true 
wrapper.java.additional.3=-Dlog4j.configuration=log4j-handle-plugin.properties

# Application parameters required to start handle server.  Add parameters as needed starting from 1
wrapper.app.parameter.1=net.handle.server.Main
wrapper.app.parameter.2=[dspace]/handle-server

# Log file to use for wrapper output logging. This needs to be modified from logs to log to write to the DSpace logging directory.
wrapper.logfile=../log/wrapper.log

# Name of the service
wrapper.ntservice.name=DSpaceHandle

# Display name of the service
wrapper.ntservice.displayname=DSpace Handle Service

# Description of the service
wrapper.ntservice.description=DSpace Handle Service

...