Jdbc/Cloudscape

Hi,
I have just downloaded the j2sdkee1.2.1. I have been able to configure it and try out couple of example. But when i tried the example "accounts" using an entity bean it say that it "cannot find the principle implementation jdbc/Cloudscape". Actually i have not been able to run the provided script in cloudscape. Can anyone help me with this. How do u run script "createTable.sql" after u have started the cloudscape server. Do u have to place the script in some directory or is there something else.
Thanks in advance
Kunal

The error that i am getting on Running testClient.bat is:
Caught an exception.
java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.RemoteException: Unknown Exception/Error thrown by EJB method.; nested ex
ception is:
javax.ejb.EJBException: ejbCreate: Table 'ACCOUNT' does not exist.
java.rmi.RemoteException: Unknown Exception/Error thrown by EJB method.; nested exception
is:
javax.ejb.EJBException: ejbCreate: Table 'ACCOUNT' does not exist.
javax.ejb.EJBException: ejbCreate: Table 'ACCOUNT' does not exist.
<<no stack trace available>>
I think it is because i have not been able to run the script "createTable.sql". Can anyone help me as to how and where should i run this script.
Thanks

Similar Messages

  • Problems on JDBC and Cloudscape

    Hi,
    I'm suffering from a problem I got while using Cloudscape.
    I wrote a program to create a database in cloudscape. It is a very simple program. The main
    part is as follows,
    Class.forName("COM.cloudscape.core.JDBCDriver");
    Connection conn = DriverManager.getConnection("jdbc:cloudscape:LibDB;create=true");
    The java file is saved in the directory c:\myfile\Create_DB.java and be compiled to
    Create_DB.class.
    At the very Beginning, I didn't add cloudscape.jar to the Classpath, so I got the common
    error:
    java.lang.NoClassDefFoundError: COM.cloudscape.core.JDBCDriver
    Later, I added those jars related to cloudscape to the CLASSPATH, a strange thing happened.
    Now, the error became:
    java.lang.NoClassDefFoundError: Create_DB
    Then, I thought maybe I need to add the working directory to the Classpath. So, I add
    c:\library to CLASSPATH. But the first error (java.lang.NoClassDefFoundError:
    COM.cloudscape.core.JDBCDriver) appeared again though the cloudscape.jar was still in the
    CLASSPATH.
    I tried and tried, but the strange problem is still there. I really got crazy. Please Help !
    I set the CLASSPATH as following:
    %J2EE_HOME%\lib\j2ee.jar;%J2EE_HOME%\lib\cloudscape\system\cloudscape.jar;%J2EE_HOME%\lib\cl
    oudscape\cloudclient.jar;%J2EE_HOME%\lib\cloudscape\RmiJdbc.jar;%J2EE_HOME%\lib\cloudscape\c
    loudview.jar
    PATH is
    ;%JAVA_HOME%\bin;%J2EE_HOME%\bin
    Thank you for your time.

    No, I don't have any packages included in my code.
    You have probably already looked through most of this, but if not here are some sources that have helped me.
    This is the general Cloudscape website from IBM. They have some help like FAQ and the like.:
    http://www-3.ibm.com/software/data/cloudscape/
    There are a couple of changes to your environment that are recommended by Cloudscape. They are detailed in the documentation at the following URL in Section 2.1:
    http://publibfi.boulder.ibm.com/epubs/html/cloud50/pdf/start.pdf
    In addtion, there are several ways that Cloudscape recommends that you code to load the Cloudscape driver. Surprisingly, it appears to be different for different operating systems. They are discussed in the documentation at the following URL in Section 6.
    Cloudscape worked on my system without any big problems (Win2k) following the installation and changes/validation to the CLASSPATH, so I'm not very good at debugging problems related to it. However I did verify that Cloudscape was installed properly by using the utilities that come with Cloudscape. I figured that if I could install/run the utilities that the development environment was setup correctly, and removed any issues with my own buggy code. The utilities I verified with where "ij", "cview" and probably most importantly, "sysinfo". It's convenient because you can alter the environment (CLASSPATH, etc) dynamically.
    Joel

  • Problem when using cloudscape on JBoss

    Hi All,
    I try to run Petstore 1.3.2 on JBoss 3.2.3. I used a patch for Petstore 1.3.2 to run on JBoss 3.0.1 RC1. I tested, this patch works on 3.0.1 well. Using database cloudscape, provided by j2eesdk 1.3.1.
    But it doesnt work in 3.2.3.
    link to the patch and doc:
    http://docs.huihoo.com/jboss/petstore.html
    I changed two things of JBoss 3.2.3:
    First, I changed "C:\jboss-3.2.3\server\default\conf\login-config.xml"
    add following lines into it:
    Code:
    <application-policy name = "CloudscapeDbRealm">
           <authentication>
              <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag = "required">
                 <module-option name = "principal"></module-option>
                 <module-option name = "userName">estoreuser</module-option>
                 <module-option name = "password">estore</module-option>
                 <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=EstoreDataSource</module-option>
              </login-module>
           </authentication>
        </application-policy>
        <application-policy name = "CloudscapeDbRealmInventory">
           <authentication>
              <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag = "required">
                 <module-option name = "principal"></module-option>
                 <module-option name = "userName">estoreuser</module-option>
                 <module-option name = "password">estore</module-option>
                 <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=InventoryDataSource</module-option>
              </login-module>
           </authentication>
        </application-policy>     --------------------------------------------------------------------
    Second, I copy a file called "cloudscape-service.xml" into "C:\jboss-3.2.3\server\default\deploy"
    The content of this file:
    <server>
      <mbean code="org.jboss.resource.connectionmanager.LocalTxConnectionManager" name="jboss.jca:service=LocalTxCM,name=EstoreDataSource">
        <attribute name="SecurityDomainJndiName">CloudscapeDbRealm</attribute>
        <depends optional-attribute-name="ManagedConnectionFactoryName">
          <!--embedded mbean-->
          <mbean code="org.jboss.resource.connectionmanager.RARDeployment" name="jboss.jca:service=LocalTxDS,name=EstoreDataSource"> <!--DS-->
            <attribute name="JndiName">EstoreDB</attribute>
            <attribute name="ManagedConnectionFactoryProperties">
              <properties>
                <config-property name="ConnectionURL" type="java.lang.String">jdbc:rmi://localhost:1099/jdbc:cloudscape:EstoreDB;create=true</config-property>
                <config-property name="DriverClass" type="java.lang.String">COM.cloudscape.core.RmiJdbcDriver</config-property>
                <!--set these only if you want only default logins, not through JAAS -->
                <config-property name="UserName" type="java.lang.String">estoreuser</config-property>
                <config-property name="Password" type="java.lang.String">estore</config-property>
              </properties>
            </attribute>
            <!--hack-->
            <depends optional-attribute-name="OldRarDeployment">jboss.jca:service=RARDeployment,name=JBoss LocalTransaction JDBC Wrapper</depends>
          </mbean>
        </depends>
        <depends optional-attribute-name="ManagedConnectionPool">
          <!--embedded mbean-->
          <mbean code="org.jboss.resource.connectionmanager.JBossManagedConnectionPool" name="jboss.jca:service=LocalTxPool,name=EstoreDataSource">
            <attribute name="MinSize">0</attribute>
            <attribute name="MaxSize">50</attribute>
            <attribute name="BlockingTimeoutMillis">5000</attribute>
            <attribute name="IdleTimeoutMinutes">15</attribute>
            <attribute name="Criteria">ByContainer</attribute>
          </mbean>
        </depends>
        <depends optional-attribute-name="CachedConnectionManager">jboss.jca:service=CachedConnectionManager</depends>
        <depends optional-attribute-name="JaasSecurityManagerService">jboss.security:service=JaasSecurityManager</depends>
        <attribute name="TransactionManager">java:/TransactionManager</attribute>
        <!--make the rar deploy! hack till better deployment-->
        <depends>jboss.jca:service=RARDeployer</depends>
      </mbean>
      <mbean code="org.jboss.resource.connectionmanager.LocalTxConnectionManager" name="jboss.jca:service=LocalTxCM,name=InventoryDataSource">
        <!--uncomment out this line if you are using the Informix DbRealm above -->
        <attribute name="SecurityDomainJndiName">CloudscapeDbRealmInventory</attribute>
        <depends optional-attribute-name="ManagedConnectionFactoryName">
          <!--embedded mbean-->
          <mbean code="org.jboss.resource.connectionmanager.RARDeployment" name="jboss.jca:service=LocalTxDS,name=InventoryDataSource"> <!--DS-->
            <attribute name="JndiName">InventoryDB</attribute>
            <attribute name="ManagedConnectionFactoryProperties">
              <properties>
                <config-property name="ConnectionURL" type="java.lang.String">jdbc:rmi://localhost:1099/jdbc:cloudscape:EstoreDB;create=true</config-property>
                <config-property name="DriverClass" type="java.lang.String">COM.cloudscape.core.RmiJdbcDriver</config-property>
                <!--set these only if you want only default logins, not through JAAS -->
                <config-property name="UserName" type="java.lang.String">estoreuser</config-property>
                <config-property name="Password" type="java.lang.String">estore</config-property>
              </properties>
            </attribute>
            <!--hack-->
            <depends optional-attribute-name="OldRarDeployment">jboss.jca:service=RARDeployment,name=JBoss LocalTransaction JDBC Wrapper</depends>
          </mbean>
        </depends>
        <depends optional-attribute-name="ManagedConnectionPool">
          <!--embedded mbean-->
          <mbean code="org.jboss.resource.connectionmanager.JBossManagedConnectionPool" name="jboss.jca:service=LocalTxPool,name=InventoryDataSource">
            <attribute name="MinSize">0</attribute>
            <attribute name="MaxSize">50</attribute>
            <attribute name="BlockingTimeoutMillis">5000</attribute>
            <attribute name="IdleTimeoutMinutes">15</attribute>
            <attribute name="Criteria">ByContainer</attribute>
          </mbean>
        </depends>
        <depends optional-attribute-name="CachedConnectionManager">jboss.jca:service=CachedConnectionManager</depends>
        <depends optional-attribute-name="JaasSecurityManagerService">jboss.security:service=JaasSecurityManager</depends>
        <attribute name="TransactionManager">java:/TransactionManager</attribute>
        <!--make the rar deploy! hack till better deployment-->
        <depends>jboss.jca:service=RARDeployer</depends>
      </mbean>
    </server>
    (I started cloudscape.)
    JBoss 3.2.3 seems has no problem with the modification of "login-config.xml".
    However, JBoss 3.2.3 can't deploy "cloudscape-service.xml". It shows error msg when I start it:
    12:22:18,140 ERROR [URLDeploymentScanner] MBeanException: Exception in MBean operation 'checkIncompleteDeployments()'
    Cause: Incomplete Deployment listing:
    Packages waiting for a deployer:
    Incompletely deployed packages:
    MBeans waiting for classes:
    MBeans waiting for other MBeans:
    [ObjectName: jboss.jca:service=LocalTxCM,name=EstoreDataSource
    state: FAILED
    I Depend On: jboss.jca:service=LocalTxDS,name=EstoreDataSource
    Depends On Me: org.jboss.deployment.DeploymentException: Exception setting attribute javax.management.Attribute: name=ManagedConnectionFactoryName value=jboss.
    jca:service=LocalTxDS,name=EstoreDataSource on mbean jboss.jca:service=LocalTxCM,name=EstoreDataSource; - nested throwable: (javax.management.AttributeNotFoundException: Writable attribute 'ManagedConnectionFactoryName' not found), ObjectName: jboss.jca:service=LocalTxDS,name=EstoreDataSource
    state: FAILED
    I Depend On:
    Depends On Me: jboss.jca:service=LocalTxCM,name=EstoreDataSource
    org.jboss.deployment.DeploymentException: No Attribute found with name: JndiName, ObjectName:
    jboss.jca:service=LocalTxCM,name=InventoryDataSource
    state: FAILED
    I Depend On: jboss.jca:service=LocalTxDS,name=InventoryDataSource
    Depends On Me: org.jboss.deployment.DeploymentException: Exception setting attribute javax.management.Attribute: name=ManagedConnectionFactoryName value=jboss.
    jca:service=LocalTxDS,name=InventoryDataSource on mbean jboss.jca:service=LocalTxCM,name=InventoryDataSource; - nested
    throwable: (javax.management.AttributeNotFoundException: Writable attribute 'ManagedConnectionFactoryName' not found), ObjectName: jboss.jca:service=LocalTxDS,name=InventoryDataSource
    state: FAILED
    I Depend On:
    Depends On Me: jboss.jca:service=LocalTxCM,name=InventoryDataSource
    org.jboss.deployment.DeploymentException: No Attribute found with name: JndiName
    The Petstore still can run, but shows "Unable to Connect to Database
    Database Connection is closed: Confirm that you have started your database."
    Could anyone kindly help with this problem, please?
    The reason why I using 3.2.3 is the project I am working on need to use TPTP BTM to monitor Petstore.
    But eclipse seems just support JBoss 3.2.3 and JBoss 4.0.
    I have the same problem with JBoss 4.0.5 GA.
    Thank you very much!

    Hi,
    I am having the same issue with Siebel on Demand web services. I was wondering if you ever solved this issue???

  • Unable to create a table in cloudscape with solaris

    Hi experts,
    I have WLS6.1 running on Solaris. I'm trying to create tables in cloudscape but
    it throughs NullPointerException. I'm able to run java utils.Schema jdbc:cloudscape:test;create=true
    COM.cloudscape.core.JDBCDriver
    -verbose test.ddl
    This is the error :
    CREATE TABLE test ( id varchar(32), name varchar(32))
    SQL Exception: Java exception: ': java.lang.NullPointerException'.
    SQL Error Code: 0
    SQL State: XJ001
    It creates empty database. I have the required permission. And I can run java
    COM.cloudscape.tools.cview but when I try to create a table even using cview it
    throughs NullPointerException.
    Any help is appreciated.

    Try this SQL statement:
    CREATE TABLE myTable (myField COUNTER)
    This creates a table with name 'myTable' and a column 'myField' of type AutoNumber.

  • Cloudscape - JSP - Unable to create database CloudscapeDB

    I created a Cloudscape database in a Java program:
    try { 
    Class.forName(COM.cloudscape.core.JDBCDriver).newInstance();
         connection = DriverManager.getConnection(jdbc:cloudscape:CloudscapeDB;create=true);
    A CloudscapeDB directory is automatically created in the same directory as my
    Java program. I then ran cloudview -start from the DOS prompt, opened my database, created my tables and added data.
    In another Java program, I display the list of customers:
    public void displayCustomers(){
    try { 
    Class.forName("COM.cloudscape.core.JDBCDriver").newInstance();
    connection = DriverManager.getConnection(jdbc:cloudscape:CloudscapeDB;create=true);
         Statement s = connection.createStatement();
         ResultSet rs = s.executeQuery("SELECT * FROM customer");
    This Java program works fine, displays the data from the customer table.
    I then take this same code and put in into a JSP to display the list of customers to a web page and deploy my application using the Deployment tool:
    <%
    try {     
    Class.forName(COM.cloudscape.core.JDBCDriver);
         connection = DriverManager.getConnection(jdbc:cloudscape:CloudscapeDB;create=true);
    My getConnection() method throws the following SQL Error:
    SqlException Error Thrown Failed to create database 'CloudscapeDB'
    I am able to access the CloudscapeDB using the same driver and URL in the Database Tool but I don't know what I am doing wrong in my JSP.
    In the Deployment Tool, I have configured the Driver Class as COM.cloudscape.core.JDBCDriver and the JNDI Name as jdbc/CloudscapeDB and the JDBC URL as jdbc:cloudscape:CloudscapeDB;create=true. I am not sure I even needed to do this.
    Any idea why my JSP cannot create the CloudscapeDB? I believe the CLASSPATH is configured correctly because I am able to get access to the Cloudscape database in my Java program.
    Any help would be greatly appreciated.

    Hi, I saw your message in sun's forum. I am wondering how you g ot this issue resloved because I have a similar problem using Tomcat4.0 and cludscape 3.6. Would you please drop me a few lines and let me know your solution? I think it may be Tomcat configuration issue but just don't know how to fix it.
    Thanks in advance
    please reply to [email protected]
    I created a Cloudscape database in a Java program:
    try { 
    Class.forName(COM.cloudscape.core.JDBCDriver).newInsta
    ce();
    connection =
    =
    DriverManager.getConnection(jdbc:cloudscape:Cloudscape
    B;create=true);
    A CloudscapeDB directory is automatically created in
    the same directory as my
    Java program. I then ran cloudview -start from the
    DOS prompt, opened my database, created my tables and
    added data.
    In another Java program, I display the list of
    customers:
    public void displayCustomers(){
    try { 
    Class.forName("COM.cloudscape.core.JDBCDriver").newIns
    ance();
    connection =
    DriverManager.getConnection(jdbc:cloudscape:CloudscapeD
    ;create=true);
         Statement s = connection.createStatement();
    ResultSet rs = s.executeQuery("SELECT * FROM
    OM customer");
    This Java program works fine, displays the data from
    the customer table.
    I then take this same code and put in into a JSP to
    display the list of customers to a web page and deploy
    my application using the Deployment tool:
    <%
    try {     
    Class.forName(COM.cloudscape.core.JDBCDriver);
    connection =
    n =
    DriverManager.getConnection(jdbc:cloudscape:CloudscapeD
    ;create=true);
    My getConnection() method throws the following SQL
    Error:
    SqlException Error Thrown Failed to create database
    'CloudscapeDB'
    I am able to access the CloudscapeDB using the same
    driver and URL in the Database Tool but I don't know
    what I am doing wrong in my JSP.
    In the Deployment Tool, I have configured the Driver
    Class as COM.cloudscape.core.JDBCDriver and the JNDI
    Name as jdbc/CloudscapeDB and the JDBC URL as
    jdbc:cloudscape:CloudscapeDB;create=true. I am not
    sure I even needed to do this.
    Any idea why my JSP cannot create the CloudscapeDB? I
    believe the CLASSPATH is configured correctly because
    I am able to get access to the Cloudscape database in
    my Java program.
    Any help would be greatly appreciated.

  • Username and password with Access and JDBC application

    Hello all,
    I have written an application which accesses a MS Access database. I have created a dialog which asks the user for a username and password. I then include the username and password to connect to the database. I have created groups and users in the Access database and have given each user different privaleges. However, when I run my application, any user can get any privelage. I am missing something. Thanks in advance.

    // ConnectToDatabase.java
    // Copyleft (c) 2001 RatKing
    // ��������������������������������Java Bean
    // E-mail: [email protected]
    // This can use in JSP or Java Application or Applet
    // AFTER you have setup the ODBC source in Windoz.
    package rat;
    import java.sql.*;
    import java.util.*;
    public class ConnectToDatabase{
    private String driverClass = "sun.jdbc.odbc.JdbcOdbcDriver"; // JDBC-ODBC Bridge Driver
    private String dbURL = "jdbc:odbc:yourdbname"; // the name of your ODBC Source's Database
    private String userName = "yourname"; // user ID
    private String password = "yourpassword"; // user password
    private Connection connection = null; // Connection to the Database
    private Statement statement = null; // Statement object
    public ConnectToDatabase () {
    // ������������������
    public Connection getConnection() throws ClassNotFoundException, SQLException {
    if(connection != null) {
    return connection;
    Class.forName(driverClass);
    connection = DriverManager.getConnection(dbURL, userName, password);
    return connection;
    } // getConnection()
    public void closeConnection() throws SQLException {
    if (connection != null) {
    // Makes all changes made since the previous commit/rollback permanent
    // and releases any database locks currently held by this Connection object.
    if (!connection.getAutoCommit())
    connection.commit();
    closeStatement();
    connection.close();
    connection = null;
    } // closeConnection()
    * If not connected to database...connect to database, create a statement,
    * and, return the Statement.
    protected void createStatement() throws SQLException, Exception {
    if(statement == null) {
    Connection connection = getConnection();
    statement = connection.createStatement();
    * This method executes a statement and returns true or false. Any type
    * of Statement may be executed by this command.
    public boolean execute(String sqlString) throws SQLException, Exception {
    if(statement == null){
    createStatement();
    boolean returnValue = statement.execute(sqlString);
    return returnValue;
    * This method executes the statement and returns a ResultSet from
    * execution of the query. Only a SELECT Statemet is applicable here.
    public ResultSet executeQuery(String sqlString) throws SQLException, Exception {
    if(statement == null){
    createStatement();
    ResultSet rs = statement.executeQuery(sqlString);
    return rs;
    * This method executes update statements and returns a count of
    * the updates. Only a INSERTS, DELETES, and UPDATES are applicable here.
    * In addition, SQL statements that return nothing such as SQL DDL statements
    * can be executed.
    public int executeUpdate(String sqlString) throws SQLException, Exception {
    if(statement == null){
    createStatement();
    int returnValue = statement.executeUpdate(sqlString);
    return returnValue;
    * This method closes the Statement.
    public void closeStatement() throws SQLException {
    if(statement != null){
    statement.close();
    statement = null;
    * If it is not connected to database, connect to database and
    * create a statement and returns the Statement
    * @param scrollType should be ResultSet.TYPE_FORWARD_ONLY
    * or ResultSet.TYPE_SCROLL_INSENSITIVE
    * or ResultSet.TYPE_SCROLL_SENSITIVE
    * @param updateType should be ResultSet.CONCUR_READ_ONLY or
    * ResultSet.CONCUR_UPDATABLE ;
    protected Statement getStatement(int scrollType, int updateType)
    throws SQLException, Exception {
    Connection connection = getConnection();
    // for cloudscape to work with scrollable resultsets, the autocommit
    // should be false.
    connection.setAutoCommit(false);
    Statement statement = connection.createStatement(scrollType,
    updateType);
    return statement;
    * If it is not connected to database, connect to database and
    * create a preparestatement and returns the Statement
    * @param sqlString queryString to make a statement
    * @param scrollType should be ResultSet.TYPE_FORWARD_ONLY
    * or ResultSet.TYPE_SCROLL_INSENSITIVE
    * or ResultSet.TYPE_SCROLL_SENSITIVE
    * @param updateType should be ResultSet.CONCUR_READ_ONLY or
    * ResultSet.CONCUR_UPDATABLE ;
    protected PreparedStatement getStatement(String sqlString,
    int scrollType,
    int updateType) throws SQLException,
    Exception {
    Connection connection = getConnection();
    // for cloudscape to work with scrollable resultsets, the autocommit
    // should be false.
    connection.setAutoCommit(false);
    PreparedStatement preparedStatement =
    connection.prepareStatement(sqlString, scrollType, updateType);
    return preparedStatement;
    * this method executes the statement and resuts the resultSet due to
    * execution of Statement.
    * only SELECT Statemet is applied here.
    public ResultSet executeQueryScrollInsensitiveReadOnly(String sqlString,
    Vector values) throws SQLException, Exception {
    PreparedStatement preparedStatement = getStatement(sqlString,
    ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    for (int i = 1; i <= values.size(); i++) {
    preparedStatement.setObject(i, values.elementAt(i - 1));
    // Execute a SQL statement that returns a single ResultSet.
    ResultSet rs = preparedStatement.executeQuery();
    return rs;
    * this method executes the statement and resuts the resultSet due to
    * execution of Statement. only SELECT Statemet is applied here.
    public ResultSet executeQueryScrollInsensitiveReadOnly(String sqlString)
    throws SQLException, Exception {
    Statement statement = getStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    // Execute a SQL statement that returns a single ResultSet.
    ResultSet rs = statement.executeQuery(sqlString);
    return rs;
    * this method executes the statement and returns the resultSet due to execution
    * of Statement. only SELECT Statemet is applied here.
    public ResultSet executeQueryScrollForwardOnly(String sqlString,
    Vector values) throws SQLException, Exception {
    PreparedStatement preparedStatement = getStatement(sqlString,
    ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
    for (int i = 1; i <= values.size(); i++) {
    preparedStatement.setObject(i, values.elementAt(i - 1));
    // Execute a SQL statement that returns a single ResultSet.
    ResultSet rs = preparedStatement.executeQuery();
    return rs;
    * this method executes the statement and returns the resultSet due to
    * execution of Statement. only SELECT Statemet is applied here.
    public ResultSet executeQueryScrollForwardOnly(String sqlString)
    throws SQLException, Exception {
    Statement statement = getStatement(ResultSet.TYPE_FORWARD_ONLY,
    ResultSet.CONCUR_READ_ONLY);
    // Execute a SQL statement that returns a single ResultSet.
    ResultSet rs = statement.executeQuery(sqlString);
    return rs;
    * Method executeQueryScrollSensitiveReadOnly
    * @param sqlString String
    * @param values Vector
    * @return ResultSet returns ResultSet due to statement execution
    * @throws Exception
    * @throws SQLException
    * @see
    public ResultSet executeQueryScrollSensitiveReadOnly(String sqlString,
    Vector values) throws SQLException, Exception {
    PreparedStatement preparedStatement = getStatement(sqlString,
    ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
    for (int i = 1; i <= values.size(); i++) {
    preparedStatement.setObject(i, values.elementAt(i - 1));
    // Execute a SQL statement that returns a single ResultSet.
    ResultSet rs = preparedStatement.executeQuery();
    return rs;
    * Method executeQueryScrollSensitiveReadOnly
    * @param sqlString
    * @return
    * @throws Exception
    * @throws SQLException
    * @see
    public ResultSet executeQueryScrollSensitiveReadOnly(String sqlString) throws SQLException, Exception {
    Statement statement = getStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    // Execute a SQL statement that returns a single ResultSet.
    ResultSet rs = statement.executeQuery(sqlString);
    return rs;
    //////////////Other things maybe useful ///////////////////
    # Refer to Appendix A for more info on configuring the JDBC
    # driver via setting of the DRIVER_CLASS and DATABASE_URL properties
    #JDBC Driver Class
    # for ODBC Driver:
    #DRIVER_CLASS=sun.jdbc.odbc.JdbcOdbcDriver
    # for Oracle Driver
    #DRIVER_CLASS=jdbc.oracle.driver.OracleDriver
    # for CloudScape Driver equipped with J2EE reference implementation
    #DRIVER_CLASS=RmiJdbc.RJDriver
    # for CloudScape Driver equipped with BEA Weblogic Server
    DRIVER_CLASS=COM.cloudscape.core.JDBCDriver
    #Database URL
    # for ODBC URL
    #DATABASE_URL=jdbc:odbc:tShirts
    # for Oracle URL
    #DATABASE_URL=jdbc:oracle:thin:@localhost:1521:ORCL
    # for URL with CloudScape equipped with J2EE reference implementation
    #DATABASE_URL=jdbc:rmi:jdbc:cloudscape:beeshirtsdb
    # for URL with CloudScape equipped with BEA Weblogic Server
    DATABASE_URL=jdbc:cloudscape:D:\\weblogic\\eval\\cloudscape\\beeshirts
    #UserName to connect to database
    UserName=TSHIRTS
    #Password to connect to database
    Password=TSHIRTS
    #otherParameters
    SUB_PROPERTIES=
    #SQL Query
    SQL_QUERY_STATEMENT = SELECT * FROM TSHIRTS.CUSTOMER
    #SQL Update , if you run this program please change the id 129 to different value each time
    SQL_UPDATE_STATEMENT = INSERT INTO TSHIRTS.CUSTOMER VALUES ('129','Sam','Cheng','S','123 Sam St.', 'C3','Baltimore','MD','20222','4104444444' ,'[email protected]')
    #Join STATEMENT
    SQL_QUERY_STATEMENT_JOIN = SELECT TSHIRTS.CUSTOMER.*, TSHIRTS.ORDERS.* FROM TSHIRTS.CUSTOMER, TSHIRTS.ORDERS WHERE CUSTOMER.CUSTOMER_ID = ORDERS.CUSTOMER_ID_FK
    #OUTER JOIN for ORACLE
    #SQL_QUERY_STATEMENT_OUTER_JOIN = SELECT CUSTOMER.* FROM TSHIRTS.CUSTOMER,STATE WHERE CUSTOMER.STATE(+) = STATE.CODE(+)
    #OUTER JOIN for MSACCESS
    #SQL_QUERY_STATEMENT_OUTER_JOIN = SELECT C.* , S.* FROM CUSTOMER C OUTER JOIN STATE S on C.STATE = S.CODE
    #OUTER JOIN for MSACCESS and Cloudscape
    SQL_QUERY_STATEMENT_OUTER_JOIN = SELECT C.* , S.* FROM TSHIRTS.CUSTOMER C LEFT OUTER JOIN TSHIRTS.STATE S on C.STATE = S.CODE
    #SQL Statement with Like for MSACCESS
    #SQL_QUERY_STATEMENT_WITH_LIKE = SELECT CUSTOMER.* FROM CUSTOMER WHERE CUSTOMER.FIRST_NAME LIKE \'*R*\'
    #SQL Statement with Like for ORACLE and Cloudscape
    SQL_QUERY_STATEMENT_WITH_LIKE = SELECT * FROM TSHIRTS.CUSTOMER WHERE FIRST_NAME LIKE '%R%'
    #Prepared QUERY Statement
    PREPARED_SQL_QUERY_STATEMENT = SELECT * FROM TSHIRTS.CUSTOMER WHERE FIRST_NAME = ?
    PREPARED_SQL_QUERY_STATEMENT_VALUES = Roy
    #Prepared Insert
    PREPARED_SQL_INSERT_STATEMENT = INSERT INTO TSHIRTS.CUSTOMER VALUES(?,?,?,?,?,?,?,?,?,?,?)
    PREPARED_SQL_INSERT_STATEMENT_VALUES =130,John,Hiller,Miller,125 S St.,C6,Baltimore,MD,20100,4104444444,[email protected]
    #Prepared Update
    PREPARED_SQL_UPDATE_STATEMENT = UPDATE TSHIRTS.STATE SET STATE_NAME = 'California' WHERE CODE = ?
    PREPARED_SQL_UPDATE_STATEMENT_VALUES =CA
    #Data base schema name
    SCHEMA_NAME =TSHIRTS

  • Problem using DataSource for JDBC applications

    import javax.sql.*;
    import java.sql.*;
    import java.io.*;
    import java.text.*;
    import javax.naming.*;
    public class CreateMovieTables {
         //static String driver="COM.cloudscape.core.JDBCDriver";
         //static String url="jdbc:cloudscape:";
         String leadActor,title,leadActress,type,dateOfRelease;
         Connection connection;
         Statement statement;
         DataSource dataSource;
         public void initialize() throws SQLException,NamingException{
              //Class.forName(driver);
              Context initialContext = new InitialContext();
              //connection = DriverManager.getConnection(url + "Movies;create=true");
              dataSource = (DataSource) initialContext.lookup("jdbc/Cloudscape");
              connection = dataSource.getConnection();
    the code goes on
    when i start the j2ee sdk server, the cloudscape server the message i get when i run the program is...
    No local string for datasource.wrongclient
    java.sql.SQLException:
    at com.sun.enterprise.resource.JdbcDataSource.getConnection(JdbcDataSource.java:40)
    at CreateMovieTables.initialize(CreateMovieTables.java:23)
    at CreateMovieTables.main(CreateMovieTables.java:86)
    can anyone please suggest as to where i may be going wrong
    thanx
    -NDK

    I don't agree that a User or System DSN is needed - that's a Windows idiom.
    I haven't used the J2EE SDK to set up a data source, but I know that when I do it in Tomcat I've got to put a <resource-ref> tag in the web.xml that identifies the JNDI lookup string, and then the JDBC driver/URL/username/password details under a <Resource> tag in the context.xml to tell the data source how to create the JDBC connection.
    My <resource-ref> name is "jdbc/APIPrototype". My JNDI lookup string looks like "java:comp/env/jdbc/DataSourceName".
    You've got to do more than just put the JNDI lookup string in the Context lookup. Your error message sounds like the server is saying you've haven't done that set-up work.
    Just a guess - perhaps it's something else, but I couldn't tell from your note. - MOD

  • JNDI with TOMCAT4.0 to CLOUDSCAPE ? need explanation

    Hi All,
    I'm using TOMCAT4.0 and Cloudscape.
    I got below code 1,2,and 3. When I ran it, I can't look up the cloudscape database ?
    (I print out "************** null ***************")
    Why? It looks like there is no link between jdbc/books and cloudscape database.
    How do we correct it? or what is missing in terms of network connection? Or any value that I have is incorrect?
    Thanks,
    Paul.
    1. web.xml
    <resource-ref>
    <res-ref-name>jdbc/books</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    2. server.xml
    <Resource name="jdbc/books" auth="Container"
    type="javax.sql.DataSource"/>     
    <ResourceParams name="jdbc/books">
    <parameter><name>user</name><value></value></parameter>
    <parameter><name>password</name><value></value></parameter>     
    <parameter><name>driverClassName</name>
    <value>COM.cloudscape.core.JDBCDriver</value></parameter>
    <parameter><name>driverName</name>
    <value>jdbc:cloudscape:rmi:books</value></parameter>
    </ResourceParams>
    3. cloudscape is running(database is OK) and I ran test.jsp
    javax.naming.Context ctx = new javax.naming.InitialContext();
    javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup("java:comp/env/jdbc/books");
    if (ds == null)
         out.println("************** null ***************");
    else     
         javax.sql.Connectin conn = ds.getConnection();

    Hi Fredrik,
    (Thank, Mr. Expert)
    0. Cloudscape came with J2EESDK1.3 and is running.
    1. Basically, I already do a test with J2EE sun server
    J2EESDK1.3 and it work fine because there is physical link between
    the jdbc/books and jdbc:cloudscape:rmi:books. However, it look there is no
    physical link for Tomcat4.0.
    2.
    javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup("java:comp/env/jdbc/books");
    give me "null"
    (3. I have to see why ?)
    -- Paul.

  • WLS not shutting down Cloudscape

    I've been through the Cloudscape documentation on their web site. It says that
    Cloudscape should be shutdown explicitly before exiting the JVM:<br>
    <br>
    DriverManager.getConnection("jdbc:cloudscape:;shutdown=true");<br>
    <br>
    If it is not properly shutdown, Cloudscape has to perform a recovery step when
    it starts up again. Yet WLS does not seem to do this. I suspect that a shutdown
    class would be the best way. Does WLS actually do this somewhere?<br>
    <br>
    Thanks<br>
    Matt Jacobsen<br>

    I'm sure it doesn't.
    Joe
    Matt Jacobsen wrote:
    >
    I've been through the Cloudscape documentation on their web site. It says that
    Cloudscape should be shutdown explicitly before exiting the JVM:<br>
    <br>
    DriverManager.getConnection("jdbc:cloudscape:;shutdown=true");<br>
    <br>
    If it is not properly shutdown, Cloudscape has to perform a recovery step when
    it starts up again. Yet WLS does not seem to do this. I suspect that a shutdown
    class would be the best way. Does WLS actually do this somewhere?<br>
    <br>
    Thanks<br>
    Matt Jacobsen<br>

  • Error connecting to CLOUDSCAPE database from EJB

    Hi All,
    I am working on Sun's reference implementation App Server verson 1.3.1. It comes shipped with cloudscape database. When I write try to connect to this App Server through JSP that calls methods through Enterprise Java Beans I get this Error Message:
    java.net.ConnectException: Connection refused: connect
    java.rmi.RemoteException: nested exception is: javax.ejb.EJBException: Unable to
    connect to database. Connection refused to host: XXXXXXXX; nested exception
    is:
    java.net.ConnectException: Connection refused: connect; nested exception
    is:
    javax.ejb.EJBException: Unable to connect to database. Connection refuse
    d to host: XXXXXXXXX; nested exception is:
    java.net.ConnectException: Connection refused: connect
    javax.ejb.EJBException: Unable to connect to database. Connection refused to hos
    t: XXXXXXXXX; nested exception is:
    java.net.ConnectException: Connection refused: connect
    <<no stack trace available>>
    Can any one help me solve this problem.
    Regards,
    Venky.

    Hi,
    check the following points.
    1.Make sure that Cloudscape is up.u can start this using teh command cloudscape -start
    2.set the datasorce properly.u can change this from deploy tool,tools->Server->datasources->standard configuration.
    use the default datasource jdbc/Cloudscape by leaving user/pwd as blank.
    HTH
    -asharafkk

  • How to use cloudscape server with imq plugin persistent

    I succeed using embbed cloudscape to use JDBC plugin persistent store.
    I found that the messge sending performance is acceptable(
    20000 messages/27minutes), but the asynch message receiving is quite slow(20000message/82minutes).(My environment is a P4 256MRAM nodebook)
    Now i am trying to use a standalone cloudscape server to serve as JDBC persisten.
    but I fail to use imqdbmgr to create imqdb.
    however, I can use cloudscape ij to create imqdb
    at local machine using JDBC URL" jdbc:cloudscape:imqdb".
    This cloudscape is provided by J2ee1.4 package.
    but I failed while using following property in imq's config.properties
    imq.persist.jdbc.opendburl=jdbc:cloudscape:d:/j2sdkee1.4/bin/imqdb
    imqdbmgr report
    "Failed to get connection to jdbc:cloudscape:d:/j2sdkee1.4/bin/imqdb;create=true:"
    any one can help to figure out the probem

    You need to check the cloudscape documentation and find out
    1. the JDBC driver class to use and set imq.persist.jdbc.driver
    2. the url to access a database managed by the server and set
         imq.persist.jdbc.opendburl
    The url shown in your mail is a format for the embedded version.
    I believe the format for accessing a database managed by a server
    is different. Please check the cloudscape documentation.
    Since your database is created and managed by a server, you use
    "imqdbmgr create tbl" to just create the tables used by MQ (after
    the above properties are set correctly).
    Hope this helps.

  • Cloudscape port config on j2ee 1.4beta

    i am trying to configure the cloudscape port. i've seen lots of docs about how to do this with 1.3 but i can't quite figure it out for 1.4beta.
    here's what i've done:
    1: change bin/launcher.xml. it now has a
    <arg line="-port 1098"/>
    in cloudscape-start target
    2: <value="jdbc:rmi://localhost:1098/jdbc:cloudscape:"/>      
    in cloudscape-stop target
    3: ..key="ij.protocol" value="jdbc:rmi://localhost:1098/jdbc:cloudscape"
    ...key="ij.database"
    value="jdbc:rmi://localhost:1098/jdbc:cloudscape:CloudscapeDB;create=true"
    in cloudscape-isql target.
    4: change config/server-config.xml so all of its cloudscape url's point to jdbc:cloudscape:rmi://localhost:1098/CloudscapeDB
    it seems to startup cloudscape ok on 1098, but when running "setup deploy", the appserver can't connect to cloudscape. i get the suspicion that it's still looking on the default port=1099 because when i run cloudscape -isql it says its using the default url, not the one i had specified in the launcher.xml file.
    how can i be positive that cloudscape is running on 1098?
    (i just use netstat -noa to check for ports in use, but this doesn't guarantee that it is succesfully installed).
    where does the server get the db url, if not from the above metioned 2 files? i'm stuck...
    thanks,
    derek.

    Could someone suggest a solution for this problem. I am trying to do the same thing and am getting stuck. What I am trying to do is this :
    1) Run Cloudscape on a different port (2001) instead of 1099.
    2) Change the J2EE server configuration by modifying resource.properties file so that the DB source is now rmi://localhost:2001/CloudscapeDB
    3) The J2EE server starts up fine.
    4) However when I try to deploy the PetStore application, there is an exception saying that connection refused.
    So if someone has been able to successfully deploy the petstore application on clouldscape running at a different port than 1099 (default), could you send some suggestions.
    Thanks,
    Bon Bon

  • Cloudscape rdbmsrealm

    Hi,
    I am trying the sample rdbmsrealm secuirty example in WLS6.0 SP2.
    I followed all the steps in
    wlserver6.0\samples\examples\security\rdbmsrealm\package-summary.html.
    But I am not able to view User, Group, and Access Control Lists nodes
    and view the addition security information defined by the RDBMS security
    realm.
    Also when I tried to add new user it is updating in fileRealm.properties
    not in cloudscape rdbmsrealm.
    pls guide me,
    thanks in advance,
    Milind.

    thanks satya it is working perfectly
    regards,
    Milind.
    milind puranik wrote:
    thanks a lot satya .
    i tried below tags into config.xml
    but still I am getting following exception
    <Jun 26, 2001 11:49:57 AM EDT> <Notice> <Management> <Loading
    configuration file .\config\examples\config.xml ...>
    The WebLogic Server did not start up properly.
    Exception raised:
    weblogic.management.configuration.ConfigurationException: undefined
    mbean reference: examples:Name=myFileRe
    alm,Type=FileRealm
    weblogic.management.configuration.ConfigurationException: undefined
    mbean reference: examples:Name=myFileRealm,Type=FileRealm
    at
    weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.resolveMBeanAttributes(ConfigurationPars
    er.java:352)
    at
    weblogic.management.internal.xml.ConfigurationParser$ConfigurationHandler.endDocument(ConfigurationParser.java:194
    at
    weblogic.apache.xerces.parsers.SAXParser.endDocument(SAXParser.java:1222)
    at
    weblogic.apache.xerces.validators.common.XMLValidator.callEndDocument(XMLValidator.java:743)
    at
    weblogic.apache.xerces.framework.XMLDocumentScanner$EndOfInputDispatcher.dispatch(XMLDocumentScanner.java:1545)
    at
    weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:380)
    at
    weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:900)
    at
    weblogic.management.internal.xml.ConfigurationParser.parse(ConfigurationParser.java:103)
    at
    pls guide me I am sending u my config.xml.
    thanks,
    Milind.
    Satya Ghattu wrote:
    Milind,
    Looks like your RDBMSRealm is not configured properly. In your config.xml
    file make sure that you have something like this,
    For the Realm tag,
    <Realm
    Name="defaultRealm"
    FileRealm="defaultFileRealm"
    CachingRealm="defaultCachingRealm"
    />
    For the cachingRealm tag,
    <CachingRealm
    Name="defaultCachingRealm"
    BasicRealm="defaultRDBMSRealmForCloudscape"
    />
    RDBMSRealm tag
    <RDBMSRealm
    Name="defaultRDBMSRealmForCloudscape"
    RealmClassName="security.rdbmsrealm.RDBMSRealm"
    DatabaseDriver="COM.cloudscape.core.JDBCDriver"
    DatabaseURL="jdbc:cloudscape:demo;create=true;autocommit=false"
    DatabaseUserName=""
    DatabasePassword=""
    SchemaProperties="getGroupNewStatement=true;getUser=SELECT U_NAME,
    U_PASSWORD FROM users WHERE U_NAME = ?;getGroupMembers=SELECT GM_GROUP,
    GM_MEMBER from groupmembers WHERE GM_GROUP = ?;getAclEntries=SELECT
    A_NAME,
    A_PRINCIPAL, A_PERMISSION FROM aclentries WHERE A_NAME = ? ORDER BY
    A_PRINCIPAL;getUsers=SELECT U_NAME, U_PASSWORD FROM
    users;getGroups=SELECT
    GM_GROUP, GM_MEMBER FROM groupmembers;getAcls=SELECT A_NAME, A_PRINCIPAL,
    A_PERMISSION FROM aclentries ORDER BY A_NAME,
    A_PRINCIPAL;getPermissions=SELECT DISTINCT A_PERMISSION FROM
    aclentries;getPermission=SELECT DISTINCT A_PERMISSION FROM aclentries
    WHERE
    A_PERMISSION = ?;newUser=INSERT INTO users VALUES ( ? ,
    ? );addGroupMember=INSERT INTO groupmembers VALUES ( ? ,
    ? );removeGroupMember=DELETE FROM groupmembers WHERE GM_GROUP = ? AND
    GM_MEMBER = ?;deleteUser1=DELETE FROM users WHERE U_NAME =
    ?;deleteUser2=DELETE FROM groupmembers WHERE GM_MEMBER =
    ?;deleteUser3=DELETE FROM aclentries WHERE A_PRINCIPAL =
    ?;deleteGroup1=DELETE FROM groupmembers WHERE GM_GROUP =
    ?;deleteGroup2=DELETE FROM aclentries WHERE A_PRINCIPAL = ?"
    />
    Now, restart your server and you should see the users, groups and acls
    that
    you defined in your RDBMSRealm on the console.
    -satya
    milind puranik <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am trying the sample rdbmsrealm secuirty example in WLS6.0 SP2.
    I followed all the steps in
    wlserver6.0\samples\examples\security\rdbmsrealm\package-summary.html.
    But I am not able to view User, Group, and Access Control Lists nodes
    and view the addition security information defined by the RDBMS security
    realm.
    Also when I tried to add new user it is updating in fileRealm.properties
    not in cloudscape rdbmsrealm.
    pls guide me,
    thanks in advance,
    Milind.
    <?xml version="1.0" encoding="UTF-8"?>
    <!--If your domain is active, please do not edit the config.xml file. Any changes made to that file while the domain is active will not have any effect on the domain's configuration and are likely to be lost. If your domain is inactive, you may edit this file with an XML editor. If you do so, please refer to the configuration documentation at http://edocs.bea.com/wls/docs60/adminguide/config_xml.html. In general, we recommend that changes to your configuration file be made through the Administration Console.-->
    <Domain Name="examples">
    <Application Deployed="true" Name="jta_ejb_jmsjdbc" Path=".\config\examples\applications">
    <EJBComponent Name="jta_ejb_jmsjdbc" Targets="examplesServer" URI="jta_ejb_jmsjdbc.jar"/>
    </Application>
    <Application Deployed="true" Name="ejb_basic_statefulSession" Path=".\config\examples\applications">
    <EJBComponent Name="ejb_basic_statefulSession"
    Targets="examplesServer" URI="ejb_basic_statefulSession.jar"/>
    </Application>
    <Log FileName="./config/examples/logs/wl-domain.log" Name="examples"/>
    <Application Deployed="true" Name="ejb_extensions_readMostly" Path=".\config\examples\applications">
    <EJBComponent Name="ejb_extensions_readMostly"
    Targets="examplesServer" URI="ejb_extensions_readMostly.jar"/>
    </Application>
    <WLECConnectionPool FailoverAddresses="//wlehost:2468"
    MaximumPoolSize="3" MinimumPoolSize="2" Name="simplepool"
    PrimaryAddresses="//wlehost:2468" UserName="wleuser"
    UserRole="developer" WLEDomain="simple"/>
    <JTA AbandonTimeoutSeconds="86400"
    BeforeCompletionIterationLimit="100" ForgetHeuristics="false"
    MaxTransactions="10000" MaxUniqueNameStatistics="1000"
    Name="examples" TimeoutSeconds="100"/>
    <!--Realm FileRealm="myFileRealm" Name="myRealm"/-->
         <Realm Name="defaultRealm" FileRealm="defaultFileRealm" CachingRealm="defaultCachingRealm"/>     
    <Application Name="wl_management_internal2" Path=".\config\tmp">
    <WebAppComponent Name="wl_management_internal2"
    Targets="examplesServer" URI="wl_management_internal2.war"/>
    </Application>
    <JMSConnectionFactory
    JNDIName="weblogic.examples.jms.TopicConnectionFactory" Name="exampleTopic"/>
    <JMSConnectionFactory
    JNDIName="weblogic.examples.jms.QueueConnectionFactory" Name="exampleQueue"/>
    <LDAPRealm AuthProtocol="simple" Credential="MyLDAPCredential"
    GroupDN="o=airius.com,ou=Groups" GroupIsContext="false"
    GroupNameAttribute="cn" GroupUsernameAttribute="uniquemember"
    LDAPURL="ldap://ldapserver:389"
    Name="defaultLDAPRealmForNetscapeDirectoryServer"
    Notes="This is provided as an example. Before enabling this Realm, you must edit the configuration parameters as appropriate for your environment."
    Principal="uid=admin, ou=Administrators, ou=TopologyManagement, o=NetscapeRoot"
    UserAuthentication="local" UserDN="o=airius.com,ou=People"
    UserNameAttribute="uid" UserPasswordAttribute="userpassword"/>
    <JDBCConnectionPool CapacityIncrement="2"
    DriverName="weblogic.jdbc.oci.Driver" InitialCapacity="4"
    LoginDelaySeconds="1" MaxCapacity="10" Name="oraclePool"
    Properties="user=SCOTT;password=tiger;server=DEMO"
    RefreshMinutes="10" ShrinkPeriodMinutes="15"
    ShrinkingEnabled="true" TestConnectionsOnRelease="false"
    TestConnectionsOnReserve="false" TestTableName="dual" URL="jdbc:weblogic:oracle"/>
    <Application Deployed="true" Name="cluster_ejb_teller" Path=".\config\examples\applications">
    <EJBComponent Name="cluster_ejb_teller" Targets="examplesServer" URI="cluster_ejb_teller.jar"/>
    </Application>
    <JDBCConnectionPool CapacityIncrement="1"
    DriverName="COM.cloudscape.core.XaDataSource"
    InitialCapacity="1" MaxCapacity="2" Name="demoXAPool"
    Properties="dataSourceName=demoXAPool;databaseName=demo;createDatabase=create"
    RefreshMinutes="0" ShrinkPeriodMinutes="15"
    ShrinkingEnabled="true" Targets="examplesServer"
    TestConnectionsOnRelease="false"
    TestConnectionsOnReserve="false" URL="jdbc:cloudscape:demo"/>
    <LDAPRealm AuthProtocol="simple" Credential="MyLDAPCredential"
    GroupDN="o=airius.com,ou=Groups" GroupIsContext="true"
    GroupNameAttribute="cn" GroupUsernameAttribute="member"
    LDAPURL="ldap://ldapserver:363"
    Name="defaultLDAPRealmForNovellDirectoryServices"
    Notes="This is provided as an example. Before enabling this Realm, you must edit the configuration parameters as appropriate for your environment."
    Principal="cn=Admin,o=airius.com" SSLEnable="true"
    UserAuthentication="bind" UserDN="o=airius.com,ou=People"
    UserNameAttribute="cn" UserPasswordAttribute="userpassword"/>
    <Application Deployed="true" Name="console" Path=".\config\examples\applications">
    <WebAppComponent Name="console" Targets="examplesServer" URI="console.war"/>
    </Application>
    <Application Deployed="true" Name="DefaultWebApp_examplesServer" Path=".\config\examples\applications">
    <WebAppComponent Name="DefaultWebApp_examplesServer"
    Targets="examplesServer" URI="DefaultWebApp_examplesServer"/>
    </Application>
    <RDBMSRealm DatabaseDriver="sun.jdbc.odbc.JdbcOdbcDriver"
    DatabasePassword="tiger"
    DatabaseURL="jdbc:odbc:MyDataSourceName"
    DatabaseUserName="scott" Name="defaultRDBMSRealmForODBC"
    Notes="This is provided as an example and is designed to work with the schema created for the examples.security.rdbmsrealm example. To enable this RDBMSRealm, you must first create the database tables and edit the configuration parameters as appropriate for your environment."
    RealmClassName="examples.security.rdbmsrealm.RDBMSRealm" SchemaProperties="getGroupMembers=SELECT GM_GROUP, GM_MEMBER from groupmembers WHERE GM_GROUP = ?;deleteGroup2=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;deleteGroup1=DELETE FROM groupmembers WHERE GM_GROUP = ?;addGroupMember=INSERT INTO groupmembers VALUES ( ? , ? );getUser=SELECT U_NAME, U_PASSWORD FROM users WHERE U_NAME = ?;getPermission=SELECT DISTINCT A_PERMISSION FROM aclentries WHERE A_PERMISSION = ?;deleteUser3=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;getGroupNewStatement=true;deleteUser2=DELETE FROM groupmembers WHERE GM_MEMBER = ?;deleteUser1=DELETE FROM users WHERE U_NAME = ?;getAcls=SELECT A_NAME, A_PRINCIPAL, A_PERMISSION FROM aclentries ORDER BY A_NAME, A_PRINCIPAL;getUsers=SELECT U_NAME, U_PASSWORD FROM users;getGroups=SELECT GM_GROUP, GM_MEMBER FROM groupmembers;getPermissions=SELECT DISTINCT A_PERMISSION FROM aclentries;getAclEntries=SELECT A_NAME, A_PRINCIPAL, A_PERMISSION FROM aclentries WHERE A_NAME = ? ORDER BY A_PRINCIPAL;newUser=INSERT INTO users VALUES ( ? , ? );removeGroupMember=DELETE FROM groupmembers WHERE GM_GROUP = ? AND GM_MEMBER = ?"/>
    <StartupClass ClassName="examples.rmi_iiop.hello.HelloImpl"
    FailureIsFatal="false" Name="hello_iiop"/>
    <JDBCConnectionPool CapacityIncrement="1"
    DriverName="COM.cloudscape.core.JDBCDriver" InitialCapacity="1"
    MaxCapacity="2" Name="demoPool"
    Properties="user=none;password=none;server=none"
    RefreshMinutes="0" ShrinkPeriodMinutes="15"
    ShrinkingEnabled="true" Targets="examplesServer"
    TestConnectionsOnRelease="false"
    TestConnectionsOnReserve="false" URL="jdbc:cloudscape:demo"/>
    <Application Deployed="true" Name="ejb_basic_containerManaged" Path=".\config\examples\applications">
    <EJBComponent Name="ejb_basic_containerManaged"
    Targets="examplesServer" URI="ejb_basic_containerManaged.jar"/>
    </Application>
    <StartupClass ClassName="examples.rmi.hello.HelloImpl"
    FailureIsFatal="false" Name="hello" Targets="examplesServer"/>
    <StartupClass ClassName="examples.rmi.stock.StockServer"
    FailureIsFatal="false" Name="stock"/>
    <LDAPRealm AuthProtocol="simple" Credential="MyLDAPCredential"
    GroupDN="o=Microsoft, ou=Groups" GroupIsContext="true"
    GroupNameAttribute="cn" GroupUsernameAttribute="memberObject"
    LDAPURL="ldap://ldapserver:389"
    Name="defaultLDAPRealmForMicrosoftSiteServer"
    Notes="This is provided as an example. Before enabling this Realm, you must edit the configuration parameters as appropriate for your environment."
    Principal="cn=ldapadmin" UserAuthentication="local"
    UserDN="o=Microsoft, ou=Members" UserNameAttribute="cn" UserPasswordAttribute="userpassword"/>
    <Server AcceptBacklog="50" AdministrationPort="0" ClusterWeight="1"
    ConsoleInputEnabled="false" DGCIdlePeriodsUntilTimeout="2"
    DefaultProtocol="t3" DefaultSecureProtocol="t3s"
    HttpdEnabled="true" JavaCompiler="d:\bea\jdk130/bin/javac"
    ListenPort="7001" Name="examplesServer" NativeIOEnabled="true"
    SocketReaderTimeoutMaxMillis="10"
    TransactionLogFilePrefix="config/examples/logs/"
    TunnelingClientPingSecs="45" TunnelingClientTimeoutSecs="40" XMLRegistry="examplesXMLRegistry">
    <KernelDebug Name="examplesServer"/>
    <ServerDebug Name="examplesServer"/>
    <SSL Enabled="true" ListenPort="7002" Name="examplesServer"
    PeerValidationEnforced="0"
    ServerCertificateChainFileName="./config/examples/ca.pem"
    ServerCertificateFileName="./config/examples/democert.pem"
    ServerKeyFileName="./config/examples/demokey.pem" TrustedCAFileName="./config/examples/ca.pem"/>
    <WebServer DefaultWebApp="DefaultWebApp_examplesServer"
    LogFileName="./config/examples/logs/access.log"
    LoggingEnabled="true" Name="examplesServer"/>
    <Log FileName="./config/examples/logs/weblogic.log" Name="examplesServer"/>
    </Server>
    <PasswordPolicy Name="wl_default_password_policy"/>
    <JMSConnectionFactory JNDIName="jms.connection.traderFactory" Name="exampleTrader"/>
    <StartupClass ClassName="examples.security.acl.FrobImpl"
    FailureIsFatal="false" Name="frob" Targets="examplesServer"/>
    <JDBCDataSource JNDIName="examples-dataSource-demoPool"
    Name="examples-dataSource-demoPool" PoolName="demoPool" Targets="examplesServer"/>
    <JDBCTxDataSource JNDIName="myDataSource" Name="myDataSource" PoolName="oraclePool"/>
    <StartupClass
    Arguments="connectionFactory=weblogic.examples.jms.TopicConnectionFactory,topic=weblogic.examples.jms.exampleTopic"
    ClassName="examples.jms.startup.ServerReceive"
    FailureIsFatal="false" Name="serverReceive"/>
    <Application Deployed="true" Name="ejb_basic_beanManaged" Path=".\config\examples\applications">
    <EJBComponent Name="ejb_basic_beanManaged"
    Targets="examplesServer" URI="ejb_basic_beanManaged.jar"/>
    </Application>
    <RDBMSRealm DatabaseDriver="weblogic.jdbc.oci.Driver"
    DatabasePassword="tiger"
    DatabaseURL="jdbc:weblogic:oracle:MyOracleServerName"
    DatabaseUserName="scott" Name="defaultRDBMSRealmForOracle"
    Notes="This is provided as an example and is designed to work with the schema created for the examples.security.rdbmsrealm example. To enable this RDBMSRealm, you must first create the database tables and edit the configuration parameters as appropriate for your environment."
    RealmClassName="examples.security.rdbmsrealm.RDBMSRealm" SchemaProperties="getGroupMembers=SELECT GM_GROUP, GM_MEMBER from groupmembers WHERE GM_GROUP = ?;deleteGroup2=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;deleteGroup1=DELETE FROM groupmembers WHERE GM_GROUP = ?;addGroupMember=INSERT INTO groupmembers VALUES ( ? , ? );getUser=SELECT U_NAME, U_PASSWORD FROM users WHERE U_NAME = ?;getPermission=SELECT DISTINCT A_PERMISSION FROM aclentries WHERE A_PERMISSION = ?;deleteUser3=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;getGroupNewStatement=false;deleteUser2=DELETE FROM groupmembers WHERE GM_MEMBER = ?;deleteUser1=DELETE FROM users WHERE U_NAME = ?;getAcls=SELECT A_NAME, A_PRINCIPAL, A_PERMISSION FROM aclentries ORDER BY A_NAME, A_PRINCIPAL;getUsers=SELECT U_NAME, U_PASSWORD FROM users;getGroups=SELECT GM_GROUP, GM_MEMBER FROM groupmembers;getPermissions=SELECT DISTINCT A_PERMISSION FROM aclentries;getAclEntries=SELECT A_NAME, A_PRINCIPAL, A_PERMISSION FROM aclentries WHERE A_NAME = ? ORDER BY A_PRINCIPAL;newUser=INSERT INTO users VALUES ( ? , ? );removeGroupMember=DELETE FROM groupmembers WHERE GM_GROUP = ? AND GM_MEMBER = ?"/>
    <!--RDBMSRealm DatabaseDriver="COM.cloudscape.core.JDBCDriver"
    DatabaseURL="jdbc:cloudscape:demo;create=true;autocommit=false"
    Name="defaultRDBMSRealmForCloudscape"
    RealmClassName="examples.security.rdbmsrealm.RDBMSRealm" SchemaProperties="getGroupMembers=SELECT GM_GROUP, GM_MEMBER from groupmembers WHERE GM_GROUP = ?;deleteGroup2=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;deleteGroup1=DELETE FROM groupmembers WHERE GM_GROUP = ?;addGroupMember=INSERT INTO groupmembers VALUES ( ? , ? );getUser=SELECT U_NAME, U_PASSWORD FROM users WHERE U_NAME = ?;getPermission=SELECT DISTINCT A_PERMISSION FROM aclentries WHERE A_PERMISSION = ?;deleteUser3=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;getGroupNewStatement=true;deleteUser2=DELETE FROM groupmembers WHERE GM_MEMBER = ?;deleteUser1=DELETE FROM users WHERE U_NAME = ?;getAcls=SELECT A_NAME, A_PRINCIPAL, A_PERMISSION FROM aclentries ORDER BY A_NAME, A_PRINCIPAL;getUsers=SELECT U_NAME, U_PASSWORD FROM users;getGroups=SELECT GM_GROUP, GM_MEMBER FROM groupmembers;getPermissions=SELECT DISTINCT A_PERMISSION FROM aclentries;getAclEntries=SELECT A_NAME, A_PRINCIPAL, A_PERMISSION FROM aclentries WHERE A_NAME = ? ORDER BY A_PRINCIPAL;newUser=INSERT INTO users VALUES ( ? , ? );removeGroupMember=DELETE FROM groupmembers WHERE GM_GROUP = ? AND GM_MEMBER = ?"/-->
         <RDBMSRealm Name="defaultRDBMSRealmForCloudscape" RealmClassName="security.rdbmsrealm.RDBMSRealm" DatabaseDriver="COM.cloudscape.core.JDBCDriver"
              DatabaseURL="jdbc:cloudscape:demo;create=true;autocommit=false"
              DatabaseUserName=""
              DatabasePassword=""
              SchemaProperties="getGroupNewStatement=true;getUser=SELECT U_NAME,U_PASSWORD FROM users WHERE U_NAME = ?;getGroupMembers=SELECT GM_GROUP,GM_MEMBER from groupmembers WHERE GM_GROUP = ?;getAclEntries=SELECT A_NAME,A_PRINCIPAL, A_PERMISSION FROM aclentries WHERE A_NAME = ? ORDER BY A_PRINCIPAL;getUsers=SELECT U_NAME, U_PASSWORD FROM users;getGroups=SELECT GM_GROUP, GM_MEMBER FROM groupmembers;getAcls=SELECT A_NAME, A_PRINCIPAL,A_PERMISSION FROM aclentries ORDER BY A_NAME,A_PRINCIPAL;getPermissions=SELECT DISTINCT A_PERMISSION FROM aclentries;getPermission=SELECT DISTINCT A_PERMISSION FROM aclentries WHERE A_PERMISSION = ?;newUser=INSERT INTO users VALUES ( ? ,? );addGroupMember=INSERT INTO groupmembers VALUES ( ? ,? );removeGroupMember=DELETE FROM groupmembers WHERE GM_GROUP = ? AND GM_MEMBER = ?;deleteUser1=DELETE FROM users WHERE U_NAME = ?;deleteUser2=DELETE FROM groupmembers WHERE GM_MEMBER = ?;deleteUser3=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;deleteGroup1=DELETE FROM groupmembers WHERE GM_GROUP = ?;deleteGroup2=DELETE FROM aclentries WHERE A_PRINCIPAL = ?" />
    <JDBCTxDataSource JNDIName="examples-dataSource-demoXAPool"
    Name="examples-dataSource-demoXAPool" PoolName="demoXAPool" Targets="examplesServer"/>
    <WLECConnectionPool ApplicationPassword="wlepassword"
    FailoverAddresses="//wlehost:2468" MaximumPoolSize="3"
    MinimumPoolSize="2" Name="Univpool"
    PrimaryAddresses="//wlehost:2468" UserName="wleuser"
    UserRole="developer" WLEDomain="university"/>
    <RDBMSRealm DatabaseDriver="weblogic.jdbc.mssqlserver4.Driver"
    DatabaseURL="jdbc:weblogic:sybase:database@MyDatabaseHost:MyDatabasePort"
    DatabaseUserName="sa"
    Name="defaultRDBMSRealmForMSSQLServerType4"
    Notes="This is provided as an example and is designed to work with the schema created for the examples.security.rdbmsrealm example. To enable this RDBMSRealm, you must first create the database tables and edit the configuration parameters as appropriate for your environment."
    RealmClassName="examples.security.rdbmsrealm.RDBMSRealm" SchemaProperties="getGroupMembers=SELECT GM_GROUP, GM_MEMBER from groupmembers WHERE GM_GROUP = ?;deleteGroup2=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;deleteGroup1=DELETE FROM groupmembers WHERE GM_GROUP = ?;addGroupMember=INSERT INTO groupmembers VALUES ( ? , ? );getUser=SELECT U_NAME, U_PASSWORD FROM users WHERE U_NAME = ?;getPermission=SELECT DISTINCT A_PERMISSION FROM aclentries WHERE A_PERMISSION = ?;deleteUser3=DELETE FROM aclentries WHERE A_PRINCIPAL = ?;getGroupNewStatement=true;deleteUser2=DELETE FROM groupmembers WHERE GM_MEMBER = ?;deleteUser1=DELETE FROM users WHERE U_NAME = ?;getAcls=SELECT A_NAME, A_PRINCIPAL, A_PERMISSION FROM aclentries ORDER BY A_NAME, A_PRINCIPAL;getUsers=SELECT U_NAME, U_PASSWORD FROM users;getGroups=SELECT GM_GROUP, GM_MEMBER FROM groupmembers;getPermissions=SELECT DISTINCT A_PERMISSION FROM aclentries;getAclEntries=SELECT A_NAME, A_PRINCIPAL, A_PERMISSION FROM aclentries WHERE A_NAME = ? ORDER BY A_PRINCIPAL;newUser=INSERT INTO users VALUES ( ? , ? );removeGroupMember=DELETE FROM groupmembers WHERE GM_GROUP = ? AND GM_MEMBER = ?"/>
    <StartupClass ClassName="examples.cluster.rmi.HelloClusterImpl"
    FailureIsFatal="false" Name="hello_cluster"/>
    <Application Name="wl_management_internal1" Path=".\config\tmp">
    <WebAppComponent Name="wl_management_internal1"
    Targets="examplesServer" URI="wl_management_internal1.war"/>
    </Application>
    <ApplicationManager Name="examples"/>
    <Application Deployed="true" Name="examplesWebApp" Path=".\config\examples\applications">
    <WebAppComponent Name="examplesWebApp" Targets="examplesServer" URI="examplesWebApp"/>
    </Application>
    <Application Deployed="true" Name="ejb_basic_statelessSession" Path=".\config\examples\applications">
    <EJBComponent Name="ejb_basic_statelessSession"
    Targets="examplesServer" URI="ejb_basic_statelessSession.jar"/>
    </Application>
    <WLECConnectionPool ApplicationPassword="wlepassword"
    FailoverAddresses="//wlehost:2468" MaximumPoolSize="3"
    MinimumPoolSize="2" Name="StatelessSessionPool"
    PrimaryAddresses="//wlehost:2468" UserName="wleuser"
    UserRole="developer" WLEDomain="ejbsample"/>
    <!--CachingRealm BasicRealm="defaultRDBMSRealmForCloudscape" Name="defaultCachingRealm"/-->
         <CachingRealm Name="defaultCachingRealm" BasicRealm="defaultRDBMSRealmForCloudscape"/>
    <JMSServer Name="examplesJMSServer" Store="exampleJDBCStore" Targets="examplesServer">
    <JMSQueue JNDIName="weblogic.examples.jms.exampleQueue" Name="exampleQueue"/>
    <JMSTopic JNDIName="quotes" Name="quotes"/>
    <JMSTopic JNDIName="weblogic.examples.jms.exampleTopic" Name="exampleTopic"/>
    </JMSServer>
    <StartupClass ClassName="examples.rmi.multihello.HelloImpl"
    FailureIsFatal="false" Name="multihello"/>
    <JMSJDBCStore ConnectionPool="demoPool" Name="exampleJDBCStore"/>
    <Security GuestDisabled="false" Name="examples"
    PasswordPolicy="wl_default_password_policy" Realm="myRealm" SystemUser="system"/>
    <StartupClass
    Arguments="connectionFactory=weblogic.examples.jms.TopicConnectionFactory,topic=weblogic.examples.jms.exampleTopic"
    ClassName="examples.jms.startup.PoolReceive"
    FailureIsFatal="false" Name="poolReceive"/>
    <Application Deployed="true" Name="xml_xslt_content" Path=".\config\examples\applications">
    <EJBComponent Name="xml_xslt_content" Targets="examplesServer" URI="xml_xslt_content.jar"/>
    </Application>
    <!--FileRealm Name="myFileRealm"/-->
    <Application Deployed="true" Name="ejb_subclass" Path=".\config\examples\applications">
    <EJBComponent Name="ejb_subclass" Targets="examplesServer" URI="ejb_subclass.jar"/>
    </Application>
    <Application Deployed="true" Name="security-1" Path=".\config\examples\applications">
    <WebAppComponent Name="security" Targets="examplesServer" URI="security"/>
    </Application>
    <XMLRegistry Name="examplesXMLRegistry">
    <XMLRegistryEntry EntityPath="stocktrade.dtd" Name="stocktrade"
    PublicId="examples.xml.http-stocktrade" RootElementTag="stocktrade"/>
    </XMLRegistry>
    <StartupClass ClassName="examples.security.acl.FrobImpl"
    FailureIsFatal="false" Name="FrobImpl"/>
    <Application Name="security" Path="d:\bea\wlserver6.0\samples\examples\webapp">
    <WebAppComponent Name="security" URI="security"/>
    </Application>
    </Domain>
    config.xml
    Content-Type:
    text/xml
    Content-Encoding:
    quoted-printable

  • Cloudscape DJBC Driver Error

    I just started the DJBC tutorials and dowloaded the Report4J java file compiled it and when I tried to run the class I received the following error
    C:\Documents and Settings\benjamca\My Documents\code\java\misc>java -classpath C
    :\j2sdkee1.3\lib\system\cloudscape.jar;. Report4J
    java.lang.ClassNotFoundException: RmiJdbc.RJDriver
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at COM.cloudscape.core.RmiJdbcDriver.<clinit>(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at Report4J.main(Report4J.java:26)
    problems connecting to jdbc:cloudscape:rmi:jGuru:
    No suitable driver
    What is the next step?

    After adding the the jar files to my classpath I get the following error:
    The cloudscape server is running.
    C:\Documents and Settings\benjamca\My Documents\code\java\misc>java -classpath C
    :\j2sdkee1.3\lib\system\cloudscape.jar;C:\j2sdkee1.3\lib\cloudscape\RmiJdbc.jar;
    . Report4J
    problems connecting to jdbc:rmi:jdbc:cloudscape:jGuru;create=true:
    Connection refused to host: BENJAMCA3; nested exception is:
    java.net.ConnectException: Connection refused: connect

  • Cloudscape in weblogic

              Hi,
              I am trying to run a sample application using cloudscape in weblogic. I am
              trying to create some stored procedures in cloudscape. I looked in the manual
              and was unable to find it. I have basicall two questions.
              1. How is cloudscape started in weblogic.
              2. How do you include the classes that you created in the cloudscape database.
              (I did try including in the jars of cloudscape but was not successful)
              thanks,
              babu
              

    It looks like the server is unable to locate the cloudscape JDBC driver.
    You should make sure that it is in your class path.
    Michael Girdley
    BEA Systems Inc
    "Josef Vavra" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi, I've just installed WebLogic5.1 on WindowsNT. Without problems. Now Iwant to create a connection to the sample cloudscape DB. I uncommented the
    appropriate block in weblogic.properties and then tried in wlconsole 'create
    connection pool'. I've got this error:
    ---------------begin error---------------------------
    Property change error for property "CreatePool".
    Failed to create pool "demoPool": weblogic.common.ResourceException:weblogic.common.ResourceException:
    Could not create pool connection. The DBMS driver exception was:
    DriverManager failed with No suitable driver while trying to create
    a Connection for the demoPool pool. This indicates that the URL,
    jdbc:cloudscape:demo
    is not supported by the Driver
    COM.cloudscape.core.JDBCDriver
    The following is a list of currently loaded JDBC Drivers:
    weblogic.jdbc.pool.Driver
    weblogic.jdbc20.jts.Driver
    weblogic.jdbc20.pool.Driver
    ---------------end error-------------------------------------
    Can anyone tell me the next step(s) I have to do?
    I'm sorry for this stupid question, but I'm totally new to weblogic andlost a bit among the helps.
    >
    Thanx very much
    Josef

Maybe you are looking for

  • How do I reinstall my Creative Suite 5 Design Premium without getting an error message?

    I recently uninstalled Adobe Creative Suite 5 Design Premium from my old computer (Design Premium CS5 & Adobe Acrobat 9 Pro components) so that I can put it on my new computer (Windows 7 Home Premium). At first I forgot to uninstall Acrobat and tried

  • Opening a Windows iTunes library with Mac iTunes

    I have my iTunes folder on a shared drive on my network. This was created in Windows XP using that version of iTunes. I have a Macbook Pro and have access to the shared drive. I would like to use that same library so that I can preserve my ratings an

  • How can I access a folder on my iMac?

    Hi All, I have an iMac (late 2010) and a new MB Air (late 2011).  I have a document folder on my iMac that I would like to either a) be able to remotely access and manipulate from my Air, preferably not by just sharing screens or b) sync the folder o

  • Uploading vendor balances

    Hi all I want to upload vendor balances but there are some deductions against that vendor.( e.g admin. charges, rent). E.g. If total material is of 100 Rs.and client is to pay 100 Rs. to vendor but client pays only 80 Rs. and deduct 20 Rs. as deposit

  • [JSP/Newbie]: howto write my own jsp:include tag?

    Hi folks, I'm trying to write a replacement tag for <jsp:include> (which shall later decide upon its context what to include..), i.e. I want to include another JSP from within a tag. Unfortunately right now my best bet does not allow to control the p