Author: azeez
Date: Wed Jan 16 23:01:04 2008
New Revision: 12382

Log:

Specifiying the correct JDBC drivers
Fixig an error is WSAS clustering doc



Modified:
   trunk/wsas/java/modules/core/conf/server.xml
   trunk/wsas/java/modules/documentation/src/site/xdoc/wsas-clustering.xml

Modified: trunk/wsas/java/modules/core/conf/server.xml
==============================================================================
--- trunk/wsas/java/modules/core/conf/server.xml        (original)
+++ trunk/wsas/java/modules/core/conf/server.xml        Wed Jan 16 23:01:04 2008
@@ -397,7 +397,7 @@
         <Server>
             <Id>Microsoft SQL Server</Id>
             
<JdbcURL>jdbc:microsoft:sqlserver://[HOST]:[PORT][;DatabaseName=[DB]]</JdbcURL>
-            
<DriverClass>com.microsoft.jdbc.sqlserver.SQLServerDriver</DriverClass>
+            
<DriverClass>com.microsoft.sqlserver.jdbc.SQLServerDriver</DriverClass>
         </Server>
         <Server>
             <Id>Oracle</Id>
@@ -407,7 +407,7 @@
         <Server>
             <Id>IBM DB2</Id>
             <JdbcURL>jdbc:db2:[database]</JdbcURL>
-            <DriverClass>COM.ibm.db2.jdbc.app.DB2Driver</DriverClass>
+            <DriverClass>com.ibm.db2.jcc.DB2Driver</DriverClass>
         </Server>
         <Server>
             <Id>HSQLDB</Id>

Modified: 
trunk/wsas/java/modules/documentation/src/site/xdoc/wsas-clustering.xml
==============================================================================
--- trunk/wsas/java/modules/documentation/src/site/xdoc/wsas-clustering.xml     
(original)
+++ trunk/wsas/java/modules/documentation/src/site/xdoc/wsas-clustering.xml     
Wed Jan 16 23:01:04 2008
@@ -728,7 +728,8 @@
         try {
             ConfigurationContext configContext = ConfigurationContextFactory.
                     createConfigurationContextFromFileSystem(repository, 
axis2xml_path);            
-            ServiceClient client = new ServiceClient(configContext, null);     
       
+            ServiceClient client = new ServiceClient(configContext, null);
+            client.engageModule("addressing");
 
             Options options = new Options();
             options.setTimeOutInMilliSeconds(10000000);

_______________________________________________
Wsas-java-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/wsas-java-dev

Reply via email to