1 Reply Latest reply on May 4, 2004 2:13 PM by kabirkhan

    No Attribute found with name: JndiName

    kenan

      Hi,

      When I try to connect JBoss (3.2.3) to MySQL (4.0) the following error occurs :( :

      --------------------------------------------------------------------------------
      17:01:35,815 INFO [MainDeployer] Starting deployment of package: file:/D:/jboss/server/default/deploy/mysql-service.xml
      17:01:35,845 INFO [ServiceConfigurator] Problem configuring service jboss.jca:service=LocalTxDS,name=MySqlDS
      org.jboss.deployment.DeploymentException: No Attribute found with name: JndiName
      --------------------------------------------------------------------------------

      mysql-service.xml file:

      -------------------------------------------------------------------------------
      <?xml version="1.0" encoding="UTF-8"?>

      <!-- ========================================= -->
      <!-- -->
      <!-- JBoss Server Configuration -->
      <!-- -->
      <!-- ========================================= -->



      <!-- ======================================== -->
      <!-- New ConnectionManager setup for mysql using 2.0.11 driver -->
      <!-- Build jmx-api (build/build.sh all) and view for config documentation -->
      <!-- ======================================== -->




      <!-- Include a login module configuration named MySqlDbRealm.
      Update your login-conf.xml, here is an example for a
      ConfiguredIdentityLoginModule:

      <application-policy name = "MySqlDbRealm">

      <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule" flag = "required">
      <module-option name = "principal">yourprincipal</module-option>
      <module-option name = "userName">yourusername</module-option>
      <module-option name = "password">yourpassword</module-option>
      <module-option name = "managedConnectionFactoryName">jboss.jca:service=LocalTxCM,name=MySqlDS</module-option>
      </login-module>

      </application-policy>

      NOTE: the application-policy name attribute must match SecurityDomainJndiName, and the
      module-option name = "managedConnectionFactoryName"
      must match the object name of the ConnectionManager you are configuring here.
      -->
      <!--uncomment out this line if you are using the MySqlDbRealm above
      MySqlDbRealm
      -->

      <depends optional-attribute-name="ManagedConnectionFactoryName">
      <!--embedded mbean-->


      <!--
      MySqlDS
      -->
      com/rolemodellers/jdbc/RMDB



      <config-property name="ConnectionURL" type="java.lang.String">jdbc:mysql://localhost:3306/radrunner</config-property>
      <!--
      <config-property name="DriverClass" type="java.lang.String">org.gjt.mm.mysql.Driver</config-property>
      -->
      <config-property name="DriverClass" type="java.lang.String">com.mysql.jdbc.Driver</config-property>
      <!--set these only if you want only default logins, not through JAAS -->
      <config-property name="UserName" type="java.lang.String"></config-property>
      <config-property name="Password" type="java.lang.String"></config-property>




      <!--Below here are advanced properties -->
      <!--hack-->
      <depends optional-attribute-name="OldRarDeployment">jboss.jca:service=RARDeployment,name=JBoss LocalTransaction JDBC Wrapper




      <depends optional-attribute-name="ManagedConnectionPool">
      <!--embedded mbean-->


      0
      50
      5000
      15
      <!--criteria indicates if Subject (from security domain) or app supplied
      parameters (such as from getConnection(user, pw)) are used to distinguish
      connections in the pool. Choices are
      ByContainerAndApplication (use both),
      ByContainer (use Subject),
      ByApplication (use app supplied params only),
      ByNothing (all connections are equivalent, usually if adapter supports
      reauthentication)-->
      ByContainer



      <depends optional-attribute-name="CachedConnectionManager">jboss.jca:service=CachedConnectionManager

      <depends optional-attribute-name="JaasSecurityManagerService">jboss.security:name=JaasSecurityManager

      java:/TransactionManager
      <!--make the rar deploy! hack till better deployment-->
      jboss.jca:service=RARDeployer



      -----------------------------------------------------------------------------------

      I have copied the mysql-connector-java-3.0.11-stable-bin.jar file to D:\jboss\server\default\lib, set the JAVA_HOME and JBOSS_HOME variable.

      Does anyone has a solution for this problem?

      Many thanks,

      Kenan