Configuring Web Server Functionality for WebLogic Server

The following sections discuss how to configure Web Server components for WebLogic Server:

 


Overview of Configuring Web Server Components

In addition to its ability to host dynamic Java-based distributed applications, WebLogic Server is also a fully functional Web server that can handle high volume Web sites, serving static files such as HTML files and image files as well as servlets and JavaServer Pages (JSP). WebLogic Server supports the HTTP 1.1 standard.

 


HTTP Parameters

You configure the HTTP operating parameters using the Administration Console for each Server instance or Virtual Host.

Attribute

Description

Range of Values

Default Value

Default Server Name When WebLogic Server redirects a request, it sets the host name returned in the HTTP response header with the string specified with Default Server Name.Useful when using firewalls or load balancers and you want the redirected request from the browser to reference the same host name that was sent in the original request. String Null
Post Timeout This attribute sets the timeout (in seconds) that WebLogic Server waits between receiving chunks of data in an HTTP POST data. Used to prevent denial-of-service attacks that attempt to overload the server with POST data.
Integer 30
Max Post Size Max Post Size (in bytes) for reading HTTP POST data in a servlet request. MaxPostSize < 0 means unlimited Bytes -1
Enable Keepalives Whether or not HTTP keep-alive is enabled. BooleanTrue = enabledFalse = not enabled True
Duration(labeled Keep Alive Secs on the Virtual Host panel) Number of seconds to maintain HTTP Keep Alive before timing out the session. Integer 30
HTTPS Duration(labeled Https Keep Alive Secs on the Virtual Host panel) Number of seconds to maintain HTTPS Keep Alive before timing out the session.
Integer 60

Attribute

Description

Range of Values

Default Value

Frontend Host Set when the Host information coming from the URL may be inaccurate due to the presence of a firewall or proxy. If this parameter is set, the HOST header is ignored and this value is always used. String Null
Frontend HTTP Port Set when the Port information coming from the URL may be inaccurate due to the presence of a firewall or proxy. If this parameter is set, the HOST header is ignored and this value is always used. Integer 0
Frontend HTTPS Port
Set when the Port information coming from the URL may be inaccurate due to the presence of a firewall or proxy. If this parameter is set, the HOST header is ignored and this value is always used.
Integer 0
Send
Server
Header
If set to false, the server name is not sent with the HTTP response. Useful for wireless applications where there is limited space for headers. BooleanTrue = enabledFalse = not enabled True
Accept Context Path In Get Real Path Beginning with the WebLogic Sever 8.1 release inclusion of the contextPath in the virtualPath to the context.getRealPath() will not be allowed as it breaks the case when the subdirectories have the same name as contextPath. In order to support applications which might have been developed according to the old behaviour BEA is providing a compatibility switch. This switch will be deprecated in future releases. BooleanTrue = enabledFalse = not enabled False
HTTP Max Message Size Maximum HTTP message size allowable in a message header. This attribute attempts to prevent a denial of service attack whereby a caller attempts to force the server to allocate more memory than is available, thereby keeping the server from responding quickly to other requests. This setting only applies to connections that are initiated using one of the default ports (ServerMBean setListenPort and setAdministrationPort or SSLMBean setListenPort). Connections on additional ports are tuned via the NetworkChannelMBean. Minimum: 4096Maximum: 2000000000 -1
HTTP Message Timeout Maximum number of seconds spent waiting for a complete HTTP message to be received. This attribute helps guard against denial of service attacks in which a caller indicates that they will be sending a message of a certain size which they never finish sending. This setting only applies to connections that are initiated using one of the default ports (ServerMBean setListenPort and setAdministrationPort or SSLMBean setListenPort). Connections on additional ports are tuned via the NetworkChannelMBean. Minimum: 0Maximum: 480 -1
Advanced Attributes

 


Configuring the Listen Port

