Author: kkolinko
Date: Mon May 14 11:37:21 2012
New Revision: 1338160

URL: http://svn.apache.org/viewvc?rev=1338160&view=rev
Log:
Merged revisions r1338151 r1338154 from tomcat/trunk:
Correct links to Java documentation
Those are at docs.oracle.com now.

Modified:
    tomcat/tc7.0.x/trunk/   (props changed)
    tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java
    tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/SocketProperties.java
    tomcat/tc7.0.x/trunk/webapps/docs/class-loader-howto.xml
    tomcat/tc7.0.x/trunk/webapps/docs/config/ajp.xml
    tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml
    tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-sender.xml
    tomcat/tc7.0.x/trunk/webapps/docs/config/context.xml
    tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml
    tomcat/tc7.0.x/trunk/webapps/docs/config/realm.xml
    tomcat/tc7.0.x/trunk/webapps/docs/index.xml
    tomcat/tc7.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml
    tomcat/tc7.0.x/trunk/webapps/docs/logging.xml
    tomcat/tc7.0.x/trunk/webapps/docs/monitoring.xml
    tomcat/tc7.0.x/trunk/webapps/docs/realm-howto.xml
    tomcat/tc7.0.x/trunk/webapps/docs/security-manager-howto.xml
    tomcat/tc7.0.x/trunk/webapps/docs/windows-auth-howto.xml

