JBossWeb SVN: r1766 - trunk/webapps/docs.
by jbossweb-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2011-07-05 05:26:09 -0400 (Tue, 05 Jul 2011)
New Revision: 1766
Modified:
trunk/webapps/docs/building.xml
Log:
make it looks better :D
Modified: trunk/webapps/docs/building.xml
===================================================================
--- trunk/webapps/docs/building.xml 2011-07-05 09:20:26 UTC (rev 1765)
+++ trunk/webapps/docs/building.xml 2011-07-05 09:26:09 UTC (rev 1766)
@@ -85,11 +85,11 @@
<p>
Use the following commands:
-<code><br/>
- cd ${jbossweb.source}<br/>
- ant download<br/>
- ant<br/>
-</code>
+<source>
+ cd ${jbossweb.source}
+ ant download
+ ant
+</source>
</p>
<p>
13 years, 5 months
JBossWeb SVN: r1765 - trunk/webapps/docs.
by jbossweb-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2011-07-05 05:20:26 -0400 (Tue, 05 Jul 2011)
New Revision: 1765
Modified:
trunk/webapps/docs/building.xml
Log:
Explain where to put the jbossweb.jar file.
Modified: trunk/webapps/docs/building.xml
===================================================================
--- trunk/webapps/docs/building.xml 2011-07-04 13:55:32 UTC (rev 1764)
+++ trunk/webapps/docs/building.xml 2011-07-05 09:20:26 UTC (rev 1765)
@@ -8,7 +8,7 @@
<properties>
<author>Remy Maucherat</author>
- <title>Building Tomcat</title>
+ <title>Building JBossWeb</title>
</properties>
<body>
@@ -17,7 +17,7 @@
<p>
Building JBoss Web from SVN is very easy, and is the first step to contributing to
-Tomcat. The following is a step by step TODO list.
+JBossWeb. The following is a step by step TODO list.
</p>
</section>
@@ -68,7 +68,7 @@
<p>
Download a source package from:
- <code>http://labs.jboss.com/jbossweb/</code>
+ <code>http://www.jboss.org/jbossweb/downloads/jboss-web</code>
</p>
<p>
@@ -93,6 +93,12 @@
</p>
<p>
+NOTE: That build jar files in output/jars, the <code>jbossweb.jar</code>
+have to be copied in <code>${jboss.server.data.dir)/modules/org/jboss/as/web/main</code> to be
+used in AS7.
+</p>
+
+<p>
NOTE: Users accessing the Internet through a proxy must use a properties
file to indicate to Ant the proxy configuration. Read below.
</p>
13 years, 5 months
JBossWeb SVN: r1764 - trunk/java/org/apache/catalina/core.
by jbossweb-commits@lists.jboss.org
Author: remy.maucherat(a)jboss.com
Date: 2011-07-04 09:55:32 -0400 (Mon, 04 Jul 2011)
New Revision: 1764
Modified:
trunk/java/org/apache/catalina/core/StandardHostValve.java
trunk/java/org/apache/catalina/core/StandardWrapperValve.java
Log:
- I no longer feel additional regular resumes are that anormal, so filter them out for now
(the main issue with them was the resume loop it created with the complete() call).
Modified: trunk/java/org/apache/catalina/core/StandardHostValve.java
===================================================================
--- trunk/java/org/apache/catalina/core/StandardHostValve.java 2011-07-04 13:29:00 UTC (rev 1763)
+++ trunk/java/org/apache/catalina/core/StandardHostValve.java 2011-07-04 13:55:32 UTC (rev 1764)
@@ -213,6 +213,15 @@
// Select the Context to be used for this Request
Context context = request.getContext();
+ // Some regular callback events should be filtered out for Servlet 3 async
+ if (request.getAsyncContext() != null) {
+ Request.AsyncContextImpl asyncContext = (Request.AsyncContextImpl) request.getAsyncContext();
+ if (event.getType() == EventType.EVENT && asyncContext.getRunnable() == null
+ && asyncContext.getPath() == null) {
+ return;
+ }
+ }
+
// Bind the context CL to the current thread
if (context.getLoader() != null) {
Thread.currentThread().setContextClassLoader(context.getLoader().getClassLoader());
@@ -237,6 +246,7 @@
instances[i].getClass().getName()), t);
ServletRequest sreq = request.getRequest();
sreq.setAttribute(RequestDispatcher.ERROR_EXCEPTION, t);
+ Thread.currentThread().setContextClassLoader(StandardHostValve.class.getClassLoader());
return;
}
}
Modified: trunk/java/org/apache/catalina/core/StandardWrapperValve.java
===================================================================
--- trunk/java/org/apache/catalina/core/StandardWrapperValve.java 2011-07-04 13:29:00 UTC (rev 1763)
+++ trunk/java/org/apache/catalina/core/StandardWrapperValve.java 2011-07-04 13:55:32 UTC (rev 1764)
@@ -639,9 +639,6 @@
if (!asyncContext.isReady()) {
asyncContext.complete();
}
- } else {
- container.getLogger().warn(sm.getString("standardWrapper.async.invalidContext",
- getContainer().getName()));
}
}
@@ -665,7 +662,6 @@
Throwable exception) {
request.setAttribute(RequestDispatcher.ERROR_EXCEPTION, exception);
response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
-
}
public long getProcessingTime() {
13 years, 5 months
JBossWeb SVN: r1763 - trunk/webapps/docs/config.
by jbossweb-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2011-07-04 09:29:00 -0400 (Mon, 04 Jul 2011)
New Revision: 1763
Modified:
trunk/webapps/docs/config/executor.xml
Log:
Add a executor example.
Modified: trunk/webapps/docs/config/executor.xml
===================================================================
--- trunk/webapps/docs/config/executor.xml 2011-07-04 10:53:24 UTC (rev 1762)
+++ trunk/webapps/docs/config/executor.xml 2011-07-04 13:29:00 UTC (rev 1763)
@@ -7,7 +7,7 @@
&project;
<properties>
- <author email="fhanik(a)apache.org">Filip Hanik</author>
+ <author email="jfclere(a)gmail.com">Jean-Frederic Clere</author>
<title>The Executor (thread pool)</title>
</properties>
@@ -22,70 +22,73 @@
but also other components when those get configured to support executors</p>
- <p>The executor has to implement the <code>org.apache.catalina.Executor</code> interface.</p>
+ <p>The <code>executor</code> is defined in the <code>subsystem=threads</code>
+ See <a href="https://docs.jboss.org/author/display/AS7/Admin+Guide">AS7 Admin Guide</a>
+ for more on the threads system.
+ </p>
- <p>The executor is a nested element to the <a href="service.html">Service</a> element.
- And in order for it to be picked up by the connectors, the Executor element has to appear
- prior to the Connector element in server.xml</p>
</section>
-<section name="Attributes">
+<section name="Example">
- <subsection name="Common Attributes">
+ <p>To demonstrate how a the logic works a <code>thread-pool</code>
+ was added to the <code>subsystem=threads</code> and used in the
+ <code>subsystem=web/connector=http</code>:</p>
- <p>All implementations of <strong>Executor</strong>
- support the following attributes:</p>
+ <subsection name="subsystem=threads">
+ <p>A <code>thread-pool</code> named "http" has been added it uses a
+ <code>thread-factory</code> that creates threads named "HTTP-number"
+ </p>
- <attributes>
-
- <attribute name="className" required="false">
- <p>The class of the implementation. The implementation has to implement the
- <code>org.apache.catalina.Executor</code> interface.
- This interface ensures that the object can be referenced through its <code>name</code> attribute
- and that implements Lifecycle, so that it can be started and stopped with the container.
- The default value for the className is <code>org.apache.catalina.core.StandardThreadExecutor</code></p>
- </attribute>
+<source>
+[standalone@localhost:9999 /] ./subsystem=threads:read-resource(recursive=true)
+{
+ "outcome" => "success",
+ "result" => {
+ "bounded-queue-thread-pool" => undefined,
+ "queueless-thread-pool" => undefined,
+ "scheduled-thread-pool" => undefined,
+ "thread-factory" => {"http" => {
+ "name" => "http",
+ "priority" => 9,
+ "thread-name-pattern" => "HTTP-%t"
+ }},
+ "unbounded-queue-thread-pool" => {"http" => {
+ "max-threads" => {
+ "count" => big decimal 10,
+ "per-cpu" => big decimal 20
+ },
+ "name" => "http",
+ "thread-factory" => "http"
+ }}
+ }
+}
+</source>
- <attribute name="name" required="true">
- <p>The name used to reference this pool in other places in server.xml.
- The name is required and must be unique.</p>
- </attribute>
- </attributes>
-
</subsection>
- <subsection name="Standard Implementation">
+ <subsection name="the connector using it">
- <p>
- The default implementation supports the following attributes:</p>
+ <p>That is just a standard http <code>connector</code> that uses the
+ thread-pool defined above.
+ </p>
- <attributes>
-
- <attribute name="threadPriority" required="false">
- <p>(int) The thread priority for threads in the executor, the default is <code>Thread.NORM_PRIORITY</code></p>
- </attribute>
- <attribute name="daemon" required="false">
- <p>(boolean) Whether the threads should be daemon threads or not, the default is <code>true</code></p>
- </attribute>
- <attribute name="namePrefix" required="false">
- <p>(String) The name prefix for each thread created by the executor.
- The thread name for an individual thread will be <code>namePrefix+threadNumber</code></p>
- </attribute>
- <attribute name="maxThreads" required="false">
- <p>(int) The max number of active threads in this pool, default is <code>200</code></p>
- </attribute>
- <attribute name="minSpareThreads" required="false">
- <p>(int) The minimum number of threads always kept alive, default is <code>25</code></p>
- </attribute>
- <attribute name="maxIdleTime" required="false">
- <p>(int) The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less
- or equal to minSpareThreads. Default value is <code>60000</code>(1 minute)</p>
- </attribute>
- </attributes>
-
-
+<source>
+[standalone@localhost:9999 /] ./subsystem=web/connector=http:read-resource
+{
+ "outcome" => "success",
+ "result" => {
+ "executor" => "http",
+ "protocol" => "HTTP/1.1",
+ "scheme" => "http",
+ "socket-binding" => "http",
+ "ssl" => undefined,
+ "virtual-server" => undefined
+ }
+}
+</source>
</subsection>
</section>
13 years, 5 months
JBossWeb SVN: r1762 - in trunk/java/org/apache: catalina/core and 1 other directories.
by jbossweb-commits@lists.jboss.org
Author: remy.maucherat(a)jboss.com
Date: 2011-07-04 06:53:24 -0400 (Mon, 04 Jul 2011)
New Revision: 1762
Modified:
trunk/java/org/apache/catalina/connector/CoyoteAdapter.java
trunk/java/org/apache/catalina/core/StandardWrapperValve.java
trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java
Log:
Some cleanups related to JBWEB-205.
Modified: trunk/java/org/apache/catalina/connector/CoyoteAdapter.java
===================================================================
--- trunk/java/org/apache/catalina/connector/CoyoteAdapter.java 2011-07-04 09:42:01 UTC (rev 1761)
+++ trunk/java/org/apache/catalina/connector/CoyoteAdapter.java 2011-07-04 10:53:24 UTC (rev 1762)
@@ -523,7 +523,6 @@
}
connector.getService().getMapper().map(serverName, decodedURI,
request.getMappingData());
- log.error("Merde: " + request.getMappingData().context + " : " + request.getMappingData().host + " : " + request.getMappingData());
request.setContext((Context) request.getMappingData().context);
request.setWrapper((Wrapper) request.getMappingData().wrapper);
Modified: trunk/java/org/apache/catalina/core/StandardWrapperValve.java
===================================================================
--- trunk/java/org/apache/catalina/core/StandardWrapperValve.java 2011-07-04 09:42:01 UTC (rev 1761)
+++ trunk/java/org/apache/catalina/core/StandardWrapperValve.java 2011-07-04 10:53:24 UTC (rev 1762)
@@ -640,7 +640,7 @@
asyncContext.complete();
}
} else {
- throw new IllegalStateException(sm.getString("standardWrapper.async.invalidContext",
+ container.getLogger().warn(sm.getString("standardWrapper.async.invalidContext",
getContainer().getName()));
}
}
Modified: trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java
===================================================================
--- trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java 2011-07-04 09:42:01 UTC (rev 1761)
+++ trunk/java/org/apache/tomcat/util/net/JIoEndpoint.java 2011-07-04 10:53:24 UTC (rev 1762)
@@ -794,6 +794,7 @@
}
} else {
if (info.resume()) {
+ timeouts.remove(info.socket);
if (!processSocket(info.socket, SocketStatus.OPEN_CALLBACK)) {
try { info.socket.close(); } catch (IOException e) { }
}
13 years, 5 months
JBossWeb SVN: r1761 - trunk/webapps/docs/config.
by jbossweb-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2011-07-04 05:42:01 -0400 (Mon, 04 Jul 2011)
New Revision: 1761
Added:
trunk/webapps/docs/config/native.xml
Log:
Add something about native.
Added: trunk/webapps/docs/config/native.xml
===================================================================
--- trunk/webapps/docs/config/native.xml (rev 0)
+++ trunk/webapps/docs/config/native.xml 2011-07-04 09:42:01 UTC (rev 1761)
@@ -0,0 +1,45 @@
+<?xml version="1.0"?>
+<!DOCTYPE document [
+ <!ENTITY project SYSTEM "project.xml">
+]>
+<document url="ajp.html">
+
+ &project;
+
+ <properties>
+ <author email="jfclere(a)gmail.com">Jean-Frederic Clere</author>
+ <title>The native Connectors</title>
+ </properties>
+
+<body>
+
+
+<section name="Introduction">
+
+ <p>native Connectors are automaticly used when the <code>native</code>
+ attribut is configured to <code>true</code> in the <code>configuration</code> of
+ the web subsystem and the native binaries corresponding to the OS installed on the box.</p>
+
+</section>
+
+
+<section name="Attributes">
+
+ <subsection name="Common Attributes">
+
+ <p>See <a href="http.html">http connector</a> for the Common Attributes</p>
+
+ </subsection>
+</section>
+
+
+<section name="Nested Components">
+
+ <p>ssl is the nested component if using the https connector.</p>
+
+</section>
+
+
+</body>
+
+</document>
13 years, 5 months
JBossWeb SVN: r1759 - trunk/webapps/docs/config.
by jbossweb-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2011-07-04 05:12:56 -0400 (Mon, 04 Jul 2011)
New Revision: 1759
Modified:
trunk/webapps/docs/config/project.xml
trunk/webapps/docs/config/ssl.xml
Log:
Arrange ssl element part.
Modified: trunk/webapps/docs/config/project.xml
===================================================================
--- trunk/webapps/docs/config/project.xml 2011-07-04 07:57:20 UTC (rev 1758)
+++ trunk/webapps/docs/config/project.xml 2011-07-04 09:12:56 UTC (rev 1759)
@@ -23,7 +23,7 @@
<menu name="Connectors">
<item name="HTTP" href="http.html"/>
<item name="AJP" href="ajp.html"/>
- <item name="HPTTPS" href="ssl.html"/>
+ <item name="HTTPS" href="ssl.html"/>
<item name="Native" href="native.html"/>
</menu>
Modified: trunk/webapps/docs/config/ssl.xml
===================================================================
--- trunk/webapps/docs/config/ssl.xml 2011-07-04 07:57:20 UTC (rev 1758)
+++ trunk/webapps/docs/config/ssl.xml 2011-07-04 09:12:56 UTC (rev 1759)
@@ -44,8 +44,7 @@
When present you will want to set the
<code>scheme</code> and the <code>secure</code> attributes as well
to pass the correct <code>request.getScheme()</code> and
- <code>request.isSecure()</code> values to the servlets
- See <a href="#SSL Support">SSL Support</a> for more information.
+ <code>request.isSecure()</code> values to the servlets.
</p>
</attribute>
@@ -133,18 +132,16 @@
<p>You can enable SSL support for a particular instance of this
<strong>Connector</strong> by setting the <code>secure</code> attribute to
<code>true</code>. In addition, you may need to configure the following
- attributes:</p>
+ <code>ssl</code>attributes:</p>
<attributes>
- <attribute name="algorithm" required="false">
- <p>The certificate encoding algorithm to be used. This defaults to the Sun
- implementation (<code>SunX509</code>). For IBM JVMs you should use the
- value <code>IbmX509</code>. For other vendors, consult the JVM
- documentation for the correct value.</p>
+ <attribute name="name" required="true">
+ <p>name of the <code>ssl</code> element.</p>
</attribute>
- <attribute name="clientAuth" required="false">
+ <attribute name="verify-client" required="false">
+ <p>that is OpenSSL SSLVerifyClient (optional,require,optionalNoCA,none) and clientAuth (true=require/false=none)i</p>
<p>Set to <code>true</code> if you want the SSL stack to require a
valid certificate chain from the client before accepting a connection.
Set to <code>want</code> if you want the SSL stack to request a client
@@ -155,78 +152,70 @@
<a href="../ssl-howto.html">SSL HowTo</a> for an example.</p>
</attribute>
- <attribute name="keystoreFile" required="false">
+ <attribute name="verify-depth" required="false">
+ Maximum number of intermediate certificate issuers checked before deciding that the clients
+ don't have a valid certificate.
+ The default value is "<code>10</code>".
+ </attribute>
+
+ <attribute name="certificate-key-file" required="false">
<p>The pathname of the keystore file where you have stored the
- server certificate to be loaded. By default, the pathname is
- the file "<code>.keystore</code>" in the operating system home
+ server certificate to be loaded.
+ When using JSSE that could be the only file, with OpenSSL there several files.
+ By default, the pathname is
+ the file "<code>${user.home}/.keystore</code>" in the operating system home
directory of the user that is running JBoss Web. If your
<code>keystoreType</code> doesn't need a file use <code>""</code>
(empty string) for this parameter.</p>
</attribute>
- <attribute name="keystorePass" required="false">
- <p>The password used to access the server certificate from the
- specified keystore file. The default value is "<code>changeit</code>".
+ <attribute name="certificate-file" required="false">
+ <p>Only in the OpenSSL (JSSE keystore contains both key and certificate).
+ That is the name of the file containing the server certificate.
</p>
</attribute>
-
- <attribute name="keystoreProvider" required="false">
- <p>The name of the keystore provider to be used for the server
- certificate. If not specified, the list of registered providers is
- traversed in preference order and the first provider that supports the
- <code>keystoreType</code> is used.
+ <attribute name="password" required="false">
+ <p>Password for both trustore and keystore
+ The default value is "<code>changeit</code>".
</p>
</attribute>
- <attribute name="keystoreType" required="false">
- <p>The type of keystore file to be used for the server certificate.
- If not specified, the default value is "<code>JKS</code>".</p>
- </attribute>
-
- <attribute name="sslProtocol" required="false">
+ <attribute name="protocol" required="false">
<p>The version of the SSL protocol to use. If not specified,
- the default is "<code>TLS</code>".</p>
+ Supported values: SSLv2, SSLv3, TLSv1, SSLv2+SSLv3 and ALL.
+ the default is "<code>ALL</code>".</p>
</attribute>
<attribute name="ciphers" required="false">
- <p>A comma seperated list of the encryption ciphers that may be used.
- If not specified, then any available cipher may be used.</p>
+ <p>A comma seperated list of the encryption ciphers that may be used,
+ that MUST NOT be the JVM default in of JSSE as contains weak ciphers.
+ that is SSLCipherSuite when using OpenSSL (APR).
+ If not specified, then any available "safe" ciphers may be used.</p>
</attribute>
- <attribute name="keyAlias" required="false">
- <p>The alias used to for the server certificate in the keystore. If not
- specified the first key read in the keystore will be used.</p>
+ <attribute name="key-alias" required="false">
+ <p>The alias used to for the server certificate in the keystore.
+ the default is "<code>tomcat</code>".</p>
</attribute>
- <attribute name="truststoreFile" required="false">
- <p>The TrustStore file to use to validate client certificates.</p>
+ <attribute name="ca-certificate-file" required="false">
+ <p>The file containing the CA certificates, truststoreFile in JSSE, note the password it same as the keystore password.
+ The <code>ca-certificate-file</code> file to use to validate client certificates.</p>
</attribute>
- <attribute name="truststorePass" required="false">
- <p>The password to access the TrustStore. This defaults to the value
- of <code>keystorePass</code>.</p>
+ <attribute name="ca-certificate-file" required="false">
+ <p>A file or URL to get the revocation list. (actually: crlFile is JSSE and SSLCARevocationFile in OpenSSL)</p>
</attribute>
- <attribute name="truststoreProvider" required="false">
- <p>The name of the truststore provider to be used for the server
- certificate. If not specified, the list of registered providers is
- traversed in preference order and the first provider that supports the
- <code>truststoreType</code> is used.
- </p>
+ <attribute name="session-cache-size" required="false">
+ <p>Size of the SSLSession cache.
+ the default is <code>0</code>: Dissabled.</p>
</attribute>
- <attribute name="truststoreType" required="false">
- <p>Add this element if your are using a different format for the
- TrustStore then you are using for the KeyStore.</p>
- </attribute>
-
- <attribute name="allowUnsafeLegacyRenegotiation" required="false">
- <p>Is unsafe legacy TLS renegotiation allowed which is likely to expose
- users to CVE-2009-3555, a man-in-the-middle vulnerability in the TLS
- protocol that allows an attacker to inject arbitrary data into the user's
- request. If not specified, a default of <code>false</code> is used.</p>
- </attribute>
-
+ <attribute name="session-timeout" required="false">
+ <p>Timeout of a cached SSLSession.
+ the default is <code>86400</code>: 24 hours.</p>
+ </attribute>
</attributes>
<p>For more information, see the
13 years, 5 months
JBossWeb SVN: r1758 - trunk/webapps/docs/config.
by jbossweb-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2011-07-04 03:57:20 -0400 (Mon, 04 Jul 2011)
New Revision: 1758
Modified:
trunk/webapps/docs/config/http.xml
Log:
Arrange links.
Modified: trunk/webapps/docs/config/http.xml
===================================================================
--- trunk/webapps/docs/config/http.xml 2011-07-01 15:01:21 UTC (rev 1757)
+++ trunk/webapps/docs/config/http.xml 2011-07-04 07:57:20 UTC (rev 1758)
@@ -99,7 +99,6 @@
<code>org.apache.coyote.http11.Http11Protocol</code> - same as HTTP/1.1<br/>
<code>org.apache.coyote.http11.Http11NioProtocol</code> - non blocking Java connector, not supported in JBossWeb<br/>
<code>org.apache.coyote.http11.Http11AprProtocol</code> - the APR connector.<br/>
- Take a look at our <a href="#Connector Comparison">Connector Comparison</a> chart.
The configuration for both Java connectors are identical, both for http and https. <br/>
For more information on the APR connector and APR specific SSL settings please
visit the <a href="../apr.html">APR documentation</a>
@@ -110,17 +109,13 @@
<attribute name="proxy-name" required="false">
<p>If this <strong>Connector</strong> is being used in a proxy
configuration, configure this attribute to specify the server name
- to be returned for calls to <code>request.getServerName()</code>.
- See <a href="#Proxy Support">Proxy Support</a> for more
- information.</p>
+ to be returned for calls to <code>request.getServerName()</code>.</p>
</attribute>
<attribute name="proxy-port" required="false">
<p>If this <strong>Connector</strong> is being used in a proxy
configuration, configure this attribute to specify the server port
- to be returned for calls to <code>request.getServerPort()</code>.
- See <a href="#Proxy Support">Proxy Support</a> for more
- information.</p>
+ to be returned for calls to <code>request.getServerPort()</code>.</p>
</attribute>
<attribute name="redirect-port" required="false">
@@ -139,7 +134,7 @@
<code>scheme</code> and the <code>secure</code> attributes as well
to pass the correct <code>request.getScheme()</code> and
<code>request.isSecure()</code> values to the servlets
- See <a href="#SSL Support">SSL Support</a> for more information.
+ See <a href="ssl.html">SSL Support</a> for more information.
</p>
</attribute>
@@ -187,7 +182,7 @@
<section name="Nested Components">
- <p>None at this time.</p>
+ <p><code>ssl</code>: SSL configuration See <a href="ssl.html">HTTPS</a></p>
</section>
13 years, 5 months
JBossWeb SVN: r1757 - tags.
by jbossweb-commits@lists.jboss.org
Author: remy.maucherat(a)jboss.com
Date: 2011-07-01 11:01:21 -0400 (Fri, 01 Jul 2011)
New Revision: 1757
Added:
tags/JBOSSWEB_7_0_0_FINAL/
Log:
7.0 release.
13 years, 5 months
JBossWeb SVN: r1756 - trunk/webapps/docs.
by jbossweb-commits@lists.jboss.org
Author: remy.maucherat(a)jboss.com
Date: 2011-07-01 09:56:22 -0400 (Fri, 01 Jul 2011)
New Revision: 1756
Modified:
trunk/webapps/docs/changelog.xml
Log:
- New version number ;)
Modified: trunk/webapps/docs/changelog.xml
===================================================================
--- trunk/webapps/docs/changelog.xml 2011-06-30 16:56:08 UTC (rev 1755)
+++ trunk/webapps/docs/changelog.xml 2011-07-01 13:56:22 UTC (rev 1756)
@@ -16,7 +16,7 @@
<body>
-<section name="JBoss Web 7.0.0.CR5 (remm)">
+<section name="JBoss Web 7.0.0.Final (remm)">
<subsection name="Coyote">
<changelog>
<fix>
13 years, 5 months