You can specify the port that each WebLogic Server listens on for HTTP requests. Although you can specify any valid port number, if you specify port 80, you can omit the port number from the HTTP request used to access resources over HTTP. For example, if you define port 80 as the listen port, you can use the form http://hostname/myfile.html instead of http://hostname:portnumber/myfile.html.

You define a separate listen port for regular and secure (using SSL) requests. You define the regular listen port on the Servers node in the Administration Console, under the Configuration/General tab, and you define the SSL listen port under the Connections/SSL tab.

 

Configuring the Listen Ports from the Administration Console

  1. In the left pane, expand the Servers folder.
  2. Click the server whose Listen Port you want to configure.
  3. In the right pane, click the Configuration tab and the General subtab.
  4. If you want to disable the non-SSL listen port so that the server listens only on the SSL listen port, remove the checkmark from the Listen Port Enabled box.
  5. If you are using the non-SSL listen port and you want to modify the default port number, change the default number in the Listen Port box.
  6. If you want to disable the SSL listen port so that the server listens only on the non-SSL listen port, remove the checkmark from the Enable SSL Listen Port box.

    Note: You cannot disable both the non-SSL listen port and the SSL listen port. At least one port must be active.

  7. If you want to modify the default SSL listen port number change the value in the SSL Listen Port box.
  8. Click Apply.
  9. Restart the server.

 


Web Applications

HTTP and Web Applications are deployed according to the Servlet 2.3 specification from Sun Microsystems, which describes the use of Web Applications as a standardized way of grouping together the components of a Web-based application. These components include JSP pages, HTTP servlets, and static resources such as HTML pages or image files. In addition, a Web Application can access external resources such as EJBs and JSP tag libraries. Each server can host any number of Web Applications. You normally use the name of the Web Application as part of the URI you use to request resources from the Web Application.

By default JSPs are compiled into the servers' temporary directory the location for which is (for a server: "myserver" and for a webapp: "mywebapp"): <domain_dir>\myserver\.wlnotdelete\appname_mywebapp_4344862

The server deletes the temp directory (and thus the default working directory for the jsps) each time the server is restarted. If the JSPs are configured to be precompiled they will be precompiled each time the server restarts.

To avoid this there are following options:

  • Precompile the generated classes into your WEB-INF/classes directory (or a jar file in WEB-INF/lib).
  • Set a workingDir for the jsp-descriptor in your weblogic.xml

    <jsp-descriptor>

    <jsp-param> <param-name>workingDir</param-name> <param-value>d:\jsp_store</param-value> </jsp-param>

    </jsp-descriptor>

    After this is done the precompiled classes will not be deleted each time the server restarts and they will not be recompiled.

For more information, see Assembling and Configuring Web Applications.

 

Web Applications and Clustering

Web Applications can be deployed in a cluster of WebLogic Servers. When a user requests a resource from a Web Application, the request is routed to one of the servers of the cluster that host the Web Application. If an application uses a session object, then sessions must be replicated across the nodes of the cluster. Several methods of replicating sessions are provided.

For more information, see Using WebLogic Server Clusters.

 

Designating a Default Web Application

Every server instance and virtual host in your domain can declare a default Web Application. The default Web Application responds to any HTTP request that cannot be resolved to another deployed Web Application. In contrast to all other Web Applications, the default Web Application does not use the Web Application name as part of the URI. Any Web Application targeted to a server or virtual host can be declared as the default Web Application. (Targeting a Web Application is discussed later in this section. For more information about virtual hosts, see Configuring Virtual Hosting).

The examples domain that is shipped with Weblogic Server has a default Web Application already configured. The default Web Application in this domain is named DefaultWebApp and is located in the applications directory of the domain.

If you declare a default Web Application that fails to deploy correctly, an error is logged and users attempting to access the failed default Web Application receive an HTTP 400 error message.

For example, if your Web Application is called shopping, you would use the following URL to access a JSP called cart.jsp from the Web Application:

http://host:port/shopping/cart.jsp

If, however, you declared shopping as the default Web Application, you would access cart.jsp with the following URL:

