8 Replies Latest reply on Oct 25, 2013 9:25 AM by angeloimm

    JMS Log Handler

    angeloimm

      Hi there

       

      I needed to use JMS in order to remotely log on a server; for the production I'll use EAP 6.0.1 but, for my personal tests, I'm using JBoss AS 7.1.1.Final "Brontes"

      I did some researchs and it seems there is no JMS Appender for logging (note I can't configure JBoss in order to use log4j)

      So I decided to write my custom Handler.

       

      Here there is the code:

       

      package logging.jms;
      import java.util.Properties;
      import java.util.logging.ErrorManager;
      import java.util.logging.Handler;
      import java.util.logging.LogRecord;
      import javax.jms.Connection;
      import javax.jms.ConnectionFactory;
      import javax.jms.MessageProducer;
      import javax.jms.Session;
      import javax.jms.Topic;
      import javax.naming.Context;
      import javax.naming.InitialContext;
      public class JMSHandler extends Handler {
        private String topicName;
        private String connectionFactoryName;
        private String initialContextFactory;
        private String providedUrl;
        private String securityUsername;
        private String securityPassword;
        private Connection connection;
        private MessageProducer publisher;
        private Session session;
        private Context ctx;
        @Override
        public void publish(LogRecord record) {
        try {
        if( isLoggable(record) && initialize() ){
        String recordMessage = getFormatter().format(record);
        publisher.send(session.createTextMessage(recordMessage));
        }
        } catch (Exception e) {
        reportError("Errore nel processamento del record", e, ErrorManager.GENERIC_FAILURE);
        }
        }
        @Override
        public void flush() {
        //Nothing to flush
        }
        @Override
        public void close() throws SecurityException {
        try {
        //Chiudo il publisher
        if( publisher != null ){
        publisher.close();
        }
        //Chiudo la sessione
        if(session != null){
        session.close();
        }
        //Chiudo la connessione
        if( connection != null ){
        connection.close();
        }
        //Chiudo il contesto
        if( ctx != null ){
      
        ctx.close();
        }
        } catch (Exception e) {
        reportError("Errore nella chiusura dell'handler", e, ErrorManager.CLOSE_FAILURE);
        }
        }
        private synchronized boolean initialize() throws Exception{
        if( publisher == null ){
        System.out.println("Inizializzazione jms handler in corso");
        ctx = getInitialContext();
        System.out.println("Contesto creato");
        ConnectionFactory cf = (ConnectionFactory)ctx.lookup(getConnectionFactoryName());
        System.out.println("ConnectionFactory creata");
        Topic logTopic = (Topic)ctx.lookup(getTopicName());
        System.out.println("Topic lookup done");
        connection = cf.createConnection();
        System.out.println("Connection estabilished");
        session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
        publisher = session.createProducer(logTopic);
        connection.start();
        System.out.println("Connection started");
        }
        return true;
        }
        public String getTopicName() {
        return topicName;
        }
        public void setTopicName(String topicName) {
        this.topicName = topicName;
        }
        public String getConnectionFactoryName() {
        return connectionFactoryName;
        }
        public void setConnectionFactoryName(String connectionFactoryName) {
        this.connectionFactoryName = connectionFactoryName;
        }
        public Context getInitialContext() throws Exception {
        Properties p = new Properties( );
        p.put(Context.INITIAL_CONTEXT_FACTORY, getInitialContextFactory());
        p.put(Context.PROVIDER_URL, getProvidedUrl());
        p.put(Context.SECURITY_PRINCIPAL, getSecurityUsername());
        p.put(Context.SECURITY_CREDENTIALS, getSecurityPassword());
        return new InitialContext(p);
        }
        public String getProvidedUrl() {
        return providedUrl;
        }
        public void setProvidedUrl(String providedUrl) {
        this.providedUrl = providedUrl;
        }
        public String getInitialContextFactory() {
        return initialContextFactory;
        }
        public void setInitialContextFactory(String initialContextFactory) {
        this.initialContextFactory = initialContextFactory;
        }
        public String getSecurityUsername() {
        return securityUsername;
        }
        public void setSecurityUsername(String securityUsername) {
        this.securityUsername = securityUsername;
        }
        public String getSecurityPassword() {
        return securityPassword;
        }
        public void setSecurityPassword(String securityPassword) {
        this.securityPassword = securityPassword;
        }
      }
      
      

       

      Then I created my module.xml file since I want to deploy this handler as a JBoss module. Here there is the file content:

      <?xml version="1.0" encoding="UTF-8"?> 
      <module xmlns="urn:jboss:module:1.0" name="loggers">
           <resources>    
                 <resource-root path="JMSHandler.jar"/>
           </resources>  
           <dependencies>
                <module name="org.jboss.remote-naming" /> 
                <module name="org.jboss.logging"/>
                <module name="org.jboss.remoting3"/>
                <module name="javax.api"/>
                <module name="javax.jms.api"/>
           </dependencies>
      </module>
      
      

       

      I added both the modul.xml and the JMSHandler.jar files in ${JBOSS_HOME}/modules/loggers/main

      In my "standalone-full.xml" file I added the following:

      <custom-handler name="JMSAppender" class="logging.jms.JMSHandler" module="loggers">
        <level name="INFO" />
        <formatter>
        <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n" />
        </formatter>
        <properties>
        <property name="topicName" value="jms/topic/logTopic" />
        <property name="connectionFactoryName" value="jms/RemoteConnectionFactory" />
        <property name="initialContextFactory" value="org.jboss.naming.remote.client.InitialContextFactory" />
        <property name="providedUrl" value="remote://localhost:4447" />
        <property name="securityUsername" value="xxxx" />
        <property name="securityPassword" value="xxxx" />
        </properties>
      </custom-handler>
      
      

       

      It seems to me all correct, but when when I start the server I get this error:

      10:44:43,524 INFO  [stdout] (ServerService Thread Pool -- 32) Inizializzazione jms handler in corso
      10:44:43,538 ERROR [stderr] (ServerService Thread Pool -- 32) java.util.logging.ErrorManager: 0: Errore nel processamento del record
      10:44:43,552 ERROR [stderr] (ServerService Thread Pool -- 32) javax.naming.NoInitialContextException: Cannot instantiate class: org.jboss.naming.remote.client.InitialContextFactory [Root exception is java.lang.ClassNotFoundException: org.jboss.naming.remote.client.InitialContextFactory from [Module "org.jboss.as.controller:main" from local module loader @b23210 (roots: /dati/servers/jboss-as-7.1.1.Final/modules)]]
      10:44:43,562 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 37) JBAS010280: Activating Infinispan subsystem.
      10:44:43,569 ERROR [stderr] (ServerService Thread Pool -- 32) at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:657)
      10:44:43,572 INFO  [org.jboss.as.jacorb] (ServerService Thread Pool -- 38) JBAS016300: Activating JacORB Subsystem
      10:44:43,576 ERROR [stderr] (ServerService Thread Pool -- 32) at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
      10:44:43,587 ERROR [stderr] (ServerService Thread Pool -- 32) at javax.naming.InitialContext.init(InitialContext.java:223)
      10:44:43,592 ERROR [stderr] (ServerService Thread Pool -- 32) at javax.naming.InitialContext.<init>(InitialContext.java:197)
      
      

       

      By looking the error, it seems to me that JBoss is not able in finding the class org.jboss.naming.remote.client.InitialContextFactory but in my module.xml I added the dependency to <module name="org.jboss.remote-naming" /> where I checked and the class is present

       

      Can, kindly, anybody suggest to me where I'm wrong?

       

      Thank you

      Angelo

        • 1. Re: JMS Log Handler
          angeloimm

          Hi there

           

          Any ideas? I can't figure where th problem is

           

          Thank you

          Angelo

          • 2. Re: JMS Log Handler
            indranil32

            Observation:

            For InitialContext inside the server you do not need to give any "providedURL"!!

            Please check if your port 4447 is open (or else stop your firewall for testing : "service iptables stop")

            • 3. Re: Re: JMS Log Handler
              angeloimm

              Hi

               

              Thank you for the answer

               

              My port 4447 is open (I checked by doing a telnet on that port and I can connect correctly)

              Regarding to the InitialContext....in my real scenario I have to connect to a remote server; by trying the real scenario I always get the same error. In this case the provider URL would be:

              <property name="providedUrl" value="remote://10.24.5.23:4447" />
              

               

              and I can't solve the issue.... Do you have any suggestion? This simple thing is destroying me

              • 4. Re: Re: JMS Log Handler
                indranil32

                Two things:

                1. I hope you have added the "securityUsername" and "securityPassword" in your application realm.

                2. Can you simply use j-console [just for testing] to connect to this remoting using "service:jmx:remoting-jmx://localhost:4447"      ["securityUsername" and "securityPassword"].

                 

                Please provide your remoting subsystem(as in your standalone/domain xml).

                • 5. Re: Re: Re: JMS Log Handler
                  angeloimm

                  hi

                   

                  I didn't try yet by using the jmx console. In the meantime I'll paste here the full standalone-full.xml file so you can check my remoting configuration. Though I took it from my local JBoss AS 7, it looks like the one I'll use in production

                   

                  <?xml version='1.0' encoding='UTF-8'?>
                  
                  <server xmlns="urn:jboss:domain:1.2">
                      <extensions>
                          <extension module="org.jboss.as.clustering.infinispan"/>
                          <extension module="org.jboss.as.cmp"/>
                          <extension module="org.jboss.as.configadmin"/>
                          <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.jacorb"/>
                          <extension module="org.jboss.as.jaxr"/>
                          <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.jsr77"/>
                          <extension module="org.jboss.as.logging"/>
                          <extension module="org.jboss.as.mail"/>
                          <extension module="org.jboss.as.messaging"/>
                          <extension module="org.jboss.as.naming"/>
                          <extension module="org.jboss.as.osgi"/>
                          <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>
                                      <properties path="mgmt-users.properties" relative-to="jboss.server.config.dir"/>
                                  </authentication>
                              </security-realm>
                              <security-realm name="ApplicationRealm">
                                  <authentication>
                                      <properties path="application-users.properties" relative-to="jboss.server.config.dir"/>
                                  </authentication>
                              </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.1">
                              <console-handler name="CONSOLE">
                                  <level name="DEBUG"/>
                                  <formatter>
                                      <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
                                  </formatter>
                              </console-handler>
                              <!--<periodic-rotating-file-handler name="FILE">
                                  <formatter>
                                      <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
                                  </formatter>
                                  <file relative-to="jboss.server.log.dir" path="server.log"/>
                                  <suffix value=".yyyy-MM-dd"/>
                                  <append value="true"/>
                              </periodic-rotating-file-handler>-->
                       <size-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="server.log"/>
                            <rotate-size value="5000k"/>
                            <max-backup-index value="10"/>
                            <append value="false"/>
                       </size-rotating-file-handler>
                  <custom-handler name="JMSAppender" class="it.poste.crs.invimall.logging.jms.JMSHandler" module="it.poste.crs.invimall.loggers">
                    <level name="INFO" />
                    <formatter>
                    <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n" />
                    </formatter>
                    <properties>
                    <property name="topicName" value="jms/topic/logTopic" />
                    <property name="connectionFactoryName" value="jms/RemoteConnectionFactory" />
                    <property name="initialContextFactory" value="org.jboss.naming.remote.client.InitialContextFactory" />
                    <property name="providedUrl" value="remote://localhost:4447" />
                    <property name="securityUsername" value="invimallTopic" />
                    <property name="securityPassword" value="Sv4Np1rh!" />
                    </properties>
                  </custom-handler> 
                              <logger category="com.arjuna">
                                  <level name="WARN"/>
                              </logger>
                              <logger category="org.apache.tomcat.util.modeler">
                                  <level name="WARN"/>
                              </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"/>
                       <handler name="JMSAppender" />
                                  </handlers>
                              </root-logger>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:cmp:1.0"/>
                          <subsystem xmlns="urn:jboss:domain:configadmin:1.0"/>
                          <subsystem xmlns="urn:jboss:domain:datasources:1.0">
                              <datasources>
                                  <datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true">
                                      <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1</connection-url>
                                      <driver>h2</driver>
                                      <security>
                                          <user-name>sa</user-name>
                                          <password>sa</password>
                                      </security>
                                  </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" relative-to="jboss.server.base.dir" scan-interval="5000"/>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:ee:1.0"/>
                          <subsystem xmlns="urn:jboss:domain:ejb3:1.2">
                              <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>
                              <mdb>
                                  <resource-adapter-ref resource-adapter-name="hornetq-ra"/>
                                  <bean-instance-pool-ref pool-name="mdb-strict-max-pool"/>
                              </mdb>
                              <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>
                              <iiop enable-by-default="false" use-qualified-name="false"/>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:infinispan:1.2" default-cache-container="hibernate">
                              <cache-container name="hibernate" default-cache="local-query">
                                  <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:jacorb:1.1">
                              <orb>
                                  <initializers transactions="spec" security="on"/>
                              </orb>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:jaxr:1.1">
                              <connection-factory jndi-name="java:jboss/jaxr/ConnectionFactory"/>
                          </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.1">
                              <show-model value="true"/>
                              <remoting-connector/>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:jpa:1.0">
                              <jpa default-datasource=""/>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:jsr77:1.0"/>
                          <subsystem xmlns="urn:jboss:domain:mail:1.0">
                              <mail-session jndi-name="java:jboss/mail/Default">
                                  <smtp-server outbound-socket-binding-ref="mail-smtp"/>
                              </mail-session>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:messaging:1.1">
                              <hornetq-server>
                                  <persistence-enabled>true</persistence-enabled>
                                  <journal-file-size>102400</journal-file-size>
                                  <journal-min-files>2</journal-min-files>
                                  <connectors>
                                      <netty-connector name="netty" socket-binding="messaging"/>
                                      <netty-connector name="netty-throughput" socket-binding="messaging-throughput">
                                          <param key="batch-delay" value="50"/>
                                      </netty-connector>
                                      <in-vm-connector name="in-vm" server-id="0"/>
                                  </connectors>
                                  <acceptors>
                                      <netty-acceptor name="netty" socket-binding="messaging"/>
                                      <netty-acceptor name="netty-throughput" socket-binding="messaging-throughput">
                                          <param key="batch-delay" value="50"/>
                                          <param key="direct-deliver" value="false"/>
                                      </netty-acceptor>
                                      <in-vm-acceptor name="in-vm" server-id="0"/>
                                  </acceptors>
                                  <security-settings>
                                      <security-setting match="#">
                                          <permission type="send" roles="guest"/>
                                          <permission type="consume" roles="guest"/>
                                          <permission type="createNonDurableQueue" roles="guest"/>
                                          <permission type="deleteNonDurableQueue" roles="guest"/>
                                      </security-setting>
                                  </security-settings>
                                  <address-settings>
                                      <!--default for catch all-->
                                      <address-setting match="#">
                                          <dead-letter-address>jms.queue.DLQ</dead-letter-address>
                                          <expiry-address>jms.queue.ExpiryQueue</expiry-address>
                                          <redelivery-delay>0</redelivery-delay>
                                          <max-size-bytes>10485760</max-size-bytes>
                                          <address-full-policy>BLOCK</address-full-policy>
                                          <message-counter-history-day-limit>10</message-counter-history-day-limit>
                                      </address-setting>
                                  </address-settings>
                                  <jms-connection-factories>
                                      <connection-factory name="InVmConnectionFactory">
                                          <connectors>
                                              <connector-ref connector-name="in-vm"/>
                                          </connectors>
                                          <entries>
                                              <entry name="java:/ConnectionFactory"/>
                                          </entries>
                                      </connection-factory>
                                      <connection-factory name="RemoteConnectionFactory">
                                          <connectors>
                                              <connector-ref connector-name="netty"/>
                                          </connectors>
                                          <entries>
                                              <entry name="RemoteConnectionFactory"/>
                                              <entry name="java:jboss/exported/jms/RemoteConnectionFactory"/>
                                          </entries>
                                      </connection-factory>
                                      <pooled-connection-factory name="hornetq-ra">
                                          <transaction mode="xa"/>
                                          <connectors>
                                              <connector-ref connector-name="in-vm"/>
                                          </connectors>
                                          <entries>
                                              <entry name="java:/JmsXA"/>
                                          </entries>
                                      </pooled-connection-factory>
                                  </jms-connection-factories>
                                  <jms-destinations>
                                      <jms-queue name="testQueue">
                                          <entry name="queue/test"/>
                                          <entry name="java:jboss/exported/jms/queue/test"/>
                                      </jms-queue>
                                      <jms-topic name="testTopic">
                                          <entry name="topic/test"/>
                                          <entry name="java:jboss/exported/jms/topic/test"/>
                                      </jms-topic>
                                      <jms-topic name="logTopic">
                                          <entry name="topic/logTopic"/>
                    <entry name="java:jboss/exported/jms/topic/logTopic"/>
                                      </jms-topic>
                                  </jms-destinations>
                              </hornetq-server>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:naming:1.1"/>
                          <subsystem xmlns="urn:jboss:domain:osgi:1.2" activation="lazy">
                              <properties>
                                  <!-- Specifies the beginning start level of the framework -->
                                  <property name="org.osgi.framework.startlevel.beginning">1</property>
                              </properties>
                              <capabilities>
                                  <!-- modules registered with the OSGi layer on startup -->
                                  <capability name="javax.servlet.api:v25"/>
                                  <capability name="javax.transaction.api"/>
                                  <!-- bundles started in startlevel 1 -->
                                  <capability name="org.apache.felix.log" startlevel="1"/>
                                  <capability name="org.jboss.osgi.logging" startlevel="1"/>
                                  <capability name="org.apache.felix.configadmin" startlevel="1"/>
                                  <capability name="org.jboss.as.osgi.configadmin" startlevel="1"/>
                              </capabilities>
                          </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.0"/>
                          <subsystem xmlns="urn:jboss:domain:sar:1.0"/>
                          <subsystem xmlns="urn:jboss:domain:security:1.1">
                              <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="RealmUsersRoles" flag="required">
                                              <module-option name="usersProperties" value="${jboss.server.config.dir}/application-users.properties"/>
                                              <module-option name="rolesProperties" value="${jboss.server.config.dir}/application-roles.properties"/>
                                              <module-option name="realm" value="ApplicationRealm"/>
                                              <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.1">
                              <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="300"/>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:web:1.1" 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="example.com"/>
                              </virtual-server>
                          </subsystem>
                          <subsystem xmlns="urn:jboss:domain:webservices:1.1">
                              <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>
                          </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:127.0.0.1}"/>
                          </interface>
                          <!-- TODO - only show this if the jacorb subsystem is added  -->
                          <interface name="unsecure">
                              <!--
                                ~  Used for IIOP sockets in the standard configuration.
                                ~                  To secure JacORB you need to setup SSL 
                                -->
                              <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:9990}"/>
                          <socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9443}"/>
                          <socket-binding name="ajp" port="8009"/>
                          <socket-binding name="http" port="8080"/>
                          <socket-binding name="https" port="8443"/>
                          <socket-binding name="jacorb" interface="unsecure" port="3528"/>
                          <socket-binding name="jacorb-ssl" interface="unsecure" port="3529"/>
                          <socket-binding name="messaging" port="5445"/>
                          <socket-binding name="messaging-throughput" port="5455"/>
                          <socket-binding name="osgi-http" interface="management" port="8090"/>
                          <socket-binding name="remoting" port="4447"/>
                          <socket-binding name="txn-recovery-environment" port="4712"/>
                          <socket-binding name="txn-status-manager" port="4713"/>
                          <outbound-socket-binding name="mail-smtp">
                              <remote-destination host="localhost" port="25"/>
                          </outbound-socket-binding>
                      </socket-binding-group>
                  </server>
                  

                   

                  I'll let you know about the JMX console

                   

                  Angelo

                  • 6. Re: JMS Log Handler
                    angeloimm

                    hi

                     

                    i tried the JMX console and it seems to me working

                     

                    How can I solve this problem? I really don't know what else to do...it seems to me all correct

                     

                    Angelo

                    • 7. Re: JMS Log Handler
                      indranil32

                      Is it is only failing for the 1st time ? When i run i get the error on initial startup but afterwards when i try to access the topic, i do get the messages properly. Is it same with your??

                       

                      I did the following changes to the dependency in module.xml

                       

                      <module name="org.jboss.remote-naming" export="true"/>

                      <module name="org.jboss.remoting3" export="true"/>


                      • 8. Re: JMS Log Handler
                        angeloimm

                        hi

                         

                        I didn't try the modification you did but I can confirm that it always fails not only the first time

                        I'll try your modification on Monday when I can access to the production environment and I'll let you know

                         

                        Thank you for the support