Elias Chavarria wrote:
> -DproxySet=true
> -DproxyPort=80
>
> However, when i start my application, it sends errors. Is there any way to
> verify that this settings are being used?

Drop that as a JSP into some webapp-dir on your tomcat:

---------snip---------

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8" session="false"
        import="java.util.Enumeration" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>List of properties</title>
</head>
<body>
<h1>List of properties</h1>
<table>
<tr><th>property name</th><th>property value</th></tr>
<%
Enumeration propNames = System.getProperties().propertyNames();
while (propNames.hasMoreElements())
{
        String propName = (String) propNames.nextElement();
        String propValue = System.getProperty(propName);
%>
<tr><td><%=propName%></td><td><%=propValue%></td></tr>
<%
}
%>
</table>
</body>
</html>

---------snap---------

Regards
  mks

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to