http://host:port/cart.jsp

(Where host is the host name of the machine running WebLogic Server and port is the port number where the WebLogic Server is listening for requests.)

To designate a default Web Application for a server or virtual host set the context root in the weblogic.xml file to "/".

 

Virtual Directory Mapping

Using the virtual directory mapping feature, you can create one directory to serve static files such as images for multiple Web Applications. For example, you would create a mapping similar to the folowing:

<virtual-directory-mapping>

<local-path>c:/usr/gifs</local-path>

<url-pattern>/images/*</url-pattern>

</virtual-directory-mapping>

A request to HTTP:// localhost:7001/mywebapp/images/test.gif will cause your WebLogic Server implementation to look for the requested image at: c:/usr/gifs/images/*.

This directory must be located in the relative uri, such as "/images/test.gif".

 


Configuring Virtual Hosting

Virtual hosting allows you to define host names that servers or clusters respond to. When you use virtual hosting you use DNS to specify one or more host names that map to the IP address of a WebLogic Server instance or cluster, and you specify which Web Applications are served by the virtual host. When used in a cluster, load balancing allows the most efficient use of your hardware, even if one of the DNS host names processes more requests than the others.

For example, you can specify that a Web Application called books responds to requests for the virtual host name www.books.com, and that these requests are targeted to WebLogic Servers A,B and C, while a Web Application called cars responds to the virtual host name www.autos.com and these requests are targeted to WebLogic Servers D and E. You can configure a variety of combinations of virtual host, WebLogic Servers, clusters and Web Applications, depending on your application and Web server requirements.

For each virtual host that you define you can also separately define HTTP parameters and HTTP access logs. The HTTP parameters and access logs set for a virtual host override those set for a server. You may specify any number of virtual hosts.

You activate virtual hosting by targeting the virtual host to a server or cluster of servers. Virtual hosting targeted to a cluster will be applied to all servers in the cluster.

 

Virtual Hosting and the Default Web Application

You can also designate a default Web Application for each virtual host. The default Web Application for a virtual host responds to all requests that cannot be resolved to other Web Applications deployed on the same server or cluster as the virtual host.

Unlike other Web Applications, a default Web Application does not use the Web Application name (also called the context path) as part of the URI used to access resources in the default Web Application.

For example, if you defined virtual host name www.mystore.com and targeted it to a server on which you deployed a Web Application called shopping, you would access a JSP called cart.jsp from the shopping Web Application with the following URI:

http://www.mystore.com/shopping/cart.jsp

If, however, you declared shopping as the default Web Application for the virtual host www.mystore.com, you would access cart.jsp with the following URI:

http://www.mystore.com/cart.jsp

For more information, see How WebLogic Server Resolves HTTP Requests.

When using multiple Virtual HOsts with diferent default web applications, you can not use single sign-on, as each web application will overwrite the JSESSIONID cookies set by the previous web application. This will occur even if the CookieName, CookiePath, and CookieDomain are identical in each of the default web applications.

Virtual host resolution for a given HTTP request is performed base on the incoming HOST header. If the HOST header is incorrect or absent, the Web application resolves to the default virtual host (default Web server).

 

Setting Up a Virtual Host

Use the Administration Console to define a virtual host.

  1. Create a new Virtual Host.
    1. Expand the Services node in the left pane. The node expands and displays a list of services.
    2. Click the virtual hosts node. If any virtual hosts are defined, the node expands and displays a list of virtual hosts.
    3. Click Create a New Virtual Host in the right pane.
    4. Enter a name to represent this virtual host.
    5. Enter the virtual host names, one per line. Only requests matching one of these virtual host names will be handled by the WebLogic Server instance or cluster targeted by this virtual host.
    6. Click Create.
  2. Define logging and HTTP parameters:
    1. (Optional) Click on the Logging tab and fill in HTTP access log attributes (For more information, see Setting Up HTTP Access Logs.)
    2. Select the HTTP tab and fill in the HTTP Parameters.
  3. Define the servers that will respond to this virtual host.
    1. Select the Targets --> Servers tab. You will see a list of available servers.
    2. Select a server.
    3. Click Apply.
  4. Define the clusters that will respond to this virtual host (optional). You must have previously defined a WebLogic Cluster. For more information, see Using WebLogic Server Clusters.
    1. Select the Targets tab.
    2. Select the Clusters tab. You will see a list of available clusters.
    3. Select a cluster.
    4. Click Apply.
  5. Target Web Applications to the virtual host.
    1. Click the Web Applications node in the left panel.
    2. Select the Web Application you want to target.
    3. Select the Targets tab in the right panel.
    4. Select the Virtual Hosts tab.
    5. Select Virtual Host.
    6. Click Apply.

You must add a line naming the virtual host to the etc/hosts file on your server to ensure that the virtual host name can be resolved.

 


How WebLogic Server Resolves HTTP Requests

When WebLogic Server receives an HTTP request, it resolves the request by parsing the various parts of the URL and using that information to determine which Web Application and/or server should handle the request. The examples below demonstrate various combinations of requests for Web Applications, virtual hosts, servlets, JSPs, and static files and the resulting response.

Note: If you package your Web Application as part of an Enterprise Application, you can provide an alternate name for a Web Application that is used to resolve requests to the Web Application. For more information, see Deploying Web Applications as Part of an Enterprise Application.

The table below provides some sample URLs and the file that is served by WebLogic Server.

URL

This file is served in response

http://host:port/apples Welcome file* defined in the apples Web Application.
http://host:port/apples Directory listing of the top level directory of the apples Web Application.
http://host:port/oranges/naval Servlet mapped with <url-pattern> of /naval in the oranges Web Application.There are additional considerations for servlet mappings. For more information, see Configuring Servlets.
http://host:port/naval Servlet mapped with <url-pattern> of /naval in the oranges Web Application and oranges is defined as the default Web Application.For more information, see Configuring Servlets.
http://host:port/apples/pie.jsp pie.jsp, from the top-level directory of the apples Web Application.
http://host:port Directory listing of the top level directory of the default Web Application
http://host:port Welcome file* from the default Web Application.
http://host:port/apples/myfile.html myfile.html, from the top level directory of the apples Web Application.
http://host:port/myfile.html myfile.html, from the top level directory of the default Web Application.
http://host:port/apples/images/red.gif red.gif, from the images subdirectory of the top-level directory of the apples Web Application.
http://host:port/myFile.html
Where myfile.html does not exist in the apples Web Application and a default servlet has not been defined.
Error 404For more information, see Customizing HTTP Error Responses.
http://www.fruit.com/ Welcome file* from the default Web Application for a virtual host with a host name of www.fruit.com.
http://www.fruit.com/ Directory listing of the top level directory of the default Web Application for a virtual host with a host name of www.fruit.com.
http://www.fruit.com/oranges/myfile.html myfile.html, from the oranges Web Application that is targeted to a virtual host with host name www.fruit.com.

* For more information, see Configuring Welcome Pages.

 


Setting Up HTTP Access Logs

WebLogic Server can keep a log of all HTTP transactions in a text file, in either common log format or extended log format. Common log format is the default, and follows a standard convention. Extended log format allows you to customize the information that is recorded. You can set the attributes that define the behavior of HTTP access logs for each server or for each virtual host that you define.

For information on setting up HTTP logging for a server or a virtual host, refer to the following topics in the Administration Console online help:

 

Log Rotation

You can also choose to rotate the log file based on either the size of the file or after a specified amount of time has passed. When either one of these two criteria are met, the current access log file is closed and a new access log file is started. If you do not configure log rotation, the HTTP access log file grows indefinitely. You can configure the name of the access log file to include a time and date stamp that indicates when the file was rotated. If you do not configure a time stamp, each rotated file name inlcudes a numeric portion that is incremented upon each rotation. Separate HTTP Access logs are kept for each Web Server you have defined.

 

Common Log Format

The default format for logged HTTP information is the common log format. This standard format follows the pattern:

host RFC931 auth_user [day/month/year:hour:minute:second



   UTC_offset] "request" status bytes

where:

host

Either the DNS name or the IP number of the remote client

RFC931

Any information returned by IDENTD for the remote client; WebLogic Server does not support user identification

auth_user

If the remote client user sent a userid for authentication, the user name; otherwise "-"

day/month/year:hour:minute:second UTC_offset

Day, calendar month, year and time of day (24-hour format) with the hours difference between local time and GMT, enclosed in square brackets

request"

First line of the HTTP request submitted by the remote client enclosed in double quotes

status

HTTP status code returned by the server, if available; otherwise "-"

bytes

Number of bytes listed as the content-length in the HTTP header, not including the HTTP header, if known; otherwise "-"

 

Setting Up HTTP Access Logs by Using Extended Log Format

WebLogic Server also supports extended log file format, version 1.0, as defined by the W3C. This is an emerging standard, and WebLogic Server follows the draft specification from W3C. The current definitive reference may be found from the W3C Technical Reports and Publications page

The extended log format allows you to specify the type and order of information recorded about each HTTP communication. To enable the extended log format, set the Format attribute on the HTTP tab in the Administration Console to Extended. (See Creating Custom Field Identifiers).

You specify what information should be recorded in the log file with directives, included in the actual log file itself. A directive begins on a new line and starts with a # sign. If the log file does not exist, a new log file is created with default directives. However, if the log file already exists when the server starts, it must contain legal directives at the head of the file.

 

Creating the Fields Directive

The first line of your log file must contain a directive stating the version number of the log file format. You must also include a Fields directive near the beginning of the file:

  #Version: 1.0


#Fields: xxxx xxxx xxxx ...

Where each xxxx describes the data fields to be recorded. Field types are specified as either simple identifiers, or may take a prefix-identifier format, as defined in the W3C specification. Here is an example:

  #Fields: date time cs-method cs-uri

This identifier instructs the server to record the date and time of the transaction, the request method that the client used, and the URI of the request for each HTTP access. Each field is separated by white space, and each record is written to a new line, appended to the log file.

Note: The #Fields directive must be followed by a new line in the log file, so that the first log message is not appended to the same line.

 

Supported Field identifiers

The following identifiers are supported, and do not require a prefix.

date

Date at which transaction completed, field has type <date>, as defined in the W3C specification.

time

Time at which transaction completed, field has type <time>, as defined in the W3C specification.

time-taken

Time taken for transaction to complete in seconds, field has type <fixed>, as defined in the W3C specification.

bytes

Number of bytes transferred, field has type <integer>.

Note that the cached field defined in the W3C specification is not supported in WebLogic Server.

The following identifiers require prefixes, and cannot be used alone. The supported prefix combinations are explained individually.

IP address related fields:

These fields give the IP address and port of either the requesting client, or the responding server. This field has type <address>, as defined in the W3C specification. The supported prefixes are:

c-ip

The IP address of the client.

s-ip

The IP address of the server.

DNS related fields

These fields give the domain names of the client or the server. This field has type <name>, as defined in the W3C specification. The supported prefixes are:

c-dns

The domain name of the requesting client.

s-dns

The domain name of the requested server.

sc-status

Status code of the response, for example (404) indicating a "File not found" status. This field has type <integer>, as defined in the W3C specification.

sc-comment

The comment returned with status code, for instance "File not found". This field has type <text>.

cs-method

The request method, for example GET or POST. This field has type <name>, as defined in the W3C specification.

cs-uri

The full requested URI. This field has type <uri>, as defined in the W3C specification.

cs-uri-stem

Only the stem portion of URI (omitting query). This field has type <uri>, as defined in the W3C specification.

cs-uri-query

Only the query portion of the URI. This field has type <uri>, as defined in the W3C specification.

 

Creating Custom Field Identifiers

You can also create user-defined fields for inclusion in an HTTP access log file that uses the extended log format. To create a custom field you identify the field in the ELF log file using the Fields directive and then you create a matching Java class that generates the desired output. You can create a separate Java class for each field, or the Java class can output multiple fields. A sample of the Java source for such a class is included in this document. See Java Class for Creating a Custom ELF Field.

To create a custom field:

  1. Include the field name in the Fields directive, using the form:

    x-myCustomField.

    Where myCustomField is a fully-qualified class name.

    For more information on the Fields directive, see Creating the Fields Directive.

  2. Create a Java class with the same fully-qualified class name as the custom field you defined with the Fields directive (for example myCustomField). This class defines the information you want logged in your custom field. The Java class must implement the following interface:

    weblogic.servlet.logging.CustomELFLogger

    In your Java class, implement the logField() method, which takes a HttpAccountingInfo object and FormatStringBuffer object as its arguments:

    • Use the HttpAccountingInfo object to access HTTP request and response data that you can output in your custom field. Getter methods are provided to access this information. For a complete listing of these get methods, see Get Methods of the HttpAccountingInfo Object.
    • Use the FormatStringBuffer class to create the contents of your custom field. Methods are provided to create suitable output. For more information on these methods, see the Javadocs for FormatStringBuffer
  3. Compile the Java class and add the class to the CLASSPATH statement used to start WebLogic Server. You will probably need to modify the CLASSPATH statements in the scripts that you use to start WebLogic Server.

    Note: Do not place this class inside of a Web Application or Enterprise Application in exploded or jar format.

  4. Configure WebLogic Server to use the extended log format. For more information, see Setting Up HTTP Access Logs by Using Extended Log Format.

Note: When writing the Java class that defines your custom field, you should not execute any code that is likely to slow down the system (For instance, accessing a DBMS or executing significant I/O or networking calls.) Remember, an HTTP access log file entry is created for every HTTP request.

Note: If you want to output more than one field, delimit the fields with a tab character. For more information on delimiting fields and other ELF formatting issues, see Extended Log Format.

 

Get Methods of the HttpAccountingInfo Object

The following methods return various data regarding the HTTP request. These methods are similar to various methods of javax.servlet.ServletRequest, javax.servlet.http.Http.ServletRequest, and javax.servlet.http.HttpServletResponse.

For details on these methods see the corresponding methods in the Java interfaces listed in the following table, or refer to the specific information contained in the table.

HttpAccountingInfo Methods

Where to find information on the methods

Object getAttribute(String name); javax.servlet.ServletRequest
Enumeration getAttributeNames(); javax.servlet.ServletRequest
String getCharacterEncoding(); javax.servlet.ServletRequest
int getResponseContentLength(); javax.servlet.ServletResponse.
setContentLength()
This method gets the content length of the response, as set with the setContentLength() method.
String getContentType(); javax.servlet.ServletRequest
Locale getLocale(); javax.servlet.ServletRequest
Enumeration getLocales(); javax.servlet.ServletRequest
String getParameter(String name); javax.servlet.ServletRequest
Enumeration getParameterNames(); javax.servlet.ServletRequest
String[] getParameterValues(String name); javax.servlet.ServletRequest
String getProtocol(); javax.servlet.ServletRequest
String getRemoteAddr(); javax.servlet.ServletRequest
String getRemoteHost(); javax.servlet.ServletRequest
String getScheme(); javax.servlet.ServletRequest
String getServerName(); javax.servlet.ServletRequest
int getServerPort(); javax.servlet.ServletRequest
boolean isSecure(); javax.servlet.ServletRequest
String getAuthType(); javax.servlet.http.Http.ServletRequest
String getContextPath(); javax.servlet.http.Http.ServletRequest
Cookie[] getCookies(); javax.servlet.http.Http.ServletRequest
long getDateHeader(String name); javax.servlet.http.Http.ServletRequest
String getHeader(String name); javax.servlet.http.Http.ServletRequest
Enumeration getHeaderNames(); javax.servlet.http.Http.ServletRequest
Enumeration getHeaders(String name); javax.servlet.http.Http.ServletRequest
int getIntHeader(String name); javax.servlet.http.Http.ServletRequest
String getMethod(); javax.servlet.http.Http.ServletRequest
String getPathInfo(); javax.servlet.http.Http.ServletRequest
String getPathTranslated(); javax.servlet.http.Http.ServletRequest
String getQueryString(); javax.servlet.http.Http.ServletRequest
String getRemoteUser(); javax.servlet.http.Http.ServletRequest
String getRequestURI(); javax.servlet.http.Http.ServletRequest
String getRequestedSessionId(); javax.servlet.http.Http.ServletRequest
String getServletPath(); javax.servlet.http.Http.ServletRequest
Principal getUserPrincipal(); javax.servlet.http.Http.ServletRequest
boolean isRequestedSessionIdFromCookie(); javax.servlet.http.Http.ServletRequest
boolean isRequestedSessionIdFromURL(); javax.servlet.http.Http.ServletRequest
boolean isRequestedSessionIdFromUrl(); javax.servlet.http.Http.ServletRequest
boolean isRequestedSessionIdValid(); javax.servlet.http.Http.ServletRequest
String getFirstLine(); Returns the first line of the HTTP request, for example:GET /index.html HTTP/1.0
long getInvokeTime(); Returns the length of time it took for the service method of a servlet to write data back to the client.
int getResponseStatusCode(); javax.servlet.http.HttpServletResponse
String
getResponseHeader(String name);
javax.servlet.http.HttpServletResponse

Listing 8-1 Java Class for Creating a Custom ELF Field

import weblogic.servlet.logging.CustomELFLogger;



import weblogic.servlet.logging.FormatStringBuffer;
import weblogic.servlet.logging.HttpAccountingInfo;
/* This example outputs the User-Agent field into a



custom field called MyCustomField
*/
public class MyCustomField implements CustomELFLogger{
public void logField(HttpAccountingInfo metrics,



  FormatStringBuffer buff) { buff.appendValueOrDash(metrics.getHeader("User-Agent"));
  }
}

 


