8 Replies Latest reply on Mar 4, 2016 4:54 AM by jaysensharma

    Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address

    neethal

      Hi,

       

      I get the above subjected error when i am trying to look for the pool resources used by app using CLI.

       

      I use the below command

       

      /subsystem=datasources/xa-datasource="java:/ATGProductionDS":read-resource(include-runtime=true

      output:

       

      Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address [

          ("profile" => "full"),

          ("subsystem" => "datasources"),

          ("xa-datasource" => "java:/ATGProductionDS")

      ]"

       

      Any idea how to solve this. I am using jboss-eap-6.1.0.

        • 1. Re: Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address
          jaysensharma

          Is your DataSource name  "ATGProductionDS"   or "java:ATGProductionDS" ?   I guess you are trying to use the JNDI name instead of DataSource name to query.

           

          Can you try the following:  (for XA-DataSource)

          /profile=full/subsystem=datasources/xa-datasource=ATGProductionDS:read-resource(include-runtime=true)
          
          

           

          Additionally In Domain mode the resources are actually deployed to the individual hosts (profile is just the blueprint) hence to get the actual runtime details you should query the individual servers like:

          /host=slave/server=server-one/subsystem=datasources/xa-datasource=ATGProductonDS:read-resource(include-runtime=true)
          

           

           

           

          Just a note: Please double check that your DataSource is XA or Non-XA because accordingly your command will change

          (for Non-XA DataSource)

          /profile=full/subsystem=datasources/datasource=ATGProductonDS:read-resource(include-runtime=true)
          AND
          /host=slave/server=server-one/subsystem=datasources/datasource=ATGProductonDS:read-resource(include-runtime=true)
          

           

          Regards

          Jay SenSharma

          • 2. Re: Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address
            neethal

            Hello,

             

            yes we are using xa-datasource.

             

            i tried these two, but no luck

             

            [standalone@localhost:9999 /] /profile=full/subsystem=datasources/xa-datasource="java:/ATGProductionDS":read-resource(include-runtime=true)

            Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address [

                ("profile" => "full"),

                ("subsystem" => "datasources"),

                ("xa-datasource" => "java:/ATGProductionDS")

            ]"

             

             

            [standalone@localhost:9999 /]  /profile=full/subsystem=datasources/xa-datasource=ATGProductionDS:read-resource(include-runtime=true)

            Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address [

                ("profile" => "full"),

                ("subsystem" => "datasources"),

                ("xa-datasource" => "ATGProductionDS")

            ]"

            • 3. Re: Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address
              jaysensharma

              You are running in Standalone mode. (not in domain mode)

               

              Hence change the command to the following:

               

              [standalone@localhost:9999 /]  /subsystem=datasources/xa-datasource=ATGProductionDS:read-resource(include-runtime=true)



              Regards

              Jay SenSharma

              • 4. Re: Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address
                neethal

                initially i was trying that only.. its the same..

                 

                [standalone@localhost:9999 /] /subsystem=datasources/xa-datasource=ATGProductionDS:read-resource(include-runtime=true)

                Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address [

                    ("subsystem" => "datasources"),

                    ("xa-datasource" => "ATGProductionDS")

                ]"

                • 5. Re: Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address
                  jaysensharma

                  You said "initially i was trying that only.. its the same.."    

                  But that does not look accurate/correct because the output that you posted in the very first update shows the output as following  (notice the part   ("profile" => "full"))  that says that you were using/trying a command with /profile=full    that time:

                   

                  Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address [

                     ("profile" => "full"),

                      ("subsystem" => "datasources"),

                      ("xa-datasource" => "java:/ATGProductionDS")

                  ]"

                   

                   

                  Information Needed:

                  1. Can you please share/attach your standalone.xml  file  OR what ever config file that you are using to start your JBoss?

                  2. Also let us know exactly how you are starting your JBoss.

                  3. How you are starting the jboss-cli   (this is just to check if you are connected to the correct JBoss Instance or a different JBoss instance)

                   

                  Regards

                  Jay SenSharma

                  • 6. Re: Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address
                    neethal

                    hi,

                     

                    for start -

                    ./int_store.sh > /dev/null 2>&1 & . int_store is one application like we have many. we have renamed standalone.sh to int_store.sh. application is working fine,, no issues with that. just having trouble with cli .

                     

                    i use this to connect to cli

                     

                    ./jboss-cli.sh --connect

                    [standalone@localhost:9999 /]

                     

                    config file -

                     

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

                     

                     

                    <server xmlns="urn:jboss:domain:1.4">

                     

                     

                        <extensions>

                            <extension module="org.jboss.as.clustering.infinispan"/>

                            <extension module="org.jboss.as.connector"/>

                            <extension module="org.jboss.as.deployment-scanner"/>

                            <extension module="org.jboss.as.ee"/>

                            <extension module="org.jboss.as.ejb3"/>

                            <extension module="org.jboss.as.jaxrs"/>

                            <extension module="org.jboss.as.jdr"/>

                            <extension module="org.jboss.as.jmx"/>

                            <extension module="org.jboss.as.jpa"/>

                            <extension module="org.jboss.as.jsf"/>

                            <extension module="org.jboss.as.logging"/>

                            <extension module="org.jboss.as.mail"/>

                            <extension module="org.jboss.as.naming"/>

                            <extension module="org.jboss.as.pojo"/>

                            <extension module="org.jboss.as.remoting"/>

                            <extension module="org.jboss.as.sar"/>

                            <extension module="org.jboss.as.security"/>

                            <extension module="org.jboss.as.threads"/>

                            <extension module="org.jboss.as.transactions"/>

                            <extension module="org.jboss.as.web"/>

                            <extension module="org.jboss.as.webservices"/>

                            <extension module="org.jboss.as.weld"/>

                        </extensions>

                     

                     

                     

                     

                        <management>

                            <security-realms>

                                <security-realm name="ManagementRealm">

                                    <authentication>

                                        <local default-user="$local"/>

                                        <properties path="mgmt-users.properties" relative-to="jboss.server.config.dir"/>

                                    </authentication>

                                </security-realm>

                                <security-realm name="ApplicationRealm">

                                    <authentication>

                                        <local default-user="$local" allowed-users="*"/>

                                        <properties path="application-users.properties" relative-to="jboss.server.config.dir"/>

                                    </authentication>

                                    <authorization>

                                        <properties path="application-roles.properties" relative-to="jboss.server.config.dir"/>

                                    </authorization>

                                </security-realm>

                            </security-realms>

                            <management-interfaces>

                                <native-interface security-realm="ManagementRealm">

                                    <socket-binding native="management-native"/>

                                </native-interface>

                                <http-interface security-realm="ManagementRealm">

                                    <socket-binding http="management-http"/>

                                </http-interface>

                            </management-interfaces>

                        </management>

                     

                     

                        <profile>

                            <subsystem xmlns="urn:jboss:domain:logging:1.2">

                                <console-handler name="CONSOLE">

                                    <level name="INFO"/>

                                    <formatter>

                                        <pattern-formatter pattern="%K{level}%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>

                                    </formatter>

                                </console-handler>

                                <periodic-rotating-file-handler name="FILE" autoflush="true">

                                    <formatter>

                                        <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>

                                    </formatter>

                                    <file relative-to="jboss.server.log.dir" path="int_store.log"/>

                                    <suffix value=".yyyy-MM-dd"/>

                                    <append value="true"/>

                                </periodic-rotating-file-handler>

                                <logger category="com.arjuna">

                                    <level name="WARN"/>

                                </logger>

                                <logger category="org.apache.tomcat.util.modeler">

                                    <level name="WARN"/>

                                </logger>

                                <logger category="org.jboss.as.config">

                                    <level name="DEBUG"/>

                                </logger>

                                <logger category="sun.rmi">

                                    <level name="WARN"/>

                                </logger>

                                <logger category="jacorb">

                                    <level name="WARN"/>

                                </logger>

                                <logger category="jacorb.config">

                                    <level name="ERROR"/>

                                </logger>

                                <root-logger>

                                    <level name="INFO"/>

                                    <handlers>

                                        <handler name="CONSOLE"/>

                                        <handler name="FILE"/>

                                    </handlers>

                                </root-logger>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:datasources:1.1">

                                <datasources>

                                    <xa-datasource jndi-name="java:/ATGProductionDS" pool-name="ATGProductionDS" enabled="true" use-java-context="true">

                                        <xa-datasource-property name="URL">

                                            jdbc:oracle:thin:@schbrdod1358.ckk4bcd72kh4.us-east-1.rds.amazonaws.com:1521:ITBECOM

                                        </xa-datasource-property>

                                        <xa-datasource-property name="User">

                                            CORE

                                        </xa-datasource-property>

                                        <xa-datasource-property name="Password">

                                            CORE

                                        </xa-datasource-property>

                                        <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>

                                        <driver>ojdbc6.jar</driver>

                                        <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>

                                        <xa-pool>

                                            <min-pool-size>5</min-pool-size>

                                            <max-pool-size>100</max-pool-size>

                                            <is-same-rm-override>false</is-same-rm-override>

                                            <no-tx-separate-pools>true</no-tx-separate-pools>

                                        </xa-pool>

                                        <security>

                                            <user-name>CORE</user-name>

                                            <password>CORE</password>

                                        </security>

                                        <validation>

                                            <exception-sorter class-name="org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter"/>

                                        </validation>

                                        <timeout>

                                            <blocking-timeout-millis>5000</blocking-timeout-millis>

                                            <idle-timeout-minutes>15</idle-timeout-minutes>

                                        </timeout>

                                    </xa-datasource>

                                    <xa-datasource jndi-name="java:/ATGAgentDS" pool-name="ATGAgentDS" enabled="true" use-java-context="true">

                                        <xa-datasource-property name="URL">

                                            jdbc:oracle:thin:@schbrdod1358.ckk4bcd72kh4.us-east-1.rds.amazonaws.com:1521:ITBECOM

                                        </xa-datasource-property>

                                        <xa-datasource-property name="User">

                                            AGENT

                                        </xa-datasource-property>

                                        <xa-datasource-property name="Password">

                                            AGENT

                                        </xa-datasource-property>

                                        <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>

                                        <driver>ojdbc6.jar</driver>

                                        <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>

                                        <xa-pool>

                                            <min-pool-size>5</min-pool-size>

                                            <max-pool-size>100</max-pool-size>

                                            <is-same-rm-override>false</is-same-rm-override>

                                            <no-tx-separate-pools>true</no-tx-separate-pools>

                                        </xa-pool>

                                        <security>

                                            <user-name>AGENT</user-name>

                                            <password>AGENT</password>

                                        </security>

                                        <validation>

                                            <exception-sorter class-name="org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter"/>

                                        </validation>

                                        <timeout>

                                            <blocking-timeout-millis>5000</blocking-timeout-millis>

                                            <idle-timeout-minutes>15</idle-timeout-minutes>

                                        </timeout>

                                    </xa-datasource>

                                    <xa-datasource jndi-name="java:/ATGSwitchingDS_B" pool-name="ATGSwitchingDS_B" enabled="true" use-java-context="true">

                                        <xa-datasource-property name="URL">

                                            jdbc:oracle:thin:@schbrdod1358.ckk4bcd72kh4.us-east-1.rds.amazonaws.com:1521:ITBECOM

                                        </xa-datasource-property>

                                        <xa-datasource-property name="User">

                                            CATB

                                        </xa-datasource-property>

                                        <xa-datasource-property name="Password">

                                            CATB

                                        </xa-datasource-property>

                                        <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>

                                        <driver>ojdbc6.jar</driver>

                                        <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>

                                        <xa-pool>

                                            <min-pool-size>5</min-pool-size>

                                            <max-pool-size>100</max-pool-size>

                                            <is-same-rm-override>false</is-same-rm-override>

                                            <no-tx-separate-pools>true</no-tx-separate-pools>

                                        </xa-pool>

                                        <security>

                                            <user-name>CATB</user-name>

                                            <password>CATB</password>

                                        </security>

                                        <validation>

                                            <exception-sorter class-name="org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter"/>

                                        </validation>

                                        <timeout>

                                            <blocking-timeout-millis>5000</blocking-timeout-millis>

                                            <idle-timeout-minutes>15</idle-timeout-minutes>

                                        </timeout>

                                    </xa-datasource>

                                    <xa-datasource jndi-name="java:/ATGSwitchingDS_A" pool-name="ATGSwitchingDS_A" enabled="true" use-java-context="true">

                                        <xa-datasource-property name="URL">

                                            jdbc:oracle:thin:@schbrdod1358.ckk4bcd72kh4.us-east-1.rds.amazonaws.com:1521:ITBECOM

                                        </xa-datasource-property>

                                        <xa-datasource-property name="User">

                                            CATA

                                        </xa-datasource-property>

                                        <xa-datasource-property name="Password">

                                            CATA

                                        </xa-datasource-property>

                                        <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>

                                        <driver>ojdbc6.jar</driver>

                                        <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>

                                        <xa-pool>

                                            <min-pool-size>5</min-pool-size>

                                            <max-pool-size>100</max-pool-size>

                                            <is-same-rm-override>false</is-same-rm-override>

                                            <no-tx-separate-pools>true</no-tx-separate-pools>

                                        </xa-pool>

                                        <security>

                                            <user-name>CATA</user-name>

                                            <password>CATA</password>

                                        </security>

                                        <validation>

                                            <exception-sorter class-name="org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter"/>

                                        </validation>

                                        <timeout>

                                            <blocking-timeout-millis>5000</blocking-timeout-millis>

                                            <idle-timeout-minutes>15</idle-timeout-minutes>

                                        </timeout>

                                    </xa-datasource>

                                    <xa-datasource jndi-name="java:/ATGPublishingDS" pool-name="ATGPublishingDS" enabled="true" use-java-context="true">

                                        <xa-datasource-property name="URL">

                                            jdbc:oracle:thin:@schbrdod1358.ckk4bcd72kh4.us-east-1.rds.amazonaws.com:1521:ITBECOM

                                        </xa-datasource-property>

                                        <xa-datasource-property name="User">

                                            PUB

                                        </xa-datasource-property>

                                        <xa-datasource-property name="Password">

                                            PUB

                                        </xa-datasource-property>

                                        <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>

                                        <driver>ojdbc6.jar</driver>

                                        <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>

                                        <xa-pool>

                                            <min-pool-size>5</min-pool-size>

                                            <max-pool-size>100</max-pool-size>

                                            <is-same-rm-override>false</is-same-rm-override>

                                            <no-tx-separate-pools>true</no-tx-separate-pools>

                                        </xa-pool>

                                        <security>

                                            <user-name>PUB</user-name>

                                            <password>PUB</password>

                                        </security>

                                        <validation>

                                            <exception-sorter class-name="org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter"/>

                                        </validation>

                                        <timeout>

                                            <blocking-timeout-millis>5000</blocking-timeout-millis>

                                            <idle-timeout-minutes>15</idle-timeout-minutes>

                                        </timeout>

                                    </xa-datasource>

                                    <xa-datasource jndi-name="java:/ATGProductionDS_PRV" pool-name="ATGProductionDS_PRV" enabled="true" use-java-context="true">

                                        <xa-datasource-property name="URL">

                                            jdbc:oracle:thin:@schbrdod1358.ckk4bcd72kh4.us-east-1.rds.amazonaws.com:1521:ITBECOM

                                        </xa-datasource-property>

                                        <xa-datasource-property name="User">

                                            COREP

                                        </xa-datasource-property>

                                        <xa-datasource-property name="Password">

                                            COREP

                                        </xa-datasource-property>

                                        <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>

                                        <driver>ojdbc6.jar</driver>

                                        <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>

                                        <xa-pool>

                                            <min-pool-size>5</min-pool-size>

                                            <max-pool-size>100</max-pool-size>

                                            <is-same-rm-override>false</is-same-rm-override>

                                            <no-tx-separate-pools>true</no-tx-separate-pools>

                                        </xa-pool>

                                        <security>

                                            <user-name>COREP</user-name>

                                            <password>COREP</password>

                                        </security>

                                        <validation>

                                            <exception-sorter class-name="org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter"/>

                                        </validation>

                                        <timeout>

                                            <blocking-timeout-millis>5000</blocking-timeout-millis>

                                            <idle-timeout-minutes>15</idle-timeout-minutes>

                                        </timeout>

                                    </xa-datasource>

                                    <xa-datasource jndi-name="java:/ATGSwitchingDS_B_PRV" pool-name="ATGSwitchingDS_B_PRV" enabled="true" use-java-context="true">

                                        <xa-datasource-property name="URL">

                                            jdbc:oracle:thin:@schbrdod1358.ckk4bcd72kh4.us-east-1.rds.amazonaws.com:1521:ITBECOM

                                        </xa-datasource-property>

                                        <xa-datasource-property name="User">

                                            CATBP

                                        </xa-datasource-property>

                                        <xa-datasource-property name="Password">

                                            CATBP

                                        </xa-datasource-property>

                                        <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>

                                        <driver>ojdbc6.jar</driver>

                                        <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>

                                        <xa-pool>

                                            <min-pool-size>5</min-pool-size>

                                            <max-pool-size>100</max-pool-size>

                                            <is-same-rm-override>false</is-same-rm-override>

                                            <no-tx-separate-pools>true</no-tx-separate-pools>

                                        </xa-pool>

                                        <security>

                                            <user-name>CATBP</user-name>

                                            <password>CATBP</password>

                                        </security>

                                        <validation>

                                            <exception-sorter class-name="org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter"/>

                                        </validation>

                                        <timeout>

                                            <blocking-timeout-millis>5000</blocking-timeout-millis>

                                            <idle-timeout-minutes>15</idle-timeout-minutes>

                                        </timeout>

                                    </xa-datasource>

                                    <xa-datasource jndi-name="java:/ATGSwitchingDS_A_PRV" pool-name="ATGSwitchingDS_A_PRV" enabled="true" use-java-context="true">

                                        <xa-datasource-property name="URL">

                                            jdbc:oracle:thin:@schbrdod1358.ckk4bcd72kh4.us-east-1.rds.amazonaws.com:1521:ITBECOM

                                        </xa-datasource-property>

                                        <xa-datasource-property name="User">

                                            CATAP

                                        </xa-datasource-property>

                                        <xa-datasource-property name="Password">

                                            CATAP

                                        </xa-datasource-property>

                                        <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>

                                        <driver>ojdbc6.jar</driver>

                                        <transaction-isolation>TRANSACTION_READ_COMMITTED</transaction-isolation>

                                        <xa-pool>

                                            <min-pool-size>5</min-pool-size>

                                            <max-pool-size>100</max-pool-size>

                                            <is-same-rm-override>false</is-same-rm-override>

                                            <no-tx-separate-pools>true</no-tx-separate-pools>

                                        </xa-pool>

                                        <security>

                                            <user-name>CATAP</user-name>

                                            <password>CATAP</password>

                                        </security>

                                        <validation>

                                            <exception-sorter class-name="org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter"/>

                                        </validation>

                                        <timeout>

                                            <blocking-timeout-millis>5000</blocking-timeout-millis>

                                            <idle-timeout-minutes>15</idle-timeout-minutes>

                                        </timeout>

                                    </xa-datasource>

                                    <drivers>

                                        <driver name="h2" module="com.h2database.h2">

                                            <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>

                                        </driver>

                                    </drivers>

                                </datasources>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:deployment-scanner:1.1">

                                <deployment-scanner path="deployments/int_store" relative-to="jboss.server.base.dir" scan-interval="5000"/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:ee:1.1">

                                <spec-descriptor-property-replacement>false</spec-descriptor-property-replacement>

                                <jboss-descriptor-property-replacement>true</jboss-descriptor-property-replacement>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:ejb3:1.4">

                                <session-bean>

                                    <stateless>

                                        <bean-instance-pool-ref pool-name="slsb-strict-max-pool"/>

                                    </stateless>

                                    <stateful default-access-timeout="5000" cache-ref="simple"/>

                                    <singleton default-access-timeout="5000"/>

                                </session-bean>

                                <pools>

                                    <bean-instance-pools>

                                        <strict-max-pool name="slsb-strict-max-pool" max-pool-size="20" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>

                                        <strict-max-pool name="mdb-strict-max-pool" max-pool-size="20" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>

                                    </bean-instance-pools>

                                </pools>

                                <caches>

                                    <cache name="simple" aliases="NoPassivationCache"/>

                                    <cache name="passivating" passivation-store-ref="file" aliases="SimpleStatefulCache"/>

                                </caches>

                                <passivation-stores>

                                    <file-passivation-store name="file"/>

                                </passivation-stores>

                                <async thread-pool-name="default"/>

                                <timer-service thread-pool-name="default">

                                    <data-store path="timer-service-data" relative-to="jboss.server.data.dir"/>

                                </timer-service>

                                <remote connector-ref="remoting-connector" thread-pool-name="default"/>

                                <thread-pools>

                                    <thread-pool name="default">

                                        <max-threads count="10"/>

                                        <keepalive-time time="100" unit="milliseconds"/>

                                    </thread-pool>

                                </thread-pools>

                                <default-security-domain value="other"/>

                                <default-missing-method-permissions-deny-access value="true"/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:infinispan:1.4">

                                <cache-container name="web" aliases="standard-session-cache" default-cache="local-web" module="org.jboss.as.clustering.web.infinispan">

                                    <local-cache name="local-web" batching="true">

                                        <file-store passivation="false" purge="false"/>

                                    </local-cache>

                                </cache-container>

                                <cache-container name="hibernate" default-cache="local-query" module="org.jboss.as.jpa.hibernate:4">

                                    <local-cache name="entity">

                                        <transaction mode="NON_XA"/>

                                        <eviction strategy="LRU" max-entries="10000"/>

                                        <expiration max-idle="100000"/>

                                    </local-cache>

                                    <local-cache name="local-query">

                                        <transaction mode="NONE"/>

                                        <eviction strategy="LRU" max-entries="10000"/>

                                        <expiration max-idle="100000"/>

                                    </local-cache>

                                    <local-cache name="timestamps">

                                        <transaction mode="NONE"/>

                                        <eviction strategy="NONE"/>

                                    </local-cache>

                                </cache-container>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:jaxrs:1.0"/>

                            <subsystem xmlns="urn:jboss:domain:jca:1.1">

                                <archive-validation enabled="true" fail-on-error="true" fail-on-warn="false"/>

                                <bean-validation enabled="true"/>

                                <default-workmanager>

                                    <short-running-threads>

                                        <core-threads count="50"/>

                                        <queue-length count="50"/>

                                        <max-threads count="50"/>

                                        <keepalive-time time="10" unit="seconds"/>

                                    </short-running-threads>

                                    <long-running-threads>

                                        <core-threads count="50"/>

                                        <queue-length count="50"/>

                                        <max-threads count="50"/>

                                        <keepalive-time time="10" unit="seconds"/>

                                    </long-running-threads>

                                </default-workmanager>

                                <cached-connection-manager/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:jdr:1.0"/>

                            <subsystem xmlns="urn:jboss:domain:jmx:1.2">

                                <expose-resolved-model/>

                                <expose-expression-model/>

                                <remoting-connector/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:jpa:1.1">

                                <jpa default-datasource="" default-extended-persistence-inheritance="DEEP"/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:jsf:1.0"/>

                            <subsystem xmlns="urn:jboss:domain:mail:1.1">

                                <mail-session jndi-name="java:jboss/mail/Default">

                                    <smtp-server outbound-socket-binding-ref="mail-smtp"/>

                                </mail-session>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:naming:1.3">

                                <remote-naming/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:pojo:1.0"/>

                            <subsystem xmlns="urn:jboss:domain:remoting:1.1">

                                <connector name="remoting-connector" socket-binding="remoting" security-realm="ApplicationRealm"/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:resource-adapters:1.1"/>

                            <subsystem xmlns="urn:jboss:domain:sar:1.0"/>

                            <subsystem xmlns="urn:jboss:domain:security:1.2">

                                <security-domains>

                                    <security-domain name="other" cache-type="default">

                                        <authentication>

                                            <login-module code="Remoting" flag="optional">

                                                <module-option name="password-stacking" value="useFirstPass"/>

                                            </login-module>

                                            <login-module code="RealmDirect" flag="required">

                                                <module-option name="password-stacking" value="useFirstPass"/>

                                            </login-module>

                                        </authentication>

                                    </security-domain>

                                    <security-domain name="jboss-web-policy" cache-type="default">

                                        <authorization>

                                            <policy-module code="Delegating" flag="required"/>

                                        </authorization>

                                    </security-domain>

                                    <security-domain name="jboss-ejb-policy" cache-type="default">

                                        <authorization>

                                            <policy-module code="Delegating" flag="required"/>

                                        </authorization>

                                    </security-domain>

                                </security-domains>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:threads:1.1"/>

                            <subsystem xmlns="urn:jboss:domain:transactions:1.3">

                                <core-environment>

                                    <process-id>

                                        <uuid/>

                                    </process-id>

                                </core-environment>

                                <recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn-status-manager"/>

                                <coordinator-environment default-timeout="300000"/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:web:1.4" default-virtual-server="default-host" native="false">

                                <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>

                                <virtual-server name="default-host" enable-welcome-root="true">

                                    <alias name="localhost"/>

                                    <alias name="int_store"/>

                                </virtual-server>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:webservices:1.2">

                                <modify-wsdl-address>true</modify-wsdl-address>

                                <wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl-host>

                                <endpoint-config name="Standard-Endpoint-Config"/>

                                <endpoint-config name="Recording-Endpoint-Config">

                                    <pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM">

                                        <handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler"/>

                                    </pre-handler-chain>

                                </endpoint-config>

                                <client-config name="Standard-Client-Config"/>

                            </subsystem>

                            <subsystem xmlns="urn:jboss:domain:weld:1.0"/>

                        </profile>

                     

                     

                        <interfaces>

                            <interface name="management">

                                <inet-address value="${jboss.bind.address.management:127.0.0.1}"/>

                            </interface>

                            <interface name="public">

                                <inet-address value="${jboss.bind.address:0.0.0.0}"/>

                            </interface>

                            <interface name="unsecure">

                                <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>

                            </interface>

                        </interfaces>

                     

                     

                        <socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">

                            <socket-binding name="management-native" interface="management" port="${jboss.management.native.port:9999}"/>

                            <socket-binding name="management-http" interface="management" port="${jboss.management.http.port:11180}"/>

                            <socket-binding name="management-https" interface="management" port="${jboss.management.https.port:10143}"/>

                            <socket-binding name="ajp" port="8007"/>

                            <socket-binding name="http" port="10180"/>

                            <socket-binding name="https" port="10143"/>

                            <socket-binding name="remoting" port="4457"/>

                            <socket-binding name="txn-recovery-environment" port="4752"/>

                            <socket-binding name="txn-status-manager" port="4753"/>

                            <outbound-socket-binding name="mail-smtp">

                                <remote-destination host="localhost" port="25"/>

                            </outbound-socket-binding>

                        </socket-binding-group>

                     

                     

                    </server>

                    • 7. Re: Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address
                      jaysensharma

                      Configuration looks good.

                      Do you see any error in the log related to the "ATGProductionDS"    after starting or while starting the JBoss ?   

                      I am suspecting the following reasons currently:

                       

                      1. Either the correct XML file is not being used to start JBoss .    Sp please double check if you are starting the server with the correct XML config file like     

                                 ./standalone.sh -c yourstandalone.xml

                      OR

                      2. May be some DataSource error might have occurred during the server start time that might have caused the DataSource to not to be available.

                                Please double check the logs ( Also better if you can share the errors here if you got any)

                      OR

                      3. The CLI might be connecting to an incorrect JBoss instance.

                                Check the JBoss running Host/IPAddress and Port too verify if the jboss cli is connecting to the right instance or not lilke:

                                 ./jboss-cli.sh -c controller=jbossHostName:9999

                       

                       

                      Regards

                      Jay SenSharma

                      • 8. Re: Failed to get the list of the operation properties: "JBAS014883: No resource definition is registered for address
                        jaysensharma

                        ...

                        Try running Jboss-cli.sh in GUI mode to find out the details more easily and to generate the correct command just by clicking/right clicking the tree.

                         

                        ./jboss-cli.sh -c  --gui
                        OR
                        ./jboss-cli.sh -c controller=localhost:9999  --gui
                        
                        
                        

                         

                         

                        jboss-cli_GUI_Mode.png

                         

                        Regards

                        Jay SenSharma