This section describes the XML elements in the sun-web.xml file. Elements are grouped as follows:
This section also includes an alphabetical list of the elements for quick reference. See Alphabetical List of sun-web.xml Elements.
Subelements must be defined in the order in which they are listed in each section, unless otherwise noted.
Each sun-web.xml file must begin with the following DOCTYPE header:
<!DOCTYPE sun-web-app PUBLIC -//Sun Microsystems, Inc.//DTD Application Server 8.1 Servlet 2.5//EN" http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-1.dtd">
For an alphabetical list of elements in sun-web.xml, see Alphabetical List of sun-web.xml Elements.
General elements are as follows:
This element Web Server- specific configuration for a web application. This element is the root element. The sun-web.xml file contain only one sun-web-app.
The following table describes subelements for the sun-web-app element.
Table A–3 sun-web-app Subelements
none
The following table describes the properties for the sun-web-app element.
Table A–4 sun-web-app Properties
Property Name |
Default Value |
Description |
---|---|---|
crossContextAllowed |
true |
If true, allows this web application to access the contexts of other web applications using the ServletContext.getContext() method. |
true |
If true, Web Server URL encodes cookies before sending them to the client. If you don’t want cookies to be encoded, add the following setting to sun-web.xmldirectly under the <sun-web-app> tag: <property name="encodeCookies" value="false"/> Do not embed this setting in any other tag. |
|
tempdir |
instance-dir/generated/ |
Specifies a temporary directory for use by this web application. This value is used to construct the value of the javax.servlet.context.tempdir context attribute. Compiled JSPs are also placed in this directory. |
singleThreadedServletPoolSize |
5 |
Specifies the maximum number of servlet instances allocated for each SingleThreadModel servlet in the web application. |
reuseSessionID |
false |
If true, this property causes the web application to reuse the JSESSIONID value (if present) in the request header as the session ID when creating sessions. The default behavior of web applications is not to reuse session IDs. Instead, applications generate cryptographically random session IDs for new sessions. |
changeSessionIdOnAuthentication |
false |
If true, allows the web application to change the session ID after authentication in order to protect against session fixation attacks as described in http://www.owasp.org/index.php/Session_Fixation. |
relativeRedirectAllowed |
false |
If true, allows the web application to send a relative URL to the client using the HttpResponse.sendRedirect() API (that is, it suppresses the container from translating a relative URL to a fully qualified URL). |
This element contains the web context root of the application or web applications. This overrides the corresponding element in the web.xml file.
none
none
Specifies a property that has a name and a value. A property adds configuration information to its parent element that is:
optional with respect to Web Server but Needed by a system or object that Web Server doesn't have knowledge of, such as an LDAP server or a Java class
For example, a manager-properties element can include property subelements:
<manager-properties> <property name="reapIntervalSeconds" value="20" /> </manager-properties>
The properties that manager-properties element uses depends on the value of the parent session-manager element persistence-type attribute. For details, see the description of the session-manager element.
The following table describes subelement for the property element.
Table A–5 property Subelement
Element |
Required |
Description |
---|---|---|
zero or one |
Contains a text description of this element. |
The following table describes attributes for the property element.
Table A–6 property Attributes
Attribute |
Default |
Description |
---|---|---|
name |
none |
Specifies the name of the property or variable |
value |
none |
Specifies the value of the property or variable |
This element contains a text description of the parent element.
none
none
The security elements are as follows:
This element maps roles to users or groups in the currently active realm.
The following table describes subelements for the security-role-mapping element.
Table A–7 security-role-mapping Subelements
Element |
Required |
Description |
---|---|---|
only one |
Contains the role name |
|
requires at least one principal-name or group-name |
Contains a principal (user) name in the current realm |
|
requires at least one principal-name or group-name |
Contains a group name in the current realm |
none
This element specifies a principal name for a servlet, which is used for the run-as role defined in web.xml.
The following table describes subelements for the servlet element.
Table A–8 servlet Subelements
Element |
Required |
Description |
---|---|---|
only one |
Contains the name of a servlet, which is matched to a servlet-name in web.xml. |
|
only one |
Contains a principal (user) name in the current realm. |
none
This element contains data that specifies the name of a servlet, which is matched to a servlet-name in web.xml. This name must be present in web.xml.
none
none
This element contains data that specifies the role-name in the security-role element of the web.xml file.
none
none
This element contains data that specifies a principal (user) name in the current realm.
none
none
This element contains data that specifies a group name in the current realm.
none
none
Session elements are as follows:
The session manager interface is unstable. An unstable interface might be experimental or transitional. This interface therefore change change incompatibly, be removed, or be replaced by a more stable interface in the next release.
This element specifies session configuration information.
The following table describes subelements for the session-config element.
Table A–9 session-config Subelements
Element |
Required |
Description |
---|---|---|
zero or one |
Specifies session manager configuration information |
|
zero or one |
Specifies session properties |
|
zero or one |
Specifies session cookie properties |
none
Specifies session manager information.
As of Web Server, you cannot define a session manager either for a single sign-on session or for a virtual server. You must define session managers at the level of web applications.
The following table describes subelements for the session-manager element.
Table A–10 session-manager Subelements
Element |
Required |
Description |
---|---|---|
zero or one |
Specifies session manager properties. |
|
zero or one |
Specifies session persistence (storage) properties. |
The following table describes the persistence-type attribute for the session-manager element. The left column lists the attribute name, the middle column indicates the default value, and the right column describes what the attribute does.
Table A–11 session-manager Attribute
Attribute |
Default Value |
Description |
---|---|---|
persistence-type |
memory |
(Optional) Specifies the session persistence mechanism. Allowed values are memory, file, s1ws60, and mmap. Setting the value of persistence type to memory is equivalent to using Web Server’s IWS60 without any store. Setting the value of persistence type to file is equivalent to using Web Server’s IWS60 with FileStore. |
This element specifies session manager properties.
The following table describes the property subelement for the manager-properties element.
Table A–12 manager-properties Subelements
Element |
Required |
Description |
---|---|---|
zero or more |
Specifies a property, which has a name and a value. |
none
The following table describes properties for the manager-properties element.
Table A–13 manager-properties Properties
Property Name |
Default Value |
Description |
---|---|---|
reapIntervalSeconds |
60 |
Specifies the number of seconds between checks for expired sessions. Set this value lower than the frequency at which session data changes . For example, this value should be as low as possible 1 second for a hit counter servlet on a frequently accessed web site or you could lose the last few hits each time you restart the server. |
maxSessions |
-1 |
Specifies the maximum number of active sessions, or -1 (the default) for no limit. |
sessionFilename |
none; state is not preserved across restarts |
Specifies the absolute or relative path name of the file in which the session state is preserved between application restarts, if preserving the state is possible. A relative path name is relative to the temporary directory for this web application. Applicable only if the persistence-type attribute of the session-manager Element element is memory. |
Specifies session persistence (storage) properties.
The following table describes the property subelement for the store-properties element.
Table A–14 store-properties Subelement
Element |
Required |
Description |
---|---|---|
zero or more |
Specifies a property, which has a name and a value. |
none
The following table describes properties for the store-properties element.
Table A–15 store-properties Properties
Property Name |
Default Value |
Description |
---|---|---|
reapIntervalSeconds |
60 |
Specifies the number of seconds between checks for expired sessions for those sessions that are currently swapped out. Set this value lower than the frequency at which session data changes is recommended. For example, this value should be as low as possible 1 second for a hit counter servlet on a frequently accessed web site or you could lose the last few hits each time you restart the server. |
directory |
directory specified by javax.servlet.context .tempdir context attribute |
Specifies the absolute or relative path name of the directory into which individual session files are written. A relative path is relative to the temporary work directory for this web application. |
This element specifies session properties.
The following table describes the property subelement for the session-properties element.
Table A–16 session-properties Subelements
Element |
Required |
Description |
---|---|---|
zero or more |
Specifies a property, which has a name and a value. |
none
The following table describes properties for the session-properties element.
Table A–17 session-properties Properties
This element specifies session cookie properties.
The following table describes the property subelement for the cookie-properties element.
Table A–18 cookie-properties Subelement
Element |
Required |
Description |
---|---|---|
zero or more |
Specifies a property, which has a name and a value |
none
The following table describes properties for the cookie-properties element.
Table A–19 cookie-properties Properties
Property Name |
Default Value |
Description |
---|---|---|
cookiePath |
Context path at which the web application is installed. |
Specifies the path name that is set when the session tracking cookie is created. The browser sends the cookie if the path name for the request contains this path name. If set to / (root), the browser sends cookies to all URLs served by the Web Server. You can set the path to a narrower mapping to limit the request URLs to which the browser sends cookies. |
cookieMaxAgeSeconds |
-1 |
Specifies the expiration time (in seconds) after which the browser expires the cookie. The default value of -1 indicates that the cookie never expires. |
cookieDomain |
unset |
Specifies the domain for which the cookie is valid. |
cookieComment |
Web Server session tracking cookie |
Specifies the comment that identifies the session tracking cookie in the cookie file. Applications can provide a more specific comment for the cookie. |
Reference elements are as follows:
This element maps the res-ref-name Element in the corresponding Java EE web.xml file resource-env-ref entry to the absolute jndi-name of a resource.
The following table describes subelements for the resource-env-ref element.
Table A–20 resource-env-ref Subelements
Element |
Required |
Description |
---|---|---|
only one |
Specifies the res-ref-name in the corresponding Java EE web.xml file resource-env-ref entry. |
|
only one |
Specifies the absolute jndi-name of a resource. |
none
Contains data that specifies the res-ref-name Element in the corresponding Java EE web.xml file resource-env-ref entry.
none
none
This element specifies the runtime settings for a web service reference. Runtime information is only needed in the following cases:
To define the port used to resolve a container-managed port
To define the default Stub/Call property settings for Stub objects
To define the URL of a final WSDL document to be used instead of the one associated with service-ref in the standard Java EE deployment descriptor
Element |
Required |
Description |
only one |
Specifies the web service reference name relative to java:comp/env |
|
zero or more |
Specifies information for a port within a web service reference |
|
zero or more |
Specifies JAX-RPC property values that can be set on a javax.xml.rpc. Call object before it is returned to the web service client |
|
zero or more |
Specifies the name of the generated service implementation class |
|
zero or one |
Specifies the WSDL service element that is being referenced. |
This element specifies the web service reference name relative to java:comp/env.
none
none
Either a service-endpoint-interface or a wsdl-port or both ports must be specified. If both ports are specified, wsdl-port specifies the port that the container chooses for container-managed port selection. The same wsdl-port value must not appear in more than one port-info element within the same service-ref. If a service-endpoint-interface is using container-managed port selection, its value must not appear in more than one port-info element within the same service-ref.
The following table describes subelements for the port-info element.
Table A–22 port-info Subelements
Element |
Required |
Description |
zero or one |
Specifies the web service reference name relative to java:comp/env. |
|
zero or one |
Specifies the WSDL port. |
|
zero or one |
Specifies JAX-RPC property values that are set on thejavax.xml.rpc.Stub object before it is returned to the web service client. |
|
zero or one |
Specifies JAX-RPC property values that are set on thejavax.xml.rpc.Stub object before it is returned to the web service client. |
|
zero or one |
Specifies a custom authentication provider binding. |
This element specifies the web service reference name relative to java:comp/env.
none
none
Specifies the WSDL port.
The following table describes subelements for the wsdl-port element
Table A–23 wsdl-port Subelements
Element |
Required |
Description |
only one |
Specifies the namespace URI. |
|
only one |
Specifies the local part of a QNAME. |
This element specifies the namespace URI.
none
none
Specifies the local part of a QNAME.
none
none
This element specifies JAX-RPC property values that are set on a javax.xml.rpc. Stub object before it is returned to the web service client. The property names can be any properties supported by the JAX-RPC Stub implementation.
The following table describes subelements for the stub-property element.
Table A–24 stub-property subelements
Element |
Required |
Description |
---|---|---|
only one |
Specifies the name of the entity. |
|
only one |
Specifies the value of the entity. |
This element specifies JAX-RPC property values that can be set on a javax.xml.rpc call object before it is returned to the web service client. The property names can be any properties supported by the JAX-RPC Call implementation.
Table A–25 call-property Subelements
Element |
Required |
Description |
---|---|---|
only one |
Specifies the name of the entity. |
|
only one |
Specifies the value of the entity. |
This element specifies a valid URL pointing to a final WSDL document. If not specified, the WSDL document associated with the service-ref in the standard J2EE deployment descriptor is used.
none
none
Specifies the name of the generated service implementation class.
none
none
This element specifies the WSDL service element that is being referred to
The following table describes subelements for the service-qname element.
Table A–26 service-qname Subelements
Element |
Required |
Description |
only one |
Specifies the namespace URI. |
|
only one |
Specifies the local part of a QNAME. |
This element maps the res-ref-name Element in the corresponding Java EE web.xml file resource-ref entry to the absolute jndi-name Element of a resource.
The following table describes subelements for the resource-ref element. The left column lists the subelement name, the middle column indicates the requirement rule, and the right column describes what the element does.
Table A–27 resource-ref Subelements
Element |
Required |
Description |
---|---|---|
only one |
Specifies the res-ref-name in the corresponding Java EE web.xml file resource-ref entry |
|
only one |
Specifies the absolute jndi-name of a resource |
|
zero or one |
Specifies the default principal (user) for the resource |
none
This element contains data that specifies the res-ref-name in the corresponding Java EE web.xml file resource-ref entry.
none
none
This element specifies the default principal (user) for the resource.
If this element is used in conjunction with a JMS Connection Factory resource, the name and password subelements must be valid entries in Message Queue's broker user repository.
The following table describes subelements for the default-resource-principal element.
Table A–28 default-resource-principal Subelements
Element |
Required |
Description |
---|---|---|
only one |
Contains the name of the principal |
|
only one |
Contains the password for the principal |
none
This element contains data that specifies the name of the principal.
none
none
This element contains data that specifies the password for the principal.
none
none
This element contains data that specifies the absolute jndi-name of a URL resource or a resource in the server.xml file.
To avoid collisions with names of other enterprise resources in JNDI, and to avoid portability problems, all names in a Web Server application should begin with the string java:comp/env.
none
none
For details about response caching as it pertains to servlets, see Caching Servlet Results and JSP Cache Tags.
Caching elements are as follows:
This element configures caching for web application components.
The following table describes subelements for the cache element.
Table A–29 cache Subelements
Element |
Required |
Description |
---|---|---|
zero or more |
Specifies a custom class that implements the CacheHelper interface. |
|
zero or one |
Allows you to change the properties of the default, built-in cache-helper class. |
|
zero or more |
Specifies a cache property, which has a name and a value. |
|
zero or more |
Maps a URL pattern or a servlet name to its cacheability constraints. |
The following table describes attributes for the cache element.
Table A–30 cache Attributes
Attribute |
Default Value |
Description |
---|---|---|
max-entries |
4096 |
(Optional) Specifies the maximum number of entries the cache can contain. Must be a positive integer. |
timeout-in-seconds |
30 |
(Optional) Specifies the maximum amount of time in seconds that an entry can remain in the cache after it is created or refreshed. Can be overridden by a timeout element. |
enabled |
false |
(Optional) Determines whether servlet and JSP caching is enabled. Legal values are on, off, yes, no, 1, 0, true, false. |
The following table describes properties for the cache element.
Table A–31 cache Properties
Property Name |
Default Value |
Description |
---|---|---|
cacheClassName |
com.sun.appserv.web .cache.LruCache |
Specifies the fully qualified name of the class that implements the cache functionality. For a list of valid values, seeCache Class Names. |
MultiLRUSegmentSize |
4096 |
Specifies the number of entries in a segment of the cache table that should have its own LRU (least recently used) list. Applicable only if cacheClassName is set to com.sun.appserv.web .cache.MultiLruCache. |
MaxSize |
unlimited; Long.MAX_VALUE |
Specifies an upper bound on the cache memory size in bytes (KB or MB units). Example values are 32 KB or 2 MB. Applicable only if cacheClassName is set to com.sun.appserv.web. cache.BoundedMultiLruCache. |
The following table lists possible values of the cacheClassName property.
Table A–32 cacheClassName Values
Value |
Description |
---|---|
com.sun.appserv.web.cache.LruCache |
A bounded cache with an LRU (least recently used) cache replacement policy. |
com.sun.appserv.web.cache.BaseCache |
An unbounded cache suitable if the maximum number of entries is known. |
com.sun.appserv.web.cache.MultiLruCache |
A cache suitable for a large number of entries (>4096). Uses the MultiLRUSegmentSize property. |
com.sun.appserv.web.cache.BoundedMultiLruCache |
A cache suitable for limiting the cache size by memory rather than number of entries. Uses the MaxSize property. |
This element specifies a class that implements the CacheHelper interface. For details, see CacheHelper Interface.
The following table describes the property subelements for the cache-helper element.
Table A–33 cache-helper Subelement
Element |
Required |
Description |
---|---|---|
zero or more |
Specifies a property, which has a name and a value. |
The following table describes attributes for the cache-helper element.
Table A–34 cache-helper Attributes
Attribute |
Default Value |
Description |
---|---|---|
name |
default |
Specifies a unique name for the helper class, which is referenced in the cache-mapping element. |
class-name |
none |
Specifies the fully qualified class name of the cache helper, which must implement the com.sun.appserv.web.CacheHelper interface. |
This element allows you to change the properties of the built-in default cache-helper class.
The following table describes the property subelements for the default-helper element.
Table A–35 default-helper Subelements
Element |
Required |
Description |
---|---|---|
zero or more |
Specifies a property, which has a name and a value. |
none
The following table describes the cacheKeyGeneratorAttrName properties for the default-helper element.
Table A–36 default-helper Properties
Property Name |
Default Value |
Description |
---|---|---|
cacheKeyGeneratorAttrName |
Uses the built-in default cache-helper key generation, which concatenates the servlet path with key-field values, if any |
The caching engine looks in the ServletContext for an attribute with a name equal to the value specified for this property to determine whether a customized CacheKeyGenerator implementation is used. An application provide a customized key generator rather than using the default helper. |
This element maps a URL pattern or a servlet name to its cacheability constraints.
The following table describes subelements for the cache-mapping element.
Table A–37 cache-mapping Subelements
Element |
Required |
Description |
---|---|---|
requires one servlet-name or url-pattern |
Contains the name of a servlet. |
|
requires one servlet-name or url-pattern |
Contains a servlet URL pattern for which caching is enabled. |
|
required if timeout, refresh-field,http-method, key-field, and constraint-field are not used |
Contains the name of the cache-helper used by the parent cache-mapping element. |
|
zero or more |
Specifies the RequestDispatcher methods for which caching is to be enabled on the target resource. Valid values are REQUEST, FORWARD, INCLUDE, and ERROR (default: REQUEST). |
|
zero or one if cache-helper-ref is not used |
Contains the cache-mapping specific maximum amount of time in seconds that an entry can remain in the cache after it is created or refreshed |
|
zero or one if cache-helper-ref is not used |
Specifies a field that gives the application component a programmatic way to refresh a cached entry. |
|
zero or more if cache-helper-ref is not used |
Contains an HTTP method that is eligible for caching. |
|
zero or more if cache-helper-ref is not used |
Specifies a component of the key used to look up and extract cache entries. |
|
zero or more if cache-helper-ref is not used |
Specifies a cacheability constraint for the given url-pattern or servlet-name. |
none
This element contains data that specifies a servlet URL pattern for which caching is enabled. See the Java Servlet 2.5 specification.
none
none
This element contains data that specifies the name of the cache-helper used by the parent cache-mapping element.
none
none
Contains data that specifies the cache-mapping specific maximum amount of time in seconds that an entry can remain in the cache after it is created or refreshed. If not specified, the default is the value of the timeout attribute of the cache element.
none
The following table describes attributes for the timeout element.
Table A–38 timeout Attributes
Attribute |
Default Value |
Description |
---|---|---|
name |
none |
Specifies the timeout input parameter, whose value is interpreted in seconds. The field's type must be java.lang.Long or java.lang.Integer. |
scope |
context.attribute |
(Optional) Specifies the scope in which the input parameter can be present. Allowed values are context.attribute, request.header, request.parameter, request.cookie, session.id, and session.attribute. |
This element specifies a field that gives the application component a programmatic way to refresh a cached entry.
none
The following table describes attributes for the refresh-field element.
Table A–39 refresh-field Attributes
Attribute |
Default Value |
Description |
---|---|---|
name |
none |
Specifies the input parameter name. If the parameter is present in the specified scope and its value is true, the cache will be refreshed. |
scope |
request.parameter |
(Optional) Specifies the scope in which the input parameter can be present. Allowed values are context.attribute, request.header, request.parameter, request.cookie, session.id, and session.attribute. |
This element contains data that specifies an HTTP method that is eligible for caching. The default is GET.
none
none
Specifies a component of the key used to look up and extract cache entries. The web container looks for the named parameter, or field, in the specified scope.
If this element is not present, the web container uses the Servlet Path, the path section that corresponds to the servlet mapping that activated the current request. See the Servlet 2.5 specification, section SRV 4.4, for details on the Servlet Path.
none
The following table describes attributes for the key-field element.
Table A–40 key-field Attributes
Attribute |
Default Value |
Description |
---|---|---|
name |
none |
Specifies the input parameter name. |
scope |
request.parameter |
(Optional) Specifies the scope in which the input parameter can be present. Allowed values are context.attribute, request.header, request.parameter, request.cookie, session.id, and session.attribute. |
Specifies a cache ability constraint for the given url-pattern or servlet-name.
All constraint-field constraints must pass for a response to be cached. If value constraints are listed, at least one of them must pass.
The following table describes the value subelements for the constraint-field element.
Table A–41 constraint-field Subelements
Element |
Required |
Description |
---|---|---|
zero or more |
Contains a value to be matched to the input parameter value |
The following table describes attributes for the constraint-field element.
Table A–42 constraint-field Attributes
Attribute |
Default Value |
Description |
---|---|---|
name |
none |
Specifies the input parameter name. |
scope |
request.parameter |
(Optional) Specifies the scope in which the input parameter can be present. Allowed values are context.attribute, request.header, request.parameter, request.cookie, session.id, and session.attribute. |
cache-on-match |
true |
(Optional) If true, caches the response if matching succeeds. Overrides the same attribute in a value subelement. |
cache-on-match-failure |
false |
(Optional) If true, caches the response if matching fails. Overrides the same attribute in a value subelement. |
This element specifies the value of the entity
none
none
The Classloader element is named class-loader.
This element configures the classloader for the web application.
none
The following table describes attributes for the class-loader element.
Table A–43 class-loader Attributes
Attribute |
Default Value |
Description |
---|---|---|
extra-class-path |
null |
(Optional) Specifies additional classpath settings for this web application. If this path is not an absolute path, it is treated as relative to <web-app> <path> value. |
delegate |
false |
(Optional) If true, the web application follows the standard classloader delegation model and delegates to its parent classloader first before looking in the local classloader. If false, the web application follows the delegation model specified in the Servlet specification and looks in its classloader before looking in the parent classloader. For a web component of a web service, you must set this value to true. Legal values are on, off, yes, no, 1, 0, true, false. |
value of the dynamicreloadinterval attribute of the <jvm> element in server.xml |
(Optional) Enables an application to override the dynamicreloadinterval setting in server.xml. Specifies the frequency (in seconds) at which a web application is checked for modifications, and then reloaded if modifications have been made. Setting this value to less than or equal to 0 disables dynamic reloading of the application. If not specified, the value from server.xml is used. For more information about server.xml, see Oracle iPlanet Web Server 7.0.9 Administrator’s Configuration File Reference. |
The JSP elements is jsp-config.
This element specifies JSP configuration information that enables web application to customize the compilation and execution of its JSP files.
The following table describes the name subelement for the jsp-config element.
Table A–44 jsp-config Subelements
Element |
Required |
Description |
---|---|---|
zero or more |
Specifies a property. |
none
The following table describes properties for the jsp-config element.
Table A–45 jsp-config Properties
Property Name |
Default Value |
Description |
---|---|---|
ieClassId |
clsid:8AD9C840- 044E-11D1-B3E9- 00805F499D93 |
The Java Plug-in COM class ID for Internet Explorer. Used by the <jsp:plugin> tags. |
javaCompilerPlugin |
internal JDK compiler (javac) |
This property is deprecated in this release. By this, we mean this is supported in 7.0 but will NOT be supported in future release If JSP Pages import classes from unnamed packages, the default-JDK compiler will throw a compile time error when JSP- generated servlets are compiled. To compile JSP- generated servlets, set the javaCompilerPlugin property to org.apache.jasper.compiler.SunJavaCompiler. Note: The jspc command-line compiler for JSPs no longer supports -javac option. Since this property is deprecated, you are strongly encouraged to modify JSPs so that the imported classes have a package name. See also the -deprecatedjavac switch of jspc, described in Compiling JSPs Using the Command-Line Compiler. |
javaEncoding |
UTF8 |
Specifies the encoding for the generated Java servlet. This encoding is passed to the Java compiler used to compile the servlet as well. By default, the web container tries to use UTF8. If that fails, it tries to use the javaEncoding value. For encodings you can use, see: http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html |
classdebuginfo |
true |
Specifies whether the generated Java servlets should be compiled with the debug option set (-g for javac). |
keepgenerated |
true |
If set to true, keeps the generated Java files. If false, deletes the Java files. |
mappedfile |
false |
If set to true, generates separate write calls for each HTML line and comments that describe the location of each line in the JSP file. By default, all adjacent write calls are combined and no location comments are generated. |
scratchdir |
Default work directory for the web application |
The working directory created for storing all of the generated code. |
reload-interval |
0 |
Specifies the frequency (in seconds) at which JSP files are checked for modifications. Setting this value to 0 checks JSPs for modifications on every request. Setting this value to -1 disables checks for JSP modifications and JSP recompilation. |
initial-capacity |
32 |
Specifies the initial size of the hash table of compiled JSP classes (see the following example). |
The following example illustrates the use of the initial-capacity property described in the table above. The example shows how you would configure a value of 1024:
<jsp-config> <property name=”initial-capacity” value=”1024” /></jsp-config>
The internationalization elements are as follows:
This element specifies a hidden field or default character set that determines the character encoding the web container uses to decode parameters for request.getParameter calls when the character set is not set in the request's Content-Type.
For encodings you can use, see
http://java.sun.com/j2se/1.4.2/docs/guide/intl/encoding.doc.html.
The following table describes attributes for the parameter-encoding element.
Table A–46 parameter-encoding Attributes
Attribute |
Default Value |
Description |
---|---|---|
form-hint-field |
none |
The value of the hidden field in the form that specifies the parameter encoding. |
default-charset |
none |
This value is used for parameter encoding if neither request.setCharacterEncoding() is called nor form-hint-field is found in the request. |
none
none
Specifies the mapping between the locale and the character encoding that should be set in the Content-type header of the response if a servlet or JSP sets the response locale using the ServletResponse.setLocale method. This setting overrides the web container's default locale-to-charset mapping.
The following table describes subelements for the locale-charset-info element.
Table A–47 locale-charset-info Subelements
Element |
Required |
Description |
---|---|---|
one or more |
Maps a locale to a character set. Used only for request processing, and only if no parameter-encoding is defined. |
|
zero or one |
Deprecated. Use the parameter-encoding element under sun-web-app instead. This setting is supported only for backward compatibility with applications developed under Web Server. |
The following table describes the default-locale attribute for the locale-charset-info element.
Table A–48 locale-charset-info Attributes
Attribute Value |
Default Value |
Description |
default-locale |
none |
Although a value is required, the value is ignored. Use the default-charset attribute of the parameter-encoding Element. |
This element maps a locale to a specific character encoding.
For encodings you can use, see:
http://java.sun.com/j2se/1.4.2/docs/guide/intl/encoding.doc.html
The following table describes attributes for the locale-charset-map element.
Table A–49 locale-charset-map Attributes
Attribute |
Default Value |
Description |
---|---|---|
locale |
none |
Specifies the locale name. |
agent |
none |
Ignored in Web Server |
charset |
none |
Specifies the character set for that locale. |
The following table provides a locale-charset-map example, listing the locale and the corresponding charset:
Table A–50 locale-charset-map Example
Locale |
Charset |
---|---|
ja |
EUC-JP |
zh |
UTF-8 |
This element specifies the name of a logical message-destination defined within an application. The message-destination-name matches the corresponding message-destination-name in the corresponding Java EE deployment descriptor file.
The following table describes subelements for the message-destination element.
Table A–51 message-destination Subelements
Elements |
Required |
Description |
only one |
Specifies the name of a logical message destination defined within the corresponding Java EE deployment descriptor file |
|
only one |
Specifies the jndi-name of the associated entity |
This element specifies the name of a logical message destination defined within the corresponding Java EE deployment descriptor file.
none
This element specifies a name and optional publish location for a web service.
The following table describes subelements for the webservice-description element
Table A–52 webservice-description Subelements
Element |
Required |
Description |
only one |
Specifies a unique name for the web service within a web |
|
zero or one |
Specifies the URL of a directory to which the web services WSDL is published during deployment |
none
This element specifies a unique name for the web service within a web.
none
none
This element specifies the URL of a directory to which a web service's WSDL is published during deployment. Any required files are published to this directory, preserving their location relative to the module-specific WSDL directory (META-INF/wsdl or WEB-INF/wsdl).
none
none
This section provides an alphabetical list for the easy lookup of sun-web.xml elements.
default-resource-principal Element
message-destination-name Element
message-security-binding Element
webservice-description Element
webservice-description-name Element
For a list of sun-web.xml elements by category, see Elements in the sun-web.xml File.