Preventing POST Denial-of-Service Attacks

A Denial-of-Service attack is a malicious attempt to overload a server with phony requests. One common type of attack is to send huge amounts of data in an HTTP POST method. You can set three attributes in WebLogic Server that help prevent this type of attack. These attributes are set in the console, under Servers or virtual hosts. If you define these attributes for a virtual host, the values set for the virtual host override those set under Servers.

PostTimeoutSecs

You can limit the amount of time that WebLogic Server waits between receiving chunks of data in an HTTP POST.

MaxPostTimeSecs

Limits the total amount of time that WebLogic Server spends receiving post data. If this limit is triggered, a PostTimeoutException is thrown and the following message is sent to the server log:

Post time exceeded MaxPostTimeSecs.

MaxPostSize

Limits the number of bytes of data received in a POST from a single request. If this limit is triggered, a MaxPostSizeExceeded exception is thrown and the following message is sent to the server log:

POST size exceeded the parameter MaxPostSize.

An HTTP error code 413 (Request Entity Too Large) is sent back to the client.

If the client is in listening mode, it gets these messages. If the client is not in listening mode, the connection is broken.

 


Setting Up WebLogic Server for HTTP Tunneling

HTTP tunneling provides a way to simulate a stateful socket connection between WebLogic Server and a Java client when your only option is to use the HTTP protocol. It is generally used to tunnel through an HTTP port in a security firewall. HTTP is a stateless protocol, but WebLogic Server provides tunneling functionality to make the connection appear to be a regular T3Connection. However, you can expect some performance loss in comparison to a normal socket connection.

 

