glassfish 0.9.3-universal-java → 0.9.4-universal-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/gfrake +1 -1
- data/bin/glassfish +2 -1
- data/bin/glassfish_rails +2 -57
- data/config/asenv.bat +9 -8
- data/config/asenv.conf +9 -5
- data/domains/domain1/config/admin-keyfile +3 -1
- data/domains/domain1/config/cacerts.jks +0 -0
- data/domains/domain1/config/default-web.xml +3 -1
- data/domains/domain1/config/domain.xml +5 -4
- data/domains/domain1/config/glassfish_gem_version.yml +1 -1
- data/domains/domain1/config/keyfile +6 -6
- data/domains/domain1/config/keystore.jks +0 -0
- data/domains/domain1/config/logging.properties +45 -129
- data/domains/domain1/config/login.conf +21 -21
- data/domains/domain1/config/server.policy +1 -1
- data/domains/domain1/config/sun-acc.xml +2 -2
- data/domains/domain1/docroot/index.html +17 -13
- data/domains/domain1/master-password +0 -0
- data/lib/command_line_parser.rb +19 -32
- data/lib/config.rb +39 -7
- data/lib/glassfish.rb +1 -0
- data/lib/registration/servicetag-registry.xml +18 -18
- data/lib/templates/default-web.xml +3 -0
- data/lib/templates/docroot/index.html +83 -0
- data/lib/templates/domain.xml +180 -171
- data/lib/templates/logging.properties +48 -130
- data/lib/templates/profile.properties +37 -37
- data/lib/templates/server.policy +1 -1
- data/lib/templates/sun-acc.xml +40 -0
- data/lib/version.rb +1 -1
- data/modules/admin-cli.jar +0 -0
- data/modules/api-exporter.jar +0 -0
- data/modules/asm-all-repackaged.jar +0 -0
- data/modules/auto-depends.jar +0 -0
- data/modules/bean-validator.jar +0 -0
- data/modules/branding.jar +0 -0
- data/modules/cli-framework.jar +0 -0
- data/modules/common-util.jar +0 -0
- data/modules/config-api.jar +0 -0
- data/modules/config.jar +0 -0
- data/modules/deployment-admin.jar +0 -0
- data/modules/deployment-autodeploy.jar +0 -0
- data/modules/deployment-common.jar +0 -0
- data/modules/flashlight-agent.jar +0 -0
- data/modules/flashlight-framework.jar +0 -0
- data/modules/gf-jruby-connector.jar +0 -0
- data/modules/gfprobe-provider-client.jar +0 -0
- data/modules/glassfish-api.jar +0 -0
- data/modules/glassfish-ee-api.jar +0 -0
- data/modules/glassfish-extra-jre-packages.jar +0 -0
- data/modules/glassfish-gem.jar +0 -0
- data/modules/glassfish.jar +0 -0
- data/modules/grizzly-comet.jar +0 -0
- data/modules/grizzly-cometd.jar +0 -0
- data/modules/grizzly-compat.jar +0 -0
- data/modules/grizzly-config.jar +0 -0
- data/modules/grizzly-framework.jar +0 -0
- data/modules/grizzly-http.jar +0 -0
- data/modules/grizzly-jruby-module.jar +0 -0
- data/modules/grizzly-jruby.jar +0 -0
- data/modules/grizzly-messagesbus.jar +0 -0
- data/modules/grizzly-portunif.jar +0 -0
- data/modules/grizzly-rcm.jar +0 -0
- data/modules/grizzly-utils.jar +0 -0
- data/modules/hk2-core.jar +0 -0
- data/modules/hk2.jar +0 -0
- data/modules/internal-api.jar +0 -0
- data/modules/kernel.jar +0 -0
- data/modules/launcher.jar +0 -0
- data/modules/org.apache.felix.configadmin.jar +0 -0
- data/modules/org.apache.felix.fileinstall.jar +0 -0
- data/modules/org.apache.felix.shell.jar +0 -0
- data/modules/org.apache.felix.shell.remote.jar +0 -0
- data/modules/org.apache.felix.shell.tui.jar +0 -0
- data/modules/osgi-main.jar +0 -0
- data/modules/pkg-client.jar +0 -0
- data/modules/tiger-types-osgi.jar +0 -0
- metadata +23 -26
- data/COPYRIGHT +0 -18
- data/LICENSE.txt +0 -263
- data/domains/domain1/config/wss-server-config-1.0.xml +0 -86
- data/domains/domain1/config/wss-server-config-2.0.xml +0 -94
- data/domains/domain1/docroot/favicon.gif +0 -0
data/bin/gfrake
CHANGED
data/bin/glassfish
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
# PID file where PID will be written. Applicable when used with -d option. The default pid file is tmp/pids/glassfish-<PID>.pid
|
35
35
|
#
|
36
36
|
# -l, --log FILE::
|
37
|
-
# Log file, where the server log messages will go. By default the server logs go to log/
|
37
|
+
# Log file, where the server log messages will go. By default the server logs go to log/development.log file. To see the logs on console run with -l option without any argument.
|
38
38
|
#
|
39
39
|
# --log-level LEVEL::
|
40
40
|
# Log level 0 to 7. 0:OFF, 1:SEVERE, 2:WARNING, 3:INFO (default), 4:FINE, 5:FINER, 6:FINEST, 7:ALL.
|
@@ -43,6 +43,7 @@
|
|
43
43
|
# Configuration file location. Use glassfish.yml as template. Generate it using 'gfrake config' command.
|
44
44
|
#
|
45
45
|
# APPLICATION_PATH (optional): Path to the application to be run (default: current).
|
46
|
+
#
|
46
47
|
# For further configuration, run GlassFish rake command 'gfrake -T'
|
47
48
|
|
48
49
|
require "java"
|
data/bin/glassfish_rails
CHANGED
@@ -1,57 +1,2 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
# glassfish: GlassFish v3 server for Rack based frameworks such as: Rails, Merb, Sinatra...
|
4
|
-
#
|
5
|
-
# == Usage:
|
6
|
-
#
|
7
|
-
# glassfish [OPTION] APPLICATION_PATH
|
8
|
-
#
|
9
|
-
# -h, --help::
|
10
|
-
# show help
|
11
|
-
#
|
12
|
-
# -c, --contextroot PATH::
|
13
|
-
# change the context root (default: '/')
|
14
|
-
#
|
15
|
-
# -p, --port PORT::
|
16
|
-
# change server port (default: 3000)
|
17
|
-
#
|
18
|
-
# -e, --environment ENV::
|
19
|
-
# change rails environment (default: development)
|
20
|
-
#
|
21
|
-
# -n --runtimes NUMBER::
|
22
|
-
# Number of JRuby runtimes to create initially
|
23
|
-
#
|
24
|
-
# --runtimes-min NUMBER::
|
25
|
-
# Minimum JRuby runtimes to create
|
26
|
-
#
|
27
|
-
# --runtimes-max NUMBER::
|
28
|
-
# Maximum number of JRuby runtimes to create
|
29
|
-
#
|
30
|
-
# -d, --daemon::
|
31
|
-
# Run GlassFish as daemon. Currently works with Linux and Solaris OS.
|
32
|
-
#
|
33
|
-
# -P, --pid FILE::
|
34
|
-
# PID file where PID will be written. Applicable when used with -d option. The default pid file is tmp/pids/glassfish-<PID>.pid
|
35
|
-
#
|
36
|
-
# -l, --log FILE::
|
37
|
-
# Log file, where the server log messages will go. By default the server logs go to log/glassfish.log file.
|
38
|
-
#
|
39
|
-
# --log-level LEVEL::
|
40
|
-
# Log level 0 to 7. 0:OFF, 1:SEVERE, 2:WARNING, 3:INFO (default), 4:FINE, 5:FINER, 6:FINEST, 7:ALL.
|
41
|
-
#
|
42
|
-
# --config FILE::
|
43
|
-
# Configuration file location. Use glassfish.yml as template. Generate it using 'gfrake config' command.
|
44
|
-
#
|
45
|
-
# APPLICATION_PATH (optional): Path to the application to be run (default: current).
|
46
|
-
# For further configuration, run GlassFish rake command 'gfrake -T'
|
47
|
-
|
48
|
-
require "java"
|
49
|
-
$LOAD_PATH << "#{File.dirname(__FILE__)}/../modules"
|
50
|
-
$LOAD_PATH << "#{File.dirname(__FILE__)}/../lib"
|
51
|
-
|
52
|
-
require 'command_line_parser'
|
53
|
-
require 'glassfish'
|
54
|
-
|
55
|
-
options = GlassFish::CommandLineParser.new.parse
|
56
|
-
gf = GlassFish::Server.new
|
57
|
-
gf.startup(options)
|
1
|
+
puts "\n'glassfish_rails' is discontinued, use 'glassfish' command instead.\n\nThis script will be removed in the next release.
|
2
|
+
\n\n"
|
data/config/asenv.bat
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
|
2
|
+
REM
|
3
|
+
REM Copyright 2004-2008 Sun Microsystems, Inc. All rights reserved.
|
4
|
+
REM
|
5
|
+
REM Use is subject to License Terms
|
6
|
+
REM
|
5
7
|
|
6
8
|
set AS_ANT=..\lib\ant
|
7
9
|
set AS_ANT_LIB=..\lib\ant\lib
|
@@ -9,11 +11,10 @@ set AS_WEBSERVICES_LIB=..\lib
|
|
9
11
|
set AS_PERL=%PERL_HOME%
|
10
12
|
set AS_NSS=..\lib
|
11
13
|
set AS_NSS_BIN=..\lib\admincgi
|
12
|
-
set AS_IMQ_LIB
|
13
|
-
set AS_IMQ_BIN
|
14
|
+
set AS_IMQ_LIB=..\..\mq\lib
|
15
|
+
set AS_IMQ_BIN=..\..\mq\bin
|
14
16
|
set AS_CONFIG=..\config
|
15
17
|
set AS_INSTALL=..
|
16
|
-
set AS_JAVA=c:\java\jdk1.6.0\jre/..
|
17
18
|
set AS_ACC_CONFIG=..\domains\domain1\config\sun-acc.xml
|
18
19
|
set AS_JHELP=..\lib
|
19
20
|
set AS_ICU_LIB=..\lib
|
@@ -24,5 +25,5 @@ set AS_NATIVE_LAUNCHER_LIB_PREFIX=\jre\bin\client
|
|
24
25
|
set AS_WEBCONSOLE_LIB=../lib
|
25
26
|
set AS_JATO_LIB=../lib
|
26
27
|
set AS_HADB=%HADB_HOME%
|
27
|
-
set AS_DERBY_INSTALL
|
28
|
+
set AS_DERBY_INSTALL=..\..\javadb
|
28
29
|
set AS_MFWK_HOME=%MFWK_HOME%
|
data/config/asenv.conf
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
#
|
2
|
-
#
|
3
|
-
# Use is subject to license terms.
|
2
|
+
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
|
4
3
|
#
|
4
|
+
# Copyright 2004-2008 Sun Microsystems, Inc. All rights reserved.
|
5
|
+
#
|
6
|
+
# Use is subject to License Terms
|
7
|
+
#
|
8
|
+
|
5
9
|
|
6
10
|
AS_ANT="../lib/ant"
|
7
11
|
AS_ANT_LIB="../lib/ant/lib"
|
@@ -9,8 +13,8 @@ AS_WEBSERVICES_LIB="../lib"
|
|
9
13
|
AS_PERL="%PERL_HOME%"
|
10
14
|
AS_NSS="../lib"
|
11
15
|
AS_NSS_BIN="../lib/admincgi"
|
12
|
-
AS_IMQ_LIB="
|
13
|
-
AS_IMQ_BIN="
|
16
|
+
AS_IMQ_LIB="../../mq/lib"
|
17
|
+
AS_IMQ_BIN="../../mq/bin"
|
14
18
|
AS_CONFIG="../config"
|
15
19
|
AS_INSTALL=".."
|
16
20
|
AS_ACC_CONFIG="../domains/domain1/config/sun-acc.xml"
|
@@ -23,5 +27,5 @@ AS_NATIVE_LAUNCHER_LIB_PREFIX="/jre/lib/i386/client"
|
|
23
27
|
AS_WEBCONSOLE_LIB="../lib"
|
24
28
|
AS_JATO_LIB="../lib"
|
25
29
|
AS_HADB="%HADB_HOME%"
|
26
|
-
AS_DERBY_INSTALL="
|
30
|
+
AS_DERBY_INSTALL="../../javadb"
|
27
31
|
AS_MFWK_HOME="%MFWK_HOME%"
|
Binary file
|
@@ -86,7 +86,6 @@
|
|
86
86
|
<!-- entries can be slow and may consume -->
|
87
87
|
<!-- significant proportions of server resources. -->
|
88
88
|
<!-- -->
|
89
|
-
<!-- -->
|
90
89
|
<!-- output Output buffer size (in bytes) when writing -->
|
91
90
|
<!-- resources to be served. [2048] -->
|
92
91
|
<!-- -->
|
@@ -1126,6 +1125,9 @@
|
|
1126
1125
|
<welcome-file>index.jsp</welcome-file>
|
1127
1126
|
</welcome-file-list>
|
1128
1127
|
|
1128
|
+
<login-config>
|
1129
|
+
<auth-method>BASIC</auth-method>
|
1130
|
+
</login-config>
|
1129
1131
|
|
1130
1132
|
</web-app>
|
1131
1133
|
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<!-- Generated from default-domain.xml.template -->
|
7
7
|
<!-- Avoid manual edits of this file. Run "gfadmin verify-domain-xml" otherwise.-->
|
8
8
|
|
9
|
-
<domain application-root="${com.sun.aas.instanceRoot}/applications" log-root="${
|
9
|
+
<domain application-root="${com.sun.aas.instanceRoot}/applications" log-root="${jruby.log.location}">
|
10
10
|
<applications/>
|
11
11
|
<resources>
|
12
12
|
<jdbc-resource pool-name="__TimerPool" jndi-name="jdbc/__TimerPool" object-type="system-admin"/>
|
@@ -76,7 +76,7 @@
|
|
76
76
|
<jms-host host="laturbie.sfbay.sun.com" name="default_JMS_host"/>
|
77
77
|
</jms-service>
|
78
78
|
|
79
|
-
<log-service file="${jruby.log.
|
79
|
+
<log-service file="${jruby.log.file}" log-rotation-limit-in-bytes="2000000">
|
80
80
|
<module-log-levels/>
|
81
81
|
</log-service>
|
82
82
|
|
@@ -180,10 +180,11 @@
|
|
180
180
|
|
181
181
|
|
182
182
|
<thread-pools>
|
183
|
-
<thread-pool
|
183
|
+
<thread-pool name="http-thread-pool" max-queue-size="4096" />
|
184
|
+
<thread-pool name="thread-pool-1" max-thread-pool-size="200" />
|
184
185
|
</thread-pools>
|
185
186
|
<management-rules enabled="true"/>
|
186
187
|
</config>
|
187
188
|
</configs>
|
188
189
|
<property value="domain1" name="administrative.domain.name"/>
|
189
|
-
</domain>
|
190
|
+
</domain>
|
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
2
|
-
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
|
3
|
-
# SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
4
|
-
#
|
5
|
-
|
6
|
-
# List of users for simple file realm. Empty by default.
|
1
|
+
#
|
2
|
+
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
|
3
|
+
# SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
4
|
+
#
|
5
|
+
|
6
|
+
# List of users for simple file realm. Empty by default.
|
Binary file
|
@@ -1,130 +1,46 @@
|
|
1
|
-
|
2
|
-
#
|
3
|
-
|
4
|
-
# You can use a different file by specifying a filename
|
5
|
-
# with the java.util.logging.config.file system property.
|
6
|
-
# For example java -Djava.util.logging.config.file=myfile
|
7
|
-
############################################################
|
8
|
-
|
9
|
-
############################################################
|
10
|
-
# Global properties
|
11
|
-
############################################################
|
12
|
-
|
13
|
-
# "handlers" specifies a comma separated list of log Handler
|
14
|
-
# classes. These handlers will be installed during VM startup.
|
15
|
-
# Note that these classes must be on the system classpath.
|
16
|
-
# By default we only configure a ConsoleHandler, which will only
|
17
|
-
# show messages at the INFO and above levels.
|
18
|
-
|
19
|
-
# In glassfish, it is not a good idea to add handlers this way
|
20
|
-
# as it requires the handler to be on the system classpath.
|
21
|
-
# A better approach is to define an HK2 component wich implements
|
22
|
-
# the Hanlder contract :
|
23
|
-
#
|
24
|
-
# @Service(name="console")
|
25
|
-
# @ContractProvided(Handler.class)
|
26
|
-
# public class MyConsoleHandler implements Handler {
|
27
|
-
# // implementation of Handler interface
|
28
|
-
# }
|
29
|
-
|
1
|
+
#GlassFish logging.properties list
|
2
|
+
#Mon Mar 16 22:32:12 PDT 2009
|
3
|
+
javax.enterprise.system.tools.admin.level=INFO
|
30
4
|
handlers=
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
.level=
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
############################################################
|
76
|
-
# Facility specific properties.
|
77
|
-
# Provides extra control for each logger.
|
78
|
-
############################################################
|
79
|
-
|
80
|
-
# For example, set the com.xyz.foo logger to only log SEVERE
|
81
|
-
# messages:
|
82
|
-
com.xyz.foo.level = SEVERE
|
83
|
-
|
84
|
-
#Some logger names for v3 are below just uncoment the line logger below and save the file. The logging code will automatically be reconfigured.
|
85
|
-
#ROOTLOGGER
|
86
|
-
#javax.enterprise.level=FINE
|
87
|
-
#Tools Logger
|
88
|
-
#javax.enterprise.system.tools.level=FINE
|
89
|
-
# EJB Logger
|
90
|
-
#javax.enterprise.system.container.ejb.level=FINE
|
91
|
-
#JAVAMAIL_LOGGER
|
92
|
-
#javax.enterprise.resource.javamail.level=FINE
|
93
|
-
#JMS_LOGGER
|
94
|
-
#javax.enterprise.resource.jms.level=FINE
|
95
|
-
#WEB LOGGER
|
96
|
-
#javax.enterprise.system.container.web.level=FINE
|
97
|
-
#CMP_LOGGER
|
98
|
-
#javax.enterprise.system.container.cmp.level=FINE
|
99
|
-
#JDO_LOGGER
|
100
|
-
#javax.enterprise.resource.jdo.level=FINE
|
101
|
-
#ACC_LOGGER
|
102
|
-
#javax.enterprise.system.container.appclient.level=FINE
|
103
|
-
#MDB_LOGGER
|
104
|
-
#javax.enterprise.system.container.ejb.mdb.level=FINE
|
105
|
-
#SECURITY LOGGER
|
106
|
-
#javax.enterprise.system.core.security.level=FINE
|
107
|
-
#TRANSACTION_LOGGER
|
108
|
-
#javax.enterprise.system.core.transaction.level=FINE
|
109
|
-
#CORBA_LOGGER
|
110
|
-
#javax.enterprise.resource.corba.level=FINE
|
111
|
-
#ADMIN LOGGER
|
112
|
-
#javax.enterprise.system.tools.admin.level=FINE
|
113
|
-
#DPL_LOGGER - deployment logger
|
114
|
-
#javax.enterprise.system.tools.deployment.level=FINE
|
115
|
-
#SAAJ_LOGGER
|
116
|
-
#javax.enterprise.system.webservices.saaj.level=FINE
|
117
|
-
#UTIL_LOGGER
|
118
|
-
#javax.enterprise.system.util.level=FINE
|
119
|
-
#NAMING_LOGGER
|
120
|
-
#javax.enterprise.system.core.naming.level=FINE
|
121
|
-
#CORE_LOGGER
|
122
|
-
#javax.enterprise.system.core.level=FINE
|
123
|
-
#LOADER_LOGGER
|
124
|
-
#javax.enterprise.system.core.classloading.level=FINE
|
125
|
-
#CONFIG_LOGGER
|
126
|
-
#javax.enterprise.system.core.config.level=FINE
|
127
|
-
#AMX_LOGGER
|
128
|
-
#javax.enterprise.system.AMX.level=FINE
|
129
|
-
|
130
|
-
|
5
|
+
java.util.logging.ConsoleHandler.formatter=com.sun.enterprise.server.logging.UniformLogFormatter
|
6
|
+
org.apache.jasper.level=INFO
|
7
|
+
javax.enterprise.resource.corba.level=INFO
|
8
|
+
javax.enterprise.system.core.classloading.level=INFO
|
9
|
+
javax.enterprise.resource.jta.level=INFO
|
10
|
+
java.util.logging.ConsoleHandler.level=INFO
|
11
|
+
com.sun.enterprise.server.logging.GFFileHandler.file=logs/server.log
|
12
|
+
javax.enterprise.system.webservices.saaj.level=INFO
|
13
|
+
java.util.logging.FileHandler.formatter=java.util.logging.XMLFormatter
|
14
|
+
javax.enterprise.system.tools.deployment.level=INFO
|
15
|
+
javax.enterprise.system.container.ejb.level=INFO
|
16
|
+
com.sun.enterprise.server.logging.GFFileHandler.formatter=com.sun.enterprise.server.logging.UniformLogFormatter
|
17
|
+
javax.enterprise.system.core.transaction.level=INFO
|
18
|
+
org.apache.catalina.level=INFO
|
19
|
+
com.sun.enterprise.server.logging.GFFileHandler.rotationTimelimitInMinutes=0
|
20
|
+
javax.enterprise.system.container.ejb.mdb.level=INFO
|
21
|
+
org.apache.coyote.level=INFO
|
22
|
+
javax.level=INFO
|
23
|
+
java.util.logging.FileHandler.limit=50000
|
24
|
+
javax.enterprise.resource.javamail.level=INFO
|
25
|
+
com.sun.enterprise.server.logging.GFFileHandler.logtoConsole=false
|
26
|
+
javax.enterprise.system.webservices.rpc.level=INFO
|
27
|
+
javax.enterprise.system.container.web.level=INFO
|
28
|
+
javax.enterprise.system.util.level=INFO
|
29
|
+
javax.enterprise.resource.resourceadapter.level=INFO
|
30
|
+
javax.enterprise.resource.jms.level=INFO
|
31
|
+
javax.enterprise.system.core.config.level=INFO
|
32
|
+
com.sun.enterprise.server.logging.GFFileHandler.rotationLimitInBytes=0
|
33
|
+
javax.enterprise.system.level=INFO
|
34
|
+
javax.enterprise.system.core.security.level=INFO
|
35
|
+
javax.enterprise.system.container.cmp.level=INFO
|
36
|
+
java.util.logging.FileHandler.pattern=%h/java%u.log
|
37
|
+
com.sun.enterprise.server.logging.SyslogHandler.useSystemLogging=false
|
38
|
+
group-management-services=INFO
|
39
|
+
com.sun.enterprise.server.logging.GFFileHandler.alarms=false
|
40
|
+
javax.enterprise.system.webservices.registry.level=INFO
|
41
|
+
javax.enterprise.system.core.selfmanagement.level=INFO
|
42
|
+
.level=INFO
|
43
|
+
java.util.logging.FileHandler.count=1
|
44
|
+
javax.enterprise.resource.jdo.level=INFO
|
45
|
+
javax.enterprise.system.core.naming.level=INFO
|
46
|
+
com.sun.enterprise.server.logging.GFFileHandler.retainErrorsStasticsForHours=0
|
@@ -1,21 +1,21 @@
|
|
1
|
-
/* Copyright 2004 Sun Microsystems, Inc. All rights reserved. */
|
2
|
-
/* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */
|
3
|
-
|
4
|
-
fileRealm {
|
5
|
-
com.sun.enterprise.security.auth.login.FileLoginModule required;
|
6
|
-
};
|
7
|
-
|
8
|
-
ldapRealm {
|
9
|
-
com.sun.enterprise.security.auth.login.LDAPLoginModule required;
|
10
|
-
};
|
11
|
-
|
12
|
-
solarisRealm {
|
13
|
-
com.sun.enterprise.security.auth.login.SolarisLoginModule required;
|
14
|
-
};
|
15
|
-
|
16
|
-
jdbcRealm {
|
17
|
-
com.sun.enterprise.security.auth.login.JDBCLoginModule required;
|
18
|
-
};
|
19
|
-
jdbcDigestRealm {
|
20
|
-
com.sun.enterprise.security.auth.login.JDBCDigestLoginModule required;
|
21
|
-
};
|
1
|
+
/* Copyright 2004 Sun Microsystems, Inc. All rights reserved. */
|
2
|
+
/* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */
|
3
|
+
|
4
|
+
fileRealm {
|
5
|
+
com.sun.enterprise.security.auth.login.FileLoginModule required;
|
6
|
+
};
|
7
|
+
|
8
|
+
ldapRealm {
|
9
|
+
com.sun.enterprise.security.auth.login.LDAPLoginModule required;
|
10
|
+
};
|
11
|
+
|
12
|
+
solarisRealm {
|
13
|
+
com.sun.enterprise.security.auth.login.SolarisLoginModule required;
|
14
|
+
};
|
15
|
+
|
16
|
+
jdbcRealm {
|
17
|
+
com.sun.enterprise.security.auth.login.JDBCLoginModule required;
|
18
|
+
};
|
19
|
+
jdbcDigestRealm {
|
20
|
+
com.sun.enterprise.security.auth.login.JDBCDigestLoginModule required;
|
21
|
+
};
|