Propchange: tomcat/tc7.0.x/trunk/
------------------------------------------------------------------------------
  Merged /tomcat/trunk:r1338151-1338154

Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java 
(original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/util/ExtensionValidator.java 
Mon May 14 11:37:21 2012
@@ -45,7 +45,7 @@ import org.apache.tomcat.util.res.String
  * are met. This class builds a master list of extensions available to an
  * application and then validates those extensions.
  *
- * See http://download.oracle.com/javase/1.4.2/docs/guide/extensions/spec.html
+ * See http://docs.oracle.com/javase/1.4.2/docs/guide/extensions/spec.html
  * for a detailed explanation of the extension mechanism in Java.
  *
  * @author Greg Murray

Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/SocketProperties.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/SocketProperties.java?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/SocketProperties.java 
(original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/SocketProperties.java 
Mon May 14 11:37:21 2012
@@ -150,7 +150,7 @@ public class SocketProperties {
 
     /**
      * Performance preferences according to
-     * 
http://download.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)
+     * 
http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)
      * All three performance attributes must be set or the JVM defaults will be
      * used.
      */
@@ -158,7 +158,7 @@ public class SocketProperties {
 
     /**
      * Performance preferences according to
-     * 
http://download.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)
+     * 
http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)
      * All three performance attributes must be set or the JVM defaults will be
      * used.
      */
@@ -166,7 +166,7 @@ public class SocketProperties {
 
     /**
      * Performance preferences according to
-     * 
http://download.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)
+     * 
http://docs.oracle.com/javase/1.5.0/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)
      * All three performance attributes must be set or the JVM defaults will be
      * used.
      */

Modified: tomcat/tc7.0.x/trunk/webapps/docs/class-loader-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/class-loader-howto.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/class-loader-howto.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/class-loader-howto.xml Mon May 14 
11:37:21 2012
@@ -212,8 +212,8 @@ preference to this one.</p>
 Mechanism" to allow replacement of APIs created outside of the JCP
 (i.e. DOM and SAX from W3C).  It can also be used to update the XML parser
 implementation.  For more information, see:
-<a 
href="http://download.oracle.com/javase/1.5.0/docs/guide/standards/index.html";>
-http://download.oracle.com/javase/1.5.0/docs/guide/standards/index.html</a>.</p>
+<a href="http://docs.oracle.com/javase/1.5.0/docs/guide/standards/index.html";>
+http://docs.oracle.com/javase/1.5.0/docs/guide/standards/index.html</a>.</p>
 
 <p>Tomcat utilizes this mechanism by including the system property setting
 <code>-Djava.endorsed.dirs=$JAVA_ENDORSED_DIRS</code> in the

Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/ajp.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/ajp.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/config/ajp.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/config/ajp.xml Mon May 14 11:37:21 2012
@@ -482,19 +482,19 @@
       </attribute>
       <attribute name="socket.performanceConnectionTime" required="false">
         <p>(int)The first value for the performance settings. See
-        <a 
href="http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
+        <a 
href="http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
         All three performance attributes must be set else the JVM defaults will
         be used for all three.</p>
       </attribute>
       <attribute name="socket.performanceLatency" required="false">
         <p>(int)The second value for the performance settings. See
-        <a 
href="http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
+        <a 
href="http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
         All three performance attributes must be set else the JVM defaults will
         be used for all three.</p>
       </attribute>
       <attribute name="socket.performanceBandwidth" required="false">
         <p>(int)The third value for the performance settings. See
-        <a 
href="http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
+        <a 
href="http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
         All three performance attributes must be set else the JVM defaults will
         be used for all three.</p>
       </attribute>

Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-receiver.xml Mon May 14 
11:37:21 2012
@@ -144,7 +144,7 @@
     </attribute>
     <attribute name="soTrafficClass" required="false">
      Sets the traffic class level for the socket, the value is between 0 and 
255.
-     Different values are defined in <a 
href="http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#setTrafficClass(int)">
+     Different values are defined in <a 
href="http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setTrafficClass(int)">
      java.net.Socket#setTrafficClass(int)</a>.
     </attribute>
     <attribute name="tcpNoDelay" required="false">

Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-sender.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-sender.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-sender.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/config/cluster-sender.xml Mon May 14 
11:37:21 2012
@@ -147,7 +147,7 @@
       <attribute name="soTrafficClass" required="false">
        Sets the traffic class level for the socket, the value is between 0 and 
255.
        Default value is <code>int soTrafficClass = 0x04 | 0x08 | 0x010;</code>
-       Different values are defined in <a 
href="http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#setTrafficClass(int)">
+       Different values are defined in <a 
href="http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setTrafficClass(int)">
        java.net.Socket#setTrafficClass(int)</a>.
       </attribute>
       <attribute name="tcpNoDelay" required="false">

Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/context.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/context.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/config/context.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/config/context.xml Mon May 14 11:37:21 
2012
@@ -1176,8 +1176,8 @@
        two additional attributes to allow a shared data source to be used with 
different credentials.
        When these two additional attributes are used in combination with the 
<code>javax.sql.DataSource</code>
        type, different contexts can share a global data source with different 
credentials.
-       Under the hood, what happens is that a call to <a 
href="http://download.oracle.com/javase/6/docs/api/javax/sql/DataSource.html#getConnection()"><code>getConnection()</code></a>
-       is simply translated to a call <a 
href="http://download.oracle.com/javase/6/docs/api/javax/sql/DataSource.html#getConnection(java.lang.String,%20java.lang.String)">
+       Under the hood, what happens is that a call to <a 
href="http://docs.oracle.com/javase/6/docs/api/javax/sql/DataSource.html#getConnection()"><code>getConnection()</code></a>
+       is simply translated to a call <a 
href="http://docs.oracle.com/javase/6/docs/api/javax/sql/DataSource.html#getConnection(java.lang.String,%20java.lang.String)">
        <code>getConnection(username, password)</code></a> on the global data 
source. This is an easy way to get code to be transparent to what schemas are 
being used,
        yet be able to control connections (or pools) in the global 
configuration.
     </p>

Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/config/http.xml Mon May 14 11:37:21 2012
@@ -561,19 +561,19 @@
       </attribute>
       <attribute name="socket.performanceConnectionTime" required="false">
         <p>(int)The first value for the performance settings. See
-        <a 
href="http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
+        <a 
href="http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
         All three performance attributes must be set else the JVM defaults will
         be used for all three.</p>
       </attribute>
       <attribute name="socket.performanceLatency" required="false">
         <p>(int)The second value for the performance settings. See
-        <a 
href="http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
+        <a 
href="http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
         All three performance attributes must be set else the JVM defaults will
         be used for all three.</p>
       </attribute>
       <attribute name="socket.performanceBandwidth" required="false">
         <p>(int)The third value for the performance settings. See
-        <a 
href="http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
+        <a 
href="http://docs.oracle.com/javase/6/docs/api/java/net/Socket.html#setPerformancePreferences(int,%20int,%20int)">Socket
 Performance Options</a>
         All three performance attributes must be set else the JVM defaults will
         be used for all three.</p>
       </attribute>

Modified: tomcat/tc7.0.x/trunk/webapps/docs/config/realm.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/config/realm.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/config/realm.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/config/realm.xml Mon May 14 11:37:21 2012
@@ -777,7 +777,7 @@
       <attribute name="appName" required="true">
        <p>The name of the application as configured in your login configuration
        file
-       (<a 
href="http://download.oracle.com/javase/1.4.2/docs/guide/security/jaas/tutorials/LoginConfigFile.html";>JAAS
 LoginConfig</a>).</p>
+       (<a 
href="http://docs.oracle.com/javase/1.4.2/docs/guide/security/jaas/tutorials/LoginConfigFile.html";>JAAS
 LoginConfig</a>).</p>
       </attribute>
 
       <attribute name="userClassNames" required="true">

Modified: tomcat/tc7.0.x/trunk/webapps/docs/index.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/index.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/index.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/index.xml Mon May 14 11:37:21 2012
@@ -163,14 +163,14 @@ are responsible for installing, configur
 <li>Servlet 3.0
     <a 
href="http://jcp.org/aboutJava/communityprocess/final/jsr315/index.html";>
     <strong>Specification</strong></a> and
-    <a 
href="http://download.oracle.com/javaee/6/api/index.html?javax/servlet/package-summary.html";>
+    <a 
href="http://docs.oracle.com/javaee/6/api/index.html?javax/servlet/package-summary.html";>
     <strong>Javadoc</strong></a>
     </li>
 <li><a href="http://jcp.org/aboutJava/communityprocess/mrel/jsr245/index.html";>
     <strong>JSP 2.2 and EL 2.2 Specifications</strong></a>,
-    <a 
href="http://download.oracle.com/javaee/6/api/index.html?javax/servlet/jsp/package-summary.html";>
+    <a 
href="http://docs.oracle.com/javaee/6/api/index.html?javax/servlet/jsp/package-summary.html";>
     <strong>JSP 2.2 Javadoc (note it is labelled as JSP 2.1)</strong></a>,
-    <a 
href="http://download.oracle.com/javaee/6/api/index.html?javax/el/package-summary.html";>
+    <a 
href="http://docs.oracle.com/javaee/6/api/index.html?javax/el/package-summary.html";>
     <strong>EL 2.2 Javadoc</strong></a>
     </li>
 </ul>

Modified: tomcat/tc7.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml 
(original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml Mon 
May 14 11:37:21 2012
@@ -69,7 +69,7 @@ the section about Automatic Application 
 <section name="DriverManager, the service provider mechanism and memory leaks">
 
 <p><code>java.sql.DriverManager</code> supports the
-<a 
href="http://download.oracle.com/javase/6/docs/api/index.html?java/sql/DriverManager.html";>service
+<a 
href="http://docs.oracle.com/javase/6/docs/api/index.html?java/sql/DriverManager.html";>service
 provider</a> mechanism. This feature is that all the available JDBC drivers
 that announce themselves by providing a 
<code>META-INF/services/java.sql.Driver</code>
 file are automatically discovered, loaded and registered,

Modified: tomcat/tc7.0.x/trunk/webapps/docs/logging.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/logging.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/logging.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/logging.xml Mon May 14 11:37:21 2012
@@ -372,7 +372,7 @@ java.util.logging.ConsoleHandler.formatt
           package.
         </li>
         <li>Oracle Java 6 Javadoc for the
-          <a 
href="http://download.oracle.com/javase/6/docs/api/java/util/logging/package-summary.html";><code>java.util.logging</code></a>
+          <a 
href="http://docs.oracle.com/javase/6/docs/api/java/util/logging/package-summary.html";><code>java.util.logging</code></a>
           package.
         </li>
       </ul>

Modified: tomcat/tc7.0.x/trunk/webapps/docs/monitoring.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/monitoring.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/monitoring.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/monitoring.xml Mon May 14 11:37:21 2012
@@ -45,8 +45,8 @@
   <section name="Enabling JMX Remote">
 
     <p>The Sun website includes the list of options and how to configure JMX 
Remote on Java 5:
-        <a 
href="http://download.oracle.com/javase/6/docs/technotes/guides/management/agent.html";>
-        
http://download.oracle.com/javase/6/docs/technotes/guides/management/agent.html</a>.
+        <a 
href="http://docs.oracle.com/javase/6/docs/technotes/guides/management/agent.html";>
+        
http://docs.oracle.com/javase/6/docs/technotes/guides/management/agent.html</a>.
     </p>
     <p>The following is a quick configuration guide for Java 6:</p>
     <p>Add the following parameters to your Tomcat startup script:

Modified: tomcat/tc7.0.x/trunk/webapps/docs/realm-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/realm-howto.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/realm-howto.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/realm-howto.xml Mon May 14 11:37:21 2012
@@ -1036,9 +1036,9 @@ integration with the CMA as implemented 
         <ol>
           <li>Write your own LoginModule, User and Role classes based
 on JAAS (see
-<a 
href="http://download.oracle.com/javase/1.4.2/docs/guide/security/jaas/tutorials/GeneralAcnOnly.html";>the
+<a 
href="http://docs.oracle.com/javase/1.4.2/docs/guide/security/jaas/tutorials/GeneralAcnOnly.html";>the
 JAAS Authentication Tutorial</a> and
-<a 
href="http://download.oracle.com/javase/1.4.2/docs/guide/security/jaas/JAASLMDevGuide.html";>the
 JAAS Login Module
+<a 
href="http://docs.oracle.com/javase/1.4.2/docs/guide/security/jaas/JAASLMDevGuide.html";>the
 JAAS Login Module
 Developer's Guide</a>) to be managed by the JAAS Login
 Context (<code>javax.security.auth.login.LoginContext</code>)
 When developing your LoginModule, note that JAASRealm's built-in 
<code>CallbackHandler</code>
@@ -1053,7 +1053,7 @@ Regardless, the first Principal returned
           <li>Place the compiled classes on Tomcat's classpath
           </li>
           <li>Set up a login.config file for Java (see <a
- 
href="http://download.oracle.com/javase/1.4.2/docs/guide/security/jaas/tutorials/LoginConfigFile.html";>JAAS
+ 
href="http://docs.oracle.com/javase/1.4.2/docs/guide/security/jaas/tutorials/LoginConfigFile.html";>JAAS
 LoginConfig file</a>) and tell Tomcat where to find it by specifying
 its location to the JVM, for instance by setting the environment
 variable: <code>JAVA_OPTS=$JAVA_OPTS 
-Djava.security.auth.login.config==$CATALINA_BASE/conf/jaas.config</code></li>

Modified: tomcat/tc7.0.x/trunk/webapps/docs/security-manager-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/security-manager-howto.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/security-manager-howto.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/security-manager-howto.xml Mon May 14 
11:37:21 2012
@@ -154,7 +154,7 @@ permission java.io.FilePermission
   This file completely replaces the <code>java.policy</code> file present
   in your JDK system directories.  The <code>catalina.policy</code> file
   can be edited by hand, or you can use the
-  <a 
href="http://download.oracle.com/javase/6/docs/technotes/guides/security/PolicyGuide.html";>policytool</a>
+  <a 
href="http://docs.oracle.com/javase/6/docs/technotes/guides/security/PolicyGuide.html";>policytool</a>
   application that comes with Java 1.2 or later.</p>
 
   <p>Entries in the <code>catalina.policy</code> file use the standard

Modified: tomcat/tc7.0.x/trunk/webapps/docs/windows-auth-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/windows-auth-howto.xml?rev=1338160&r1=1338159&r2=1338160&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/windows-auth-howto.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/windows-auth-howto.xml Mon May 14 
11:37:21 2012
@@ -202,7 +202,7 @@ com.sun.security.jgss.krb5.accept {
       IIS and Kerberos</a></li>
   <li><a href="http://spnego.sourceforge.net/index.html";>
       SPNEGO project at SourceForge</a></li>
-  <li><a 
href="http://download.oracle.com/javase/1.5.0/docs/guide/security/jgss/tutorials/index.html";>
+  <li><a 
href="http://docs.oracle.com/javase/1.5.0/docs/guide/security/jgss/tutorials/index.html";>
       Oracle JGSS tutorial</a></li>
   <li><a 
href="https://cwiki.apache.org/GMOxDOC21/using-spengo-in-geronimo.html#UsingSpengoingeronimo-SettinguptheActiveDirectoryDomainController";>
       Geronimo configuration for Windows authentication</a></li>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to