Here is the complete list of the jar in my project. ( to be honest, there are a lot of them i do not use :)
lib:
activation-1.0.2.jar
aspectjrt-1.0.5.jar
cactus-1.4.1.jar
commons-beanutils.jar
commons-betwixt-1.0-dev.jar
commons-codec-1.0-dev.jar
commons-collections.jar
commons-configuration-1.0-dev.jar
commons-dbcp-1.0-dev-20020806.jar
commons-digester-1.2.jar
commons-email-0.1-dev.jar
commons-fileupload-1.0-dev.jar
commons-http.jar
commons-io.jar
commons-lang.jar
commons-logging-1.0-dev.jar
commons-pool.jar
commons-util-1.0-rc2-dev.jar
commons-xo-1.0-dev.jar
dnsjava-1.2.4.jar
dom4j-1.3.jar
fulcrum-3.0-b2-dev.jar
jakarta-regexp-1.3-dev.jar
JavaGroups-2.0.jar
jcs-1.0-dev.jar
jdbc2_0-stdext.jar
junit-3.7.jar
log4j-1.2.6.jar
lucene-1.2.jar
mail-1.3.jar
mm.mysql-2.0.14-bin.jar
postgresql-7.2.1.jar
stratum-1.0-b2-dev.jar
torque-3.0-b4-dev.jar
turbine-3.0-alpha-1.jar
velocity-1.4-dev.jar
village-1.5.3.jar
xerces-1.4.4.jar
Same for the turbine configuration, a lot of thing i do not use and could uncomment,
# -------------------------------------------------------------------
# $Id: TurbineResources.properties,v 1.105 2002/06/20 18:13:37 jmcnally Exp $
#
# This is the configuration file for Turbine.
#
# Note that strings containing "," (comma) characters must backslash
# escape the comma (i.e. '\,')
#
# -------------------------------------------------------------------
# -------------------------------------------------------------------
#
# S Y S T E M P R O P E R T I E S
#
# -------------------------------------------------------------------
# Your mail server for outgoing email.
#
# Default: null
system.mail.host=mail.server
# SMTP-From header for your outgoing messages
#
# All failed delivery messages will be returned to this address.
# If unset, these messages will be sent to the address in the
# From header (standard behaviour)
#
# Default: null
[EMAIL PROTECTED]
# -------------------------------------------------------------------
#
# L O G G I N G
#
# -------------------------------------------------------------------
# We use Log4J for all Turbine logging and we embed the log4j
# properties within our application configuration.
#
# NOTE:
# The presence of ${applicationRoot} in the logging configuration
# is not a mistake. Internally the value of ${applicationRoot}
# is set so that you can use it with standard log4j
# properties to get logs to appear in your
# webapp space.
# -------------------------------------------------------------------
# This first category is required and the category
# must be named 'default'. This is used for all logging
# where an explicit category is not specified (when using the Log
# utility class). It should be set to write to the same appender
# as the org.apache.turbine category.
log4j.category.default = DEBUG, turbine
# This category is used by myEvents.
log4j.category.com.clavie.myEvents = DEBUG, myEvents
log4j.appender.myEvents = org.apache.log4j.ConsoleAppender
log4j.appender.myEvents.file = ${applicationRoot}/logs/myEvents.log
log4j.appender.myEvents.layout = org.apache.log4j.PatternLayout
log4j.appender.myEvents.layout.conversionPattern = %d [%t] %-5p %c - %m%n
log4j.appender.myEvents.append = true
# This category is used by myEvents' email.
log4j.category.com.clavie.myEventsEmail = DEBUG, myEventsEmail
log4j.appender.myEventsEmail = org.apache.log4j.FileAppender
log4j.appender.myEventsEmail.file = ${applicationRoot}/logs/myEventsEmail.log
log4j.appender.myEventsEmail.layout = org.apache.log4j.PatternLayout
log4j.appender.myEventsEmail.layout.conversionPattern = %d [%t] %-5p %c - %m%n
log4j.appender.myEventsEmail.append = true
# This category is used by Turbine.
log4j.category.org.apache.turbine = DEBUG, turbine
log4j.appender.turbine = org.apache.log4j.FileAppender
log4j.appender.turbine.file = ${applicationRoot}/logs/turbine.log
log4j.appender.turbine.layout = org.apache.log4j.PatternLayout
log4j.appender.turbine.layout.conversionPattern = %d [%t] %-5p %c - %m%n
log4j.appender.turbine.append = false
# This category is used by Torque.
log4j.category.org.apache.torque = DEBUG, torque
log4j.appender.torque = org.apache.log4j.FileAppender
log4j.appender.torque.file = ${applicationRoot}/logs/torque.log
log4j.appender.torque.layout = org.apache.log4j.PatternLayout
log4j.appender.torque.layout.conversionPattern = %d [%t] %-5p %c - %m%n
log4j.appender.torque.append = false
# This category is used by Fulcrum the services framework.
log4j.category.org.apache.fulcrum = INFO, services
log4j.appender.services = org.apache.log4j.FileAppender
log4j.appender.services.file = ${applicationRoot}/logs/services.log
log4j.appender.services.layout = org.apache.log4j.PatternLayout
log4j.appender.services.layout.conversionPattern = %d [%t] %-5p %c - %m%n
log4j.appender.services.append = false
# This category is used by Stratum.
log4j.category.org.apache.stratum = INFO, stratum
log4j.appender.stratum = org.apache.log4j.FileAppender
log4j.appender.stratum.file = ${applicationRoot}/logs/stratum.log
log4j.appender.stratum.layout = org.apache.log4j.PatternLayout
log4j.appender.stratum.layout.conversionPattern = %d [%t] %-5p %c - %m%n
log4j.appender.stratum.append = false
# This category is used by JCS.
log4j.category.org.apache.jcs = INFO, jcs
log4j.appender.jcs = org.apache.log4j.FileAppender
log4j.appender.jcs.file = ${applicationRoot}/logs/jcs.log
log4j.appender.jcs.layout = org.apache.log4j.PatternLayout
log4j.appender.jcs.layout.conversionPattern = %d [%t] %-5p %c - %m%n
log4j.appender.jcs.append = false
# Setup the db service to use the same appender as torque
log4j.category.org.apache.fulcrum.db = DEBUG, torque
# Setup the beanutils to use the same appender as turbine
log4j.category.org.apache.commons.beanutils = DEBUG, turbine
# -------------------------------------------------------------------
#
# M O D E
#
# -------------------------------------------------------------------
# If this turbine app will always be invoked from another application
# mode can be set to integrated which will cause Turbine to pass any
# errors up to the application that invoked Turbine. Under standalone
# operation, Turbine swallows the error after sending an error page
# as the response. If this Turbine application operates both as a
# normal webapp and can be invoked from another application, set the
# mode to standalone and see the Turbine servlet's javadoc for method
# to set the mode on a request basis.
#
# Possible values: standalone, integrated
# Default: standalone
# -------------------------------------------------------------------
turbine.mode = standalone
# -------------------------------------------------------------------
#
# R E S O L V E R
#
# -------------------------------------------------------------------
# This determines what resolver to use to find modules and templates.
# The DefaultResolver uses the ModuleLoader's algorithm (see below) to
# find modules
#
# Default: org.apache.turbine.pipeline.DefaultResolver
# -------------------------------------------------------------------
resolver.default = org.apache.turbine.pipeline.DefaultResolver
# -------------------------------------------------------------------
#
# R E S O L V E R C A C H I N G
#
# This determines if caching is on for modules and templates. It replaces
# the <module.cache> property.
#
# Default: false
# -------------------------------------------------------------------
resolver.cache.template = false
resolver.cache.module = false
# -------------------------------------------------------------------
#
# M O D U L E P A C K A G E S
#
# -------------------------------------------------------------------
# This is the "classpath" for Turbine. In order to locate your own
# modules, you should add them to this path. For example, if you have
# com.company.actions, com.company.screens, com.company.navigations,
# then this setting would be "com.company,org.apache.turbine.modules".
# This path is searched in order. For example, Turbine comes with a
# screen module named "Login". If you wanted to have your own screen
# module named "Login", then you would specify the path to your
# modules before the others.
#
# Default: org.apache.turbine.modules
# -------------------------------------------------------------------
module.packages=com.clavie.myEvents.modules
# These are the default modules to emulate the Turbine
# 2.1 page/layout/nav/screen system.
module.default.actions = actions.TemplateAction
module.default.layouts = Module
module.default.navigations = Module
module.default.screens = Module
# You can define any module type you wish here and
# they will be added to Turbine's module processing
# system. You must provide a default module!
#
# module.default.woogy = Boogie
# module.default.floogy = Moogie
# Turbine's default Pipeline implementation uses a (pluggable)
# descriptor to define which Valves it consists of.
pipeline.default = org.apache.turbine.pipeline.TurbinePipeline
pipeline.default.descriptor = com/clavie/myEvents/myEvents-pipeline.xml
pipeline.default.targetModuleType = screens
template.default = /Index
template.default.extension = vm
# -------------------------------------------------------------------
#
# F R A M E W O R K S E T T I N G S
#
# -------------------------------------------------------------------
# The are settings that control the behaviour of the framework,
# such as determining whether a template system is in use, what
# the default templates and screens are and session handling settings.
# -------------------------------------------------------------------
# This is the template that is shown on an incorrect login attempt.
# Setting this property will override any value of screen.login specfied
# below.
#
# Default: Login
template.login=/accounts/Login.vm
template.logout=/accounts/Logout.vm
# Used to set the template homepage if you are using a template
# layout.
#
# Default: /index.wm
template.homepage=/Home.vm
template.homepage.Home=/homes/Home.vm
template.homepage.HomeModule=/homes/HomeModule.vm
# This is the template that is used by the respective Template based
# ErrorScreen for displaying the error. If you are not using a Template based
# ErrorScreen, then this is ignored.
#
# Default: /Error.wm
template.error=/others/Error.vm
# This is the default action to log a user in.
# Default: LoginUser
action.login=Login
# This is the default action to log a user out.
action.logout=Logout
# This is the default action to validate whether or not a session is
# valid. For example, if you want to make sure if a user has already
# logged in or not.
#
# Default: SessionValidator
action.sessionvalidator=TemplateSessionValidator
# This is the timeout in seconds for sessions. If left commented out, the
# servlet container's default timeout will be left as is.
# session.timeout = 1800
# This is the default action that builds up the AccessControlList for
# the individual users session.
action.accesscontroller=AccessController
# Set the default Doctype. The default Doctype can be set by using
# the single strings: Html40Strict, Html40Transitional, or
# Html40Frameset. Additionally the default can be supplied as two
# strings separated by a comma giving the DTD and URI.
#
# Default: ignored if not set to some value.
default.doctype=Html40Transitional
# -------------------------------------------------------------------
#
# J N D I C O N T E X T S
#
# -------------------------------------------------------------------
# This indicates whether Turbine should try to create JNDI contexts.
#
# Default: false
#
# contexts=true
# These are the JNDI context properties. Each context's properties
# are defined by the properties beginning with context.name.
#
# Default: none
#
# Example: The following will create a JNDI context named "name" in
# the data.contexts Hashtable. It will point at the RMI registry on
# localhost running on port 1099, and will use
# com.sun.jndi.rmi.registry.RegistryContextFactory as the initial
# context factory:
#
# context.name.java.naming.provider.url=rmi://localhost:1099
# context.name.java.naming.factory.initial=com.sun.jndi.rmi.registry.Regis tryContextFactory
# -------------------------------------------------------------------
#
# M E S S A G E S
#
# -------------------------------------------------------------------
# Note that strings containing "," (comma) characters must backslash
# escape the comma (i.e. '\,')
# The message that can be displayed before a user logs in.
login.message=Thank you for your visit. Please log into the system.
# The message that can be displayed when no screen is defined.
login.message.noscreen=There has been an error. Your session is valid but the screen variable is not defined.
# The message that can be displayed when a user enters an incorrect
# password or username.
login.error=Sorry your username or password is incorrect!
# The message that can be displayed when a user logs out.
logout.message=Thank you for using the system. Please come back soon.
# -------------------------------------------------------------------
#
# S E C U R E S O C K E T S L A Y E R
#
# -------------------------------------------------------------------
# Whether the web server is able to use SSL. Links in Turbine can
# check this property to determine if SSL can be used.
#
# Default: true
# -------------------------------------------------------------------
use.ssl=true
# -------------------------------------------------------------------
#
# S E R V I C E S
#
# -------------------------------------------------------------------
# Classes for Turbine Services should be defined here.
# Format: services.[name].classname=[implementing class]
#
# To specify properties of a service use the following syntax:
# service.[name].[property]=[value]
#
# The order that these services is listed is important! The
# order that is stated here is the order in which the services
# will be initialized. Keep this is mind if you have services
# that depend on other services during initialization.
# -------------------------------------------------------------------
services.FactoryService.classname=org.apache.fulcrum.factory.TurbineFact oryService
services.PoolService.classname=org.apache.fulcrum.pool.TurbinePoolServic e
services.MimeTypeService.classname=org.apache.fulcrum.mimetype.TurbineMi meTypeService
services.SchedulerService.classname=org.apache.fulcrum.schedule.TurbineS chedulerService
#services.XmlRpcService.classname=org.apache.fulcrum.xmlrpc.TurbineXmlRp cService
services.UploadService.classname=org.apache.fulcrum.upload.TurbineUpload Service
#services.SecurityService.classname=org.apache.fulcrum.security.impl.db. DBSecurityService
services.SecurityService.classname=com.clavie.myEvents.services.security .MyEventsDBSecurityService
#services.DatabaseService.classname=org.apache.fulcrum.db.TurbineDatabas eService
#services.XSLTService.classname=org.apache.fulcrum.xslt.TurbineXSLTServi ce
#services.BSFService.classname=org.apache.fulcrum.bsf.TurbineBSFService
services.GlobalCacheService.classname=org.apache.fulcrum.cache.TurbineGl obalCacheService
services.TemplateService.classname=org.apache.fulcrum.template.TurbineTe mplateService
services.EmailService.classname=com.clavie.myEvents.services.email.Turbi neEmailService
services.RunDataService.classname=org.apache.turbine.services.rundata.Tu rbineRunDataService
services.LocalizationService.classname=org.apache.fulcrum.localization.T urbineLocalizationService
services.PullService.classname=org.apache.turbine.services.pull.TurbineP ullService
services.IntakeService.classname=org.apache.fulcrum.intake.TurbineIntake Service
# Turn on the appropriate template service.
services.VelocityService.classname=org.apache.fulcrum.velocity.TurbineVe locityService
# -------------------------------------------------------------------
#
# D A T A B A S E S E R V I C E
#
# -------------------------------------------------------------------
# These are your database settings. Look in the
# org.apache.turbine.util.db.pool.* packages for more information.
# The default driver for Turbine is for MySQL.
#
# The parameters to connect to the default database. You MUST
# configure these properly.
# -------------------------------------------------------------------
torque.database.default=scarab
torque.database.scarab.adapter=mysql
## Using Jdbc2Pool
torque.dsfactory.scarab.factory=\
org.apache.torque.dsfactory.Jdbc2PoolDataSourceFactory
torque.dsfactory.scarab.pool.defaultMaxActive=30
torque.dsfactory.scarab.pool.testOnBorrow=true
torque.dsfactory.scarab.pool.validationQuery=SELECT 1
torque.dsfactory.scarab.connection.driver = org.gjt.mm.mysql.Driver
torque.dsfactory.scarab.connection.url = jdbc:mysql://url:3306/myEvents
torque.dsfactory.scarab.connection.user = root
torque.dsfactory.scarab.connection.password = password
# Determines if the quantity column of the IDBroker's id_table should
# be increased automatically if requests for ids reaches a high
# volume.
torque.idbroker.clever.quantity=false
# Determines if IDBroker should prefetch IDs or not. If set to false
# this property has the effect of shutting off the housekeeping thread
# that attempts to prefetch the id's. It also sets the # of id's grabbed
# per request to 1 regardless of the settings in the database.
# Default: true
torque.idbroker.prefetch=true
# IDBroker can grab its own connection from the pool to use when retrieving
# more id's to minimize the amount of time ID_TABLE will be locked.
# Some usage of IDBroker or assumptions made by connection pools or jdbc
# drivers may disallow this optimization in which case the property
# should be set to false.
torque.idbroker.usenewconnection=true
# Determines whether the managers cache instances of the business objects.
# And also whether the MethodResultCache will really cache results.
#added Aug 25th, build file not changed yet
#torque.manager.useCache = @TORQUE_MANAGER_CACHE@
torque.manager.useCache = false
# -------------------------------------------------------------------
#
# R U N D A T A S E R V I C E
#
# -------------------------------------------------------------------
# Default implementations of base interfaces for request processing.
# Additional configurations can be defined by using other keys
# in the place of the <default> key.
# -------------------------------------------------------------------
services.RunDataService.default.run.data=org.apache.turbine.services.run data.DefaultTurbineRunData
services.RunDataService.default.parameter.parser=org.apache.turbine.Para meterParser
services.RunDataService.default.cookie.parser=org.apache.fulcrum.util.pa rser.DefaultCookieParser
# -------------------------------------------------------------------
#
# C A C H E S E R V I C E
#
# -------------------------------------------------------------------
# Interval at which the cache will be checked. The default is
# 5000ms or 5 seconds.
services.GlobalCacheService.cacheCheckFrequency = 5000
# -------------------------------------------------------------------
#
# B S F S E R V I C E
#
# -------------------------------------------------------------------
services.BSFService.scriptsDirectory = WEB-INF/scripts
services.BSFService.defaultExtension = py
# -------------------------------------------------------------------
#
# P U L L S E R V I C E
#
# -------------------------------------------------------------------
# These are the properties for the Pull Service, the service
# that works in conjuction with the Turbine Pull Model API.
# -------------------------------------------------------------------
# This determines whether the non-request tools are refreshed
# on each request (request tools aren't ever, because they're
# instantiated for the request only anyway).
services.PullService.toolsPerRequestRefresh=true
# These are tools that are placed in the context by the service
# These tools will be made available to all your
# templates. You list the tools in the following way:
#
# services.PullService.tool.<scope>.<id> = <classname>
#
# <scope> is the tool scope: global, request, session
# or persistent (see below for more details)
# <id> is the name of the tool in the context
#
# You can configure the tools in this way:
# services.PullService.tool.<id>.<parameter> = <value>
#
# So if you find "global", "request", "session" or "persistent" as second
# part, it is a configuration to put a tool into the toolbox, else it is a
# tool specific configuration.
#
# For example:
#
# services.PullService.tool.global.ui = org.apache.turbine.tool.UIManager
# services.PullService.tool.global.mm = org.apache.turbine.tool.MessageManager
# services.PullService.tool.request.link = org.apache.turbine.tool.TemplateLink
# services.PullService.tool.request.page = org.apache.turbine.util.template.TemplatePageAttributes
#
# Then:
#
# tool.ui.skin = default
#
# configures the value of "skin" for the "ui" tool.
#
# Tools are accessible in all templates by the <id> given
# to the tool. So for the above listings the UIManager would
# be available as $ui, the MessageManager as $mm, the TemplateLink
# as $link and the TemplatePageAttributes as $page.
#
# You should avoid using tool names called "global", "request",
# "session" or "persistent" because of clashes with the possible Scopes.
#
# Scopes:
#
# global: tool is instantiated once and that instance is available
# to all templates for all requests. Tool must be threadsafe.
#
# request: tool is instantiated once for each request (although the
# PoolService is used to recycle instances). Tool need not
# be threadsafe.
#
# session: tool is instantiated once for each user session, and is
# stored in the user's temporary hashtable. Tool should be
# threadsafe.
#
# persistent: tool is instantitated once for each use session, and
# is stored in the user's permanent hashtable. This means
# for a logged in user the tool will be persisted in the
# user's objectdata. Tool should be threadsafe and
# Serializable.
#
# Defaults: none
services.PullService.tool.request.link=org.apache.turbine.tool.TemplateL ink
services.PullService.tool.request.page=org.apache.turbine.tool.TemplateP ageAttributes
services.PullService.tool.request.content=org.apache.turbine.tool.Conten tURI
services.PullService.tool.request.date=com.clavie.myEvents.tool.DateTool
# These are intake tools.
services.PullService.tool.request.intake=org.apache.turbine.tool.IntakeT ool
#services.PullService.tool.global.ui=org.apache.turbine.tool.UIManager
# added by David Worms August 07,2002
services.PullService.tool.global.mimeType=com.clavie.myEvents.tool.MimeT ypeTool
services.PullService.earlyInit = true
# -------------------------------------------------------------------
#
# T E M P L A T E S E R V I C E
#
# -------------------------------------------------------------------
# There is no configuration anymore, just an abstract front
# end to underlying template engines like velocity, webmacro,
# and JSP.
# -------------------------------------------------------------------
#
# V E L O C I T Y S E R V I C E
#
# -------------------------------------------------------------------
# The location of Velocity configuration file, relative to webapp root
# These properties will override the default properties set by Velocity.
# You should specify the path to the templates directories as well as
# the path to the log file and they should also be relative to webapp root
services.VelocityService.template.extension=vm
services.VelocityService.default.page.template = /Home.vm
services.VelocityService.default.layout.template = /Home.vm
#used in previous version of turbine TO TRY *********
#services.VelocityService.default.page = VelocityPage
services.VelocityService.runtime.log=/logs/velocity.log
#services.VelocityService.input.encoding=8859_1
#services.VelocityService.output.encoding=8859_1
services.VelocityService.velocimacro.library = macros/GlobalMacros.vm, macros/FormMacros.vm
services.VelocityService.resource.loader = file
services.VelocityService.file.resource.loader.description = Velocity File Resource Loader
services.VelocityService.file.resource.loader.class = org.apache.velocity.runtime.resource.loader.FileResourceLoader
services.VelocityService.file.resource.loader.path = /WEB-INF/templates
# TODO isert the cache service false, also present in the pipeline
services.VelocityService.file.resource.loader.cache = false
services.VelocityService.file.resource.loader.modificationCheckInterval = 2
services.VelocityService.resource.loader = classpath
services.VelocityService.classpath.resource.loader.description = Velocity Classpath Resource Loader
services.VelocityService.classpath.resource.loader.class = org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
services.VelocityService.velocimacro.permissions.allow.inline.to.replace .global=true
services.VelocityService.velocimacro.library.autoreload=true
# QUESTION is this required?
#services.VelocityService.eventCartridge.classes = com.clavie.myEvents.util.ReferenceInsertionFilter
services.VelocityService.earlyInit = true
# -------------------------------------------------------------------
#
# U P L O A D S E R V I C E
#
# -------------------------------------------------------------------
# Whether the files should be automatically picked up by
# ParameterParser.
services.UploadService.automatic=true
#
# The directory where files will be temporarily stored.
#
services.UploadService.repository=WEB-INF/temp
#
# The maximum size of a request that will be processed.
#
services.UploadService.size.max=16777216
#
# The maximum size of a request that will have it's elements cached in
# memory by TurbineUploadService class.
#
# services.UploadService.size.threshold=8192
services.UploadService.size.threshold=10050
# -------------------------------------------------------------------
#
# L O C A L I Z A T I O N S E R V I C E
#
# -------------------------------------------------------------------
# Default ResourceBundle and language/country codes used by the
# TurbineLocalizationService.
#
services.LocalizationService.locale.default.bundle=MyEventsBundle
#services.LocalizationService.locale.default.language=ko
#services.LocalizationService.locale.default.country=KR
services.LocalizationService.locale.default.language=en
services.LocalizationService.locale.default.country=US
#
# This will set the charset= portion of the ContentType: header.
# Leave commented out unless you want to return stuff as a different
# charset.
#
services.LocalizationService.locale.default.charset=8859_1
# -------------------------------------------------------------------
#
# M I M E T Y P E S E R V I C E
#
# -------------------------------------------------------------------
# This property specifies a file containing mappings between MIME
# content types and the corresponding file name extensions. The
# service itself contains a hardcoded set of most common mappings.
# The file must use the same syntax as the mime.types file of
# the Apache Server, i.e.
# <mimetype> <ext1> <ext2>...
#
#services.MimeTypeService.mime.types=/WEB-INF/conf/mime.types
# This property specifies a file containing mappings between locales
# and the corresponding character encodings. The service itself
# contains a hardcoded set of most common mappings.
# The file should use the Java property file syntax, i.e.
# <lang_country_variant>=<charset>
#
#services.MimeTypeService.charsets=/WEB-INF/conf/charset.properties
# -------------------------------------------------------------------
#
# S C H E D U L E R S E R V I C E
#
# -------------------------------------------------------------------
#
# Set enabled to true to start the scheduler.
#
# Default = false
#
services.SchedulerService.earlyInit = false
# -------------------------------------------------------------------
#
# S E C U R I T Y S E R V I C E
#
# -------------------------------------------------------------------
#
# This is the class that implements the User interface.
# You want to override this setting only if you want your User
# implementation to provide application specific addtional
# functionality.
#
# Default: org.apache.fulcrum.security.impl.db.entity.TurbineUser
#
services.SecurityService.user.class=com.clavie.myEvents.om.MyEventsUserI mpl
#
# This setting is DBSecurityService specific - this class is consulted for the names
# of the columns in the users' tables for the purpose of creating join queries.
# If you use your own User implementation in conjunction with DBSecurityService,
# it's peer class must implement org.apache.turbine.om.security.peer.UserPeer interface,
# and you need to specify the name of the peer class here.
#
# Defalut: org.apache.turbine.om.security.peer.TurbineUserPeer
#
services.SecurityService.userPeer.class=com.clavie.myEvents.om.MyEventsU serImplPeer
#
# This is the class that implements UserManager interface.
# Override this setting if you want your User information stored
# on a different medium (LADP directory is a good example).
# Default implementation uses Peers and a relational database .
#
services.SecurityService.user.manager=org.apache.fulcrum.security.impl.d b.DBUserManager
#
# This is used by the SecurityService to make the password checking
# secure. When enabled, passwords are transformed by a one-way
# function into a sequence of bytes that is base64 encoded.
# It is impossible to guess the plain-text form of the password
# from the representation. When user logs in, the entered password
# is transformed the same way and then compared with stored value.
#
# Default: false
#
services.SecurityService.secure.passwords=true
#
# This property lets you choose what digest algorithm will be used
# for encrypting passwords. Check documentation of your JRE for
# available algorithms.
#
# Default: SHA
#
services.SecurityService.secure.passwords.algorithm=SHA
# -------------------------------------------------------------------
#
# X M L R P C S E R V I C E
#
# -------------------------------------------------------------------
# This property specifies which class should be used to parse
# xml for XmlRpc functionality.
#
# Default: org.apache.xerces.parsers.SAXParser
##services.XmlRpcService.parser=org.apache.xerces.parsers.SAXParser
# This property specifies which port the server part of the XmlRpc
# should listen, if it is active.
#
# Default: 12345
##services.XmlRpcService.port=12345
# If any classes are specified here, the Service will create an
# instance of them here and start up a listener on the specified
# port.
#
# Note that the handlers demonstrated are not very useful. You
# will have to invent your own services. They do however
# illustrate that any class with a default constructor can be
# added here
#
# The handler parameter without further extension determines
# the default handler for the service
#
# Default: no classes are specified by default
##services.XmlRpcService.handler.$default=java.util.Hashtable
##services.XmlRpcService.handler.stringhandler=java.lang.String
# The following properties allow the transfer of data between
# separate Turbine applications running on different servers.
# This allows B2B type behavior such as sending database
# updates in the form of XML or whatever type of data
# that needs to be shared between Turbine applications
# running on separate servers.
#services.XmlRpcService.handler.file = org.apache.fulcrum.xmlrpc.util.FileHandler
##services.XmlRpcService.paranoid = false
##services.XmlRpcService.acceptClient = 127.0.0.1
##services.XmlRpcService.denyClient = *
# Do we want a secure server
##services.XmlRpcService.secure.server = false
# Secure server options
##services.XmlRpcService.secure.server.option.java.protocol.handler.pkgs = \
## com.sun.net.ssl.internal.www.protocol
##services.XmlRpcService.secure.server.option.security.provider = \
## com.sun.net.ssl.internal.ssl.Provider
##services.XmlRpcService.secure.server.option.security.protocol = TLS
# You probably want to keep your key stores and trust stores
# clear out of your webapp.
##services.XmlRpcService.secure.server.option.javax.net.ssl.keyStore = /tmp/keystore
##services.XmlRpcService.secure.server.option.javax.net.ssl.keyStoreType = jks
##services.XmlRpcService.secure.server.option.javax.net.ssl.keyStorePass word = password
##services.XmlRpcService.secure.server.option.javax.net.ssl.trustStore = /tmp/truststore
##services.XmlRpcService.secure.server.option.javax.net.ssl.trustStoreTy pe = jks
##services.XmlRpcService.secure.server.option.javax.net.ssl.trustStorePa ssword = password
##services.XmlRpcService.secure.server.option.sun.ssl.keymanager.type = SunX509
##services.XmlRpcService.secure.server.option.sun.ssl.trust.manager.type = SunX509
# These values should be set to 'all' for debugging purposes.
##services.XmlRpcService.secure.server.option.javax.net.debug = none
##services.XmlRpcService.secure.server.option.java.security.debug = none
##services.XmlRpcService.earlyInit = true
# -------------------------------------------------------------------
#
# P O O L S E R V I C E
#
# -------------------------------------------------------------------
# Default capacity of pools of the Object pooling service.
#
# Default: 128
services.PoolService.pool.capacity = 128
# Class specific capacities used instead of the default if specified.
#
#services.PoolService.pool.capacity.org.apache.turbine.services.rundata. DefaultTurbineRunData=512
# -------------------------------------------------------------------
#
# F A C T O R Y S E R V I C E
#
# -------------------------------------------------------------------
# A comma separated list of classloaders (very optional)
#
# Example: org.foo.bar.MyClassLoader, org.ack.joe.YourClassLoader
#
#services.FactoryService.class.loaders=
# Customized factories to be used instead of the default factory.
# E.g. to instantiate XML parsers, SSL sockets, etc., which require
# specific instantiation not supported by the default factory.
# The property name is prefixed with "factory" followed by the
# name of the production class. The value is the class name of
# the factory implementing the Factory interface. The factory
# will be instantiated by using the service itself.
#
# Examples:
#
# services.FactoryService.factory.javax.xml.parsers.DocumentBuilder=org.fo o.xml.DomBuilderFactory
# services.FactoryService.factory.javax.xml.parsers.SAXParser=org.foo.xml. SaxParserFactory
# services.FactoryService.factory.java.net.ServerSocket=org.foo.net.SslSer verSocketFactory
# -------------------------------------------------------------------
#
# I N T A K E S E R V I C E
#
# -------------------------------------------------------------------
# The location of the xml file specifying valid inputs
#
# Example: org.foo.bar.MyClassLoader, org.ack.joe.YourClassLoader
#
services.IntakeService.xml.path=WEB-INF/conf/intake.xml
services.IntakeService.serialize.path=WEB-INF/intake-xml.ser
#--------------------------------------------------------------------
#
# P A R A M E T E R P A R S E R
#
#--------------------------------------------------------------------
#
# This variable controls the case folding applied to URL variable
# names.
#
# Allowed values: none, lower, upper
# Default: lower
#
url.case.folding=lower
# -------------------------------------------------------------------
#
# A D D I T I O N A L P R O P E R T I E S
#
# -------------------------------------------------------------------
# The full path name to an additional properties file. Properties in
# this file will be included in this property set. Duplicate name
# values will be replaced, so be careful.
#
# Default: none
# -------------------------------------------------------------------
include=./MyEvents.properties
include=./Atruity.properties
David Worms
On Saturday, October 19, 2002, at 03:43 AM, Sandra kurt wrote:
hello
I am using at the moment turbine-2.2-b2-dev.jar and want to be able to use b3, but do not know what dependent jar's I should use and what I should change in the configurations?!
any help would be greatly appreciated
Sandra
_________________________________________________________________
Fotos� - �MSN Fotos das virtuelle Fotoalbum. Allen Freunden zeigen oder einfach ausdrucken: http://photos.msn.de/support/worldwide.aspx
--
To unsubscribe, e-mail: <mailto:turbine-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:turbine-user-help@;jakarta.apache.org>
-- To unsubscribe, e-mail: <mailto:turbine-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:turbine-user-help@;jakarta.apache.org>