Configuring the HTTP Tunneling Connection

Under the HTTP protocol, a client may only make a request, and then accept a reply from a server. The server may not voluntarily communicate with the client, and the protocol is stateless, meaning that a continuous two-way connection is not possible.

WebLogic HTTP tunneling simulates a T3Connection via the HTTP protocol, overcoming these limitations. There are two attributes that you can configure in the Administration Console to tune a tunneled connection for performance. You access these attributes in the Servers section, under the Connections and Protocols tabs. It is advised that you leave them at their default settings unless you experience connection problems. These properties are used by the server to determine whether the client connection is still valid, or whether the client is still alive.

Enable Tunneling

Enables or disables HTTP tunneling. HTTP tunneling is disabled by default.

Note that the server must also support both the HTTP and T3 protocols in order to use HTTP tunneling.

Tunneling Client Ping

When an HTTP tunnel connection is set up, the client automatically sends a request to the server, so that the server may volunteer a response to the client. The client may also include instructions in a request, but this behavior happens regardless of whether the client application needs to communicate with the server. If the server does not respond (as part of the application code) to the client request within the number of seconds set in this attribute, it does so anyway. The client accepts the response and automatically sends another request immediately.

Default is 45 seconds; valid range is 20 to 900 seconds.

Tunneling Client Timeout

