+

Search Tips   |   Advanced Search

Set JVM sendRedirect calls to use context root


If the com.ibm.websphere.sendredirect.compatibility property is not set and the application servlet code has statements such as sendRedirect("/home.html"), the Web browser might display messages such as Error 404: No target servlet configured for uri: /home.html.

Deprecated feature: The com.ibm.websphere.sendredirect.compatibility property is deprecated. You should modify the applications to redirect non-relative URLs (those starting with a "/") relative to the servlet container (WEB_ROOT) instead of relative to the Web app context root.depfeat

To instruct the server to use the context root for that the application uses for sendRedirect() calls instead of using the document root for the Web server, configure the Java Virtual Machine (JVM) by setting the com.ibm.websphere.sendredirect.compatibility property to a true or false value.

 

  1. Access the settings page for a property of the JVM.

    1. In the admin console ...

      Servers > Server Types > Application servers.

    2. On the Application server page, click on the name of the server whose JVM settings you want to configure.

    3. On the settings page for the selected appserver, in the Server Infrastructure section, click Java and process management > Process definition.

    4. On the Process definition page, click Java virtual machine.

    5. On the Java virtual machine page, clickCustom Properties.

    6. On the Custom properties page, click New .

  2. On the settings page for a property, specify com.ibm.websphere.sendredirect.compatibility in the Name field, and either true or false in the Value field. Then click OK.

  3. Click Save on the console task bar.

  4. Stop the application server, and then restart the application server.

 

Related tasks

Set the JVM