You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by li...@apache.org on 2008/09/24 18:52:08 UTC

svn commit: r698647 - in /geronimo/server/trunk/plugins/system-database: sysdb-console-jetty/src/main/plan/plan.xml sysdb-console-tomcat/src/main/plan/plan.xml sysdb-portlets/src/main/webapp/WEB-INF/view/dbwizard/selectDownload.jsp

Author: linsun
Date: Wed Sep 24 09:52:07 2008
New Revision: 698647

URL: http://svn.apache.org/viewvc?rev=698647&view=rev
Log:
GERONIMO-4317 - SQL jdbc driver class name is wrong in db pool creation wizard

Modified:
    geronimo/server/trunk/plugins/system-database/sysdb-console-jetty/src/main/plan/plan.xml
    geronimo/server/trunk/plugins/system-database/sysdb-console-tomcat/src/main/plan/plan.xml
    geronimo/server/trunk/plugins/system-database/sysdb-portlets/src/main/webapp/WEB-INF/view/dbwizard/selectDownload.jsp

Modified: geronimo/server/trunk/plugins/system-database/sysdb-console-jetty/src/main/plan/plan.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/system-database/sysdb-console-jetty/src/main/plan/plan.xml?rev=698647&r1=698646&r2=698647&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/system-database/sysdb-console-jetty/src/main/plan/plan.xml (original)
+++ geronimo/server/trunk/plugins/system-database/sysdb-console-jetty/src/main/plan/plan.xml Wed Sep 24 09:52:07 2008
@@ -349,8 +349,8 @@
     </gbean>
     <gbean name="Database28" class="org.apache.geronimo.console.databasemanager.wizard.DatabaseDriverGBean">
         <attribute name="name">SQL Server</attribute>
-        <attribute name="URLPrototype">jdbc:microsoft:sqlserver://{Host}:{Port};DatabaseName={Database}</attribute>
-        <attribute name="driverClassName">com.microsoft.jdbc.sqlserver.SQLServerDriver</attribute>
+        <attribute name="URLPrototype">jdbc:sqlserver://{Host}:{Port};DatabaseName={Database}</attribute>
+        <attribute name="driverClassName">com.microsoft.sqlserver.jdbc.SQLServerDriver</attribute>
         <attribute name="defaultPort">1433</attribute>
         <attribute name="specific">false</attribute>
         <attribute name="RARName">org.tranql/tranql-connector-ra//rar</attribute>

Modified: geronimo/server/trunk/plugins/system-database/sysdb-console-tomcat/src/main/plan/plan.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/system-database/sysdb-console-tomcat/src/main/plan/plan.xml?rev=698647&r1=698646&r2=698647&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/system-database/sysdb-console-tomcat/src/main/plan/plan.xml (original)
+++ geronimo/server/trunk/plugins/system-database/sysdb-console-tomcat/src/main/plan/plan.xml Wed Sep 24 09:52:07 2008
@@ -350,8 +350,8 @@
     </gbean>
     <gbean name="Database28" class="org.apache.geronimo.console.databasemanager.wizard.DatabaseDriverGBean">
         <attribute name="name">SQL Server</attribute>
-        <attribute name="URLPrototype">jdbc:microsoft:sqlserver://{Host}:{Port};DatabaseName={Database}</attribute>
-        <attribute name="driverClassName">com.microsoft.jdbc.sqlserver.SQLServerDriver</attribute>
+        <attribute name="URLPrototype">jdbc:sqlserver://{Host}:{Port};DatabaseName={Database}</attribute>
+        <attribute name="driverClassName">com.microsoft.sqlserver.jdbc.SQLServerDriver</attribute>
         <attribute name="defaultPort">1433</attribute>
         <attribute name="specific">false</attribute>
         <attribute name="RARName">org.tranql/tranql-connector-ra//rar</attribute>

Modified: geronimo/server/trunk/plugins/system-database/sysdb-portlets/src/main/webapp/WEB-INF/view/dbwizard/selectDownload.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/system-database/sysdb-portlets/src/main/webapp/WEB-INF/view/dbwizard/selectDownload.jsp?rev=698647&r1=698646&r2=698647&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/system-database/sysdb-portlets/src/main/webapp/WEB-INF/view/dbwizard/selectDownload.jsp (original)
+++ geronimo/server/trunk/plugins/system-database/sysdb-portlets/src/main/webapp/WEB-INF/view/dbwizard/selectDownload.jsp Wed Sep 24 09:52:07 2008
@@ -106,5 +106,5 @@
   <li><a href="http://www.pervasive.com/developerzone/access_methods/jdbc.asp">Pervasive</a></li>
   <li><a href="http://www.pointbase.com/products/downloads/">Pointbase</a></li>
   <li><a href="http://www.progress.com/esd/index.ssp">Progress</a></li>
-  <li><a href="http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/jdbc.mspx">Microsoft SQL Server</a></li>
+  <li><a href="http://msdn.microsoft.com/en-us/data/aa937724.aspx">Microsoft SQL Server</a></li>
 </ul>