If the number of seconds set in this attribute have elapsed since the client last sent a request to the server (in response to a reply), then the server regards the client as dead, and terminates the HTTP tunnel connection. The server checks the elapsed time at the interval specified by this attribute, when it would otherwise respond to the client's request.

Default is 40 seconds; valid range is 10 to 900 seconds.

 

Connecting to WebLogic Server from the Client

When your client requests a connection with WebLogic Server, all you need to do in order to use HTTP tunneling is specify the HTTP protocol in the URL. For example:

  Hashtable env = new Hashtable();


env.put(Context.PROVIDER_URL, "http://wlhost:80");


Context ctx = new InitialContext(env);

On the client side, a special tag is appended to the http protocol, so that WebLogic Server knows this is a tunneling connection, instead of a regular HTTP request. Your application code does not need to do any extra work to make this happen.

The client must specify the port in the URL, even if the port is 80. You can set up your WebLogic Server to listen for HTTP requests on any port, although the most common choice is port 80 since requests to port 80 are customarily allowed through a firewall.

You specify the listen port for WebLogic Server in the Administration Console under the "Servers" node, under the "Network" tab.

 


Using Native I/O for Serving Static Files (Windows Only)

When running WebLogic Server on Windows NT/2000 you can specify that WebLogic Server use the native operating system call TransmitFile instead of using Java methods to serve static files such as HTML files, text files, and image files. Using native I/O can provide performance improvements when serving larger static files.

To use native I/O, add two parameters to the web.xml deployment descriptor of a Web Application containing the files to be served using native I/O. The first parameter, weblogic.http.nativeIOEnabled should be set to TRUE to enable native I/O file serving. The second parameter, weblogic.http.minimumNativeFileSize sets the minimum file size for using native I/O. If the file being served is larger than this value, native I/O is used. If you do not specify this parameter, a value of 400K is used.

Generally, native I/O provides greater performance gains when serving larger files; however, as the load on the machine running WebLogic Server increases, these gains diminish. You may need to experiment to find the correct value for weblogic.http.minimumNativeFileSize.

The following example shows the complete entries that should be added to the web.xml deployment descriptor. These entries must be placed in the web.xml file after the <distributable> element and before <servlet> element.

<context-param>

<param-name>weblogic.http.nativeIOEnabled</param-name>

<param-value>TRUE</param-value>

</context-param>

<context-param>

<param-name>weblogic.http.minimumNativeFileSize</param-name>

<param-value>500</param-value>

</context-param>

weblogic.http.nativeIOEnabled can also be set as a context parameter in the FileServlet.

Skip navigation bar  Back to Top Previous Next