1 Reply Latest reply on Aug 28, 2002 11:35 PM by davidjencks

    BUG - JBoss4.0Alpha

    sonofseven

      class
      org.jboss.resource.adapter.jdbc.xa.XAManagedConnectionFactory contains wrong method names

      has:
      /**
      * Get the XaDataSourceClass value.
      * @return the XaDataSourceClass value.
      */
      public String getXaDataSourceClass()
      {
      return xaDataSourceClass;
      }

      /**
      * Set the XaDataSourceClass value.
      * @param newXaDataSourceClass The new XaDataSourceClass value.
      */
      public void setXaDataSourceClass(String xaDataSourceClass)
      {
      this.xaDataSourceClass = xaDataSourceClass;
      }

      and should be:
      /**
      * Get the XaDataSourceClass value.
      * @return the XaDataSourceClass value.
      */
      public String getXADataSourceClass()
      {
      return xaDataSourceClass;
      }

      /**
      * Set the XaDataSourceClass value.
      * @param newXaDataSourceClass The new XaDataSourceClass value.
      */
      public void setXADataSourceClass(String xaDataSourceClass)
      {
      this.xaDataSourceClass = xaDataSourceClass;
      }

      I found it when trying to deploy *-ds.xml file with xa-datasource element.

      P.S. What's the best place to point out bugs?

      Thanks,

        • 1. Re: BUG - JBoss4.0Alpha
          davidjencks

          Either the closest forum or the bug list at sourceforge. For this one, the datasource config or jca forums would be good. I rarely look at this one.

          Thanks for trying this wrapper out. Did you get any farther after fixing this? (please reply on datasource forum...)