Uploaded image for project: 'JBoss Transaction Manager'
  1. JBoss Transaction Manager
  2. JBTM-3000

Support for Oracle Wallet JDBC connections

    XMLWordPrintable

Details

    • Feature Request
    • Resolution: Done
    • Optional
    • None
    • None
    • None
    • None

    Description

      In the latest snapshot build, Narayana will replace a null username and/or password with empty strings (""). The Oracle JDBC driver, however, supports passing in null username and password, in order to make use of Oracle Wallet.

      This means that Narayana does not support Oracle Wallet JDBC connections.

      This replacement is being done in com.arjuna.ats.internal.jdbc.ConnectionImple.

                  user = info.getProperty(TransactionalDriver.userName, "");
                  passwd = info.getProperty(TransactionalDriver.password, "");
      

      and in com.arjuna.ats.internal.jdbc.ConnectionManager

              String user = info.getProperty(TransactionalDriver.userName, "");
              String passwd = info.getProperty(TransactionalDriver.password, "");
      

      I believe it should be okay to just remove default value so that the client's input is always taken as-is?

      Attachments

        Activity

          People

            Unassigned Unassigned
            dshaver_jira Daniel Shaver (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: