Uploaded image for project: 'ServiceMix'
  1. ServiceMix
  2. SM-3176

Order dependency of ActiveMQ in case of SM-Shutdown.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Won't Fix
    • 6.1.2, 6.1.3
    • 6.1.5, 7.0.2
    • activemq
    • None

    Description

      It seems, that in case using an ActiveMQ-Consumer the depending components are not shut down is the correct order.
      As far as I can see, the JMSSessionPool is shutdown before the depending routes were closed.
      This causes JMSEsception and each client routes will run into timeouts, before they are forced to shutdown.
      Also the amq-broker ist removed before its depending routes.

      2016-12-08 11:49:02,336 | ERROR | [buffered-route] | faultJmsMessageListenerContainer | 145 - org.apache.servicemix.bundles.spring-jms - 3.2.17.RELEASE_1 | Could not refresh JMS Connection for destination 'buffered-route' - retrying in 5000 ms. Cause: Error while attempting to add new Connection to the pool; nested exception is javax.jms.JMSException: Could not create Transport. Reason: java.io.IOException: Broker named 'amq-broker' does not exist.
      

      Example blueprint.xml:

      <?xml version="1.0" encoding="UTF-8"?>
      <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
                 xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
                                     http://camel.apache.org/schema/blueprint http://camel.apache.org/schema/blueprint/camel-blueprint.xsd">
      
        <camelContext id="ObjectServerConnection" xmlns="http://camel.apache.org/schema/blueprint" >
          <route id="test-aqm-shutdown-route">
            <from uri="activemq:buffered-route?concurrentConsumers=5&amp;asyncConsumer=5" />
            <!--transacted ref="required" /-->
            <convertBodyTo type="java.lang.String" />
            <to uri="file:/out.txt" />
          </route>
        </camelContext>
       </blueprint>
      

      LogOutput:

      Dez 08, 2016 11:48:36 AM org.apache.karaf.main.Main$KarafLockCallback lockAquired
      INFO: Lock acquired. Setting startlevel to 100
      2016-12-08 11:48:37,550 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.specs.jsr339-api-2.0
      2016-12-08 11:48:37,552 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.specs.jsr339-api-2.0 [143]
      2016-12-08 11:48:37,553 | DEBUG | FelixStartLevel  | 0                                | 143 - org.apache.servicemix.specs.jsr339-api-2.0 - 2.6.0 | BundleEvent STARTED - org.apache.servicemix.specs.jsr339-api-2.0
      2016-12-08 11:48:37,555 | DEBUG | FelixStartLevel  | 0                                | 146 - org.apache.servicemix.specs.stax-api-1.0 - 2.5.0 | BundleEvent RESOLVED - org.apache.servicemix.specs.stax-api-1.0
      2016-12-08 11:48:37,555 | DEBUG | FelixStartLevel  | 0                                | 146 - org.apache.servicemix.specs.stax-api-1.0 - 2.5.0 | BundleEvent STARTING - org.apache.servicemix.specs.stax-api-1.0
      2016-12-08 11:48:37,558 | DEBUG | 4j.pax.url.mvn]) | mvn                              | 1 - org.ops4j.pax.url.mvn - 2.4.7 | ServiceEvent REGISTERED - [org.ops4j.pax.url.mvn.MavenResolver] - org.ops4j.pax.url.mvn
      2016-12-08 11:48:37,558 | DEBUG | 4j.pax.url.mvn]) | mvn                              | 1 - org.ops4j.pax.url.mvn - 2.4.7 | ServiceEvent UNREGISTERING - [org.ops4j.pax.url.mvn.MavenResolver] - org.ops4j.pax.url.mvn
      2016-12-08 11:48:37,559 | DEBUG | 4j.pax.url.mvn]) | olingHttpClientConnectionManager | 3 - org.ops4j.pax.logging.pax-logging-api - 1.8.4 | Connection manager is shutting down
      2016-12-08 11:48:37,559 | DEBUG | 4j.pax.url.mvn]) | olingHttpClientConnectionManager | 3 - org.ops4j.pax.logging.pax-logging-api - 1.8.4 | Connection manager shut down
      2016-12-08 11:48:37,563 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.specs.stax-api-1.0
      2016-12-08 11:48:37,563 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.specs.stax-api-1.0 [146]
      2016-12-08 11:48:37,563 | DEBUG | FelixStartLevel  | 0                                | 146 - org.apache.servicemix.specs.stax-api-1.0 - 2.5.0 | BundleEvent STARTED - org.apache.servicemix.specs.stax-api-1.0
      2016-12-08 11:48:37,565 | DEBUG | FelixStartLevel  | 2                                | 147 - org.apache.servicemix.specs.jaxb-api-2.2 - 2.5.0 | BundleEvent RESOLVED - org.apache.servicemix.specs.jaxb-api-2.2
      2016-12-08 11:48:37,565 | DEBUG | FelixStartLevel  | 2                                | 147 - org.apache.servicemix.specs.jaxb-api-2.2 - 2.5.0 | BundleEvent STARTING - org.apache.servicemix.specs.jaxb-api-2.2
      2016-12-08 11:48:37,573 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.specs.jaxb-api-2.2
      2016-12-08 11:48:37,573 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.specs.jaxb-api-2.2 [147]
      2016-12-08 11:48:37,573 | DEBUG | FelixStartLevel  | 2                                | 147 - org.apache.servicemix.specs.jaxb-api-2.2 - 2.5.0 | BundleEvent STARTED - org.apache.servicemix.specs.jaxb-api-2.2
      2016-12-08 11:48:37,575 | DEBUG | FelixStartLevel  | stax2-api                        | 148 - stax2-api - 3.1.4 | BundleEvent RESOLVED - stax2-api
      2016-12-08 11:48:37,575 | DEBUG | FelixStartLevel  | stax2-api                        | 148 - stax2-api - 3.1.4 | BundleEvent STARTING - stax2-api
      2016-12-08 11:48:37,576 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: stax2-api
      2016-12-08 11:48:37,576 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle stax2-api [148]
      2016-12-08 11:48:37,576 | DEBUG | FelixStartLevel  | stax2-api                        | 148 - stax2-api - 3.1.4 | BundleEvent STARTED - stax2-api
      2016-12-08 11:48:37,578 | DEBUG | FelixStartLevel  | woodstox-core-asl                | 149 - woodstox-core-asl - 4.4.1 | BundleEvent RESOLVED - woodstox-core-asl
      2016-12-08 11:48:37,579 | DEBUG | FelixStartLevel  | woodstox-core-asl                | 149 - woodstox-core-asl - 4.4.1 | BundleEvent STARTING - woodstox-core-asl
      2016-12-08 11:48:37,583 | DEBUG | FelixStartLevel  | woodstox-core-asl                | 149 - woodstox-core-asl - 4.4.1 | ServiceEvent REGISTERED - [org.codehaus.stax2.osgi.Stax2InputFactoryProvider] - woodstox-core-asl
      2016-12-08 11:48:37,584 | DEBUG | FelixStartLevel  | woodstox-core-asl                | 149 - woodstox-core-asl - 4.4.1 | ServiceEvent REGISTERED - [org.codehaus.stax2.osgi.Stax2OutputFactoryProvider] - woodstox-core-asl
      2016-12-08 11:48:37,585 | DEBUG | FelixStartLevel  | woodstox-core-asl                | 149 - woodstox-core-asl - 4.4.1 | ServiceEvent REGISTERED - [org.codehaus.stax2.osgi.Stax2ValidationSchemaFactoryProvider] - woodstox-core-asl
      2016-12-08 11:48:37,586 | DEBUG | FelixStartLevel  | woodstox-core-asl                | 149 - woodstox-core-asl - 4.4.1 | ServiceEvent REGISTERED - [org.codehaus.stax2.osgi.Stax2ValidationSchemaFactoryProvider] - woodstox-core-asl
      2016-12-08 11:48:37,586 | DEBUG | FelixStartLevel  | woodstox-core-asl                | 149 - woodstox-core-asl - 4.4.1 | ServiceEvent REGISTERED - [org.codehaus.stax2.osgi.Stax2ValidationSchemaFactoryProvider] - woodstox-core-asl
      2016-12-08 11:48:37,586 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: woodstox-core-asl
      2016-12-08 11:48:37,586 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle woodstox-core-asl [149]
      2016-12-08 11:48:37,587 | DEBUG | FelixStartLevel  | woodstox-core-asl                | 149 - woodstox-core-asl - 4.4.1 | BundleEvent STARTED - woodstox-core-asl
      2016-12-08 11:48:37,591 | DEBUG | FelixStartLevel  | jaxb-impl                        | 150 - org.apache.servicemix.bundles.jaxb-impl - 2.2.6.1 | BundleEvent RESOLVED - org.apache.servicemix.bundles.jaxb-impl
      2016-12-08 11:48:37,616 | DEBUG | FelixStartLevel  | fastinfoset                      | 169 - org.apache.servicemix.bundles.fastinfoset - 1.2.13.1 | BundleEvent RESOLVED - org.apache.servicemix.bundles.fastinfoset
      2016-12-08 11:48:37,617 | DEBUG | FelixStartLevel  | stax-ex                          | 205 - org.jvnet.staxex.stax-ex - 1.7.6 | BundleEvent RESOLVED - org.jvnet.staxex.stax-ex
      2016-12-08 11:48:37,618 | DEBUG | FelixStartLevel  | jaxb-impl                        | 150 - org.apache.servicemix.bundles.jaxb-impl - 2.2.6.1 | BundleEvent STARTING - org.apache.servicemix.bundles.jaxb-impl
      2016-12-08 11:48:37,618 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.bundles.jaxb-impl
      2016-12-08 11:48:37,618 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.bundles.jaxb-impl [150]
      2016-12-08 11:48:37,619 | DEBUG | FelixStartLevel  | jaxb-impl                        | 150 - org.apache.servicemix.bundles.jaxb-impl - 2.2.6.1 | BundleEvent STARTED - org.apache.servicemix.bundles.jaxb-impl
      2016-12-08 11:48:37,620 | DEBUG | FelixStartLevel  | 1                                | 159 - org.apache.servicemix.specs.activation-api-1.1 - 2.4.0 | BundleEvent RESOLVED - org.apache.servicemix.specs.activation-api-1.1
      2016-12-08 11:48:37,620 | DEBUG | FelixStartLevel  | 1                                | 159 - org.apache.servicemix.specs.activation-api-1.1 - 2.4.0 | BundleEvent STARTING - org.apache.servicemix.specs.activation-api-1.1
      2016-12-08 11:48:37,623 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.specs.activation-api-1.1
      2016-12-08 11:48:37,623 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.specs.activation-api-1.1 [159]
      2016-12-08 11:48:37,623 | DEBUG | FelixStartLevel  | 1                                | 159 - org.apache.servicemix.specs.activation-api-1.1 - 2.4.0 | BundleEvent STARTED - org.apache.servicemix.specs.activation-api-1.1
      2016-12-08 11:48:37,624 | DEBUG | FelixStartLevel  | annotation-api                   | 160 - javax.annotation-api - 1.2.0 | BundleEvent RESOLVED - javax.annotation-api
      2016-12-08 11:48:37,624 | DEBUG | FelixStartLevel  | annotation-api                   | 160 - javax.annotation-api - 1.2.0 | BundleEvent STARTING - javax.annotation-api
      2016-12-08 11:48:37,624 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: javax.annotation-api
      2016-12-08 11:48:37,624 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle javax.annotation-api [160]
      2016-12-08 11:48:37,624 | DEBUG | FelixStartLevel  | annotation-api                   | 160 - javax.annotation-api - 1.2.0 | BundleEvent STARTED - javax.annotation-api
      2016-12-08 11:48:37,626 | DEBUG | FelixStartLevel  | 2                                | 161 - org.apache.servicemix.specs.jaxb-api-2.2 - 2.4.0 | BundleEvent RESOLVED - org.apache.servicemix.specs.jaxb-api-2.2
      2016-12-08 11:48:37,626 | DEBUG | FelixStartLevel  | 2                                | 161 - org.apache.servicemix.specs.jaxb-api-2.2 - 2.4.0 | BundleEvent STARTING - org.apache.servicemix.specs.jaxb-api-2.2
      2016-12-08 11:48:37,633 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.specs.jaxb-api-2.2
      2016-12-08 11:48:37,633 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.specs.jaxb-api-2.2 [161]
      2016-12-08 11:48:37,633 | DEBUG | FelixStartLevel  | 2                                | 161 - org.apache.servicemix.specs.jaxb-api-2.2 - 2.4.0 | BundleEvent STARTED - org.apache.servicemix.specs.jaxb-api-2.2
      2016-12-08 11:48:37,635 | DEBUG | FelixStartLevel  | 2                                | 162 - org.apache.servicemix.specs.jaxws-api-2.2 - 2.4.0 | BundleEvent RESOLVED - org.apache.servicemix.specs.jaxws-api-2.2
      2016-12-08 11:48:37,635 | DEBUG | FelixStartLevel  | 2                                | 162 - org.apache.servicemix.specs.jaxws-api-2.2 - 2.4.0 | BundleEvent STARTING - org.apache.servicemix.specs.jaxws-api-2.2
      2016-12-08 11:48:37,643 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.specs.jaxws-api-2.2
      2016-12-08 11:48:37,643 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.specs.jaxws-api-2.2 [162]
      2016-12-08 11:48:37,644 | DEBUG | FelixStartLevel  | 2                                | 162 - org.apache.servicemix.specs.jaxws-api-2.2 - 2.4.0 | BundleEvent STARTED - org.apache.servicemix.specs.jaxws-api-2.2
      2016-12-08 11:48:37,645 | DEBUG | FelixStartLevel  | 3                                | 163 - org.apache.servicemix.specs.saaj-api-1.3 - 2.4.0 | BundleEvent RESOLVED - org.apache.servicemix.specs.saaj-api-1.3
      2016-12-08 11:48:37,646 | DEBUG | FelixStartLevel  | 3                                | 163 - org.apache.servicemix.specs.saaj-api-1.3 - 2.4.0 | BundleEvent STARTING - org.apache.servicemix.specs.saaj-api-1.3
      2016-12-08 11:48:37,656 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.specs.saaj-api-1.3
      2016-12-08 11:48:37,656 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.specs.saaj-api-1.3 [163]
      2016-12-08 11:48:37,657 | DEBUG | FelixStartLevel  | 3                                | 163 - org.apache.servicemix.specs.saaj-api-1.3 - 2.4.0 | BundleEvent STARTED - org.apache.servicemix.specs.saaj-api-1.3
      2016-12-08 11:48:37,659 | DEBUG | FelixStartLevel  | 0                                | 164 - org.apache.servicemix.specs.jsr339-api-2.0 - 2.4.0 | BundleEvent RESOLVED - org.apache.servicemix.specs.jsr339-api-2.0
      2016-12-08 11:48:37,659 | DEBUG | FelixStartLevel  | 0                                | 164 - org.apache.servicemix.specs.jsr339-api-2.0 - 2.4.0 | BundleEvent STARTING - org.apache.servicemix.specs.jsr339-api-2.0
      2016-12-08 11:48:37,667 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: org.apache.servicemix.specs.jsr339-api-2.0
      2016-12-08 11:48:37,667 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle org.apache.servicemix.specs.jsr339-api-2.0 [164]
      2016-12-08 11:48:37,667 | DEBUG | FelixStartLevel  | 0                                | 164 - org.apache.servicemix.specs.jsr339-api-2.0 - 2.4.0 | BundleEvent STARTED - org.apache.servicemix.specs.jsr339-api-2.0
      2016-12-08 11:48:37,671 | DEBUG | FelixStartLevel  | mail                             | 165 - javax.mail - 1.4.4 | BundleEvent RESOLVED - javax.mail
      2016-12-08 11:48:37,672 | DEBUG | FelixStartLevel  | mail                             | 165 - javax.mail - 1.4.4 | BundleEvent STARTING - javax.mail
      2016-12-08 11:48:37,672 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | Bundle Considered for class providers: javax.mail
      2016-12-08 11:48:37,672 | DEBUG | FelixStartLevel  | geronimo-osgi-registry           | 158 - org.apache.geronimo.specs.geronimo-osgi-registry - 1.1.0 | adding bundle javax.mail [165]
      2016-12-08 11:48:37,672 | DEBUG | FelixStartLevel  | mail                             | 165 - javax.mail - 1.4.4 | BundleEvent STARTED - javax.mail
      2016-12-08 11:48:37,674 | DEBUG | FelixStartLevel  | fileinstall                      | 7 - org.apache.felix.fileinstall - 3.5.2 | BundleEvent RESOLVED - org.apache.felix.fileinstall
      2016-12-08 11:48:37,674 | DEBUG | FelixStartLevel  | fileinstall                      | 7 - org.apache.felix.fileinstall - 3.5.2 | BundleEvent STARTING - org.apache.felix.fileinstall
      2016-12-08 11:48:37,676 | DEBUG | FelixStartLevel  | fileinstall                      | 7 - org.apache.felix.fileinstall - 3.5.2 | ServiceEvent REGISTERED - [org.osgi.service.url.URLStreamHandlerService] - org.apache.felix.fileinstall
      2016-12-08 11:48:37,677 | DEBUG | FelixStartLevel  | fileinstall                      | 7 - org.apache.felix.fileinstall - 3.5.2 | ServiceEvent REGISTERED - [org.osgi.service.cm.ManagedServiceFactory] - org.apache.felix.fileinstall
      2016-12-08 11:48:37,679 | DEBUG | FelixStartLevel  | fileinstall                      | 7 - org.apache.felix.fileinstall - 3.5.2 | ServiceEvent REGISTERED - [org.osgi.service.cm.ConfigurationListener, org.apache.felix.fileinstall.ArtifactListener, org.apache.felix.fileinstall.ArtifactInstaller] - org.apache.felix.fileinstall
      2016-12-08 11:48:37,739 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,741 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,742 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,743 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,743 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,744 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,745 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,745 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,746 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,746 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,747 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,748 | DEBUG | FelixStartLevel  | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:37,749 | INFO  | FelixStartLevel  | fileinstall                      | 7 - org.apache.felix.fileinstall - 3.5.2 | Updating configuration from org.ops4j.pax.logging.cfg
      2016-12-08 11:48:37,754 | DEBUG | s4j.pax.logging) | configadmin                      | 6 - org.apache.felix.configadmin - 1.8.4 | getProperties()
      2016-12-08 11:48:38,582 | WARN  | FelixStartLevel  | FeatureValidationUtil            | 20 - org.apache.karaf.features.core - 3.0.8 | Old style feature file without namespace found (URI: mvn:org.apache.activemq/activemq-karaf/5.12.3/xml/features). This format is deprecated and support for it will soon be removed
      2016-12-08 11:48:38,648 | WARN  | FelixStartLevel  | FeatureValidationUtil            | 20 - org.apache.karaf.features.core - 3.0.8 | Old style feature file without namespace found (URI: mvn:org.apache.activemq/activemq-karaf/5.12.3/xml/features-core). This format is deprecated and support for it will soon be removed
      2016-12-08 11:48:38,692 | INFO  | FelixStartLevel  | FeaturesServiceImpl              | 20 - org.apache.karaf.features.core - 3.0.8 | Installing feature jaxrs-api 0.0.0
      2016-12-08 11:48:38,702 | INFO  | FelixStartLevel  | FeaturesServiceImpl              | 20 - org.apache.karaf.features.core - 3.0.8 | Found installed feature camel-core-condition-shell_0_0_0 2.16.4
      2016-12-08 11:48:38,880 | INFO  | FelixStartLevel  | BlueprintContainerImpl           | 15 - org.apache.aries.blueprint.core - 1.6.1 | Bundle org.apache.karaf.features.command/3.0.8 is waiting for namespace handlers [http://karaf.apache.org/xmlns/shell/v1.1.0]
      2016-12-08 11:48:38,911 | INFO  | FelixStartLevel  | BlueprintContainerImpl           | 15 - org.apache.aries.blueprint.core - 1.6.1 | Bundle org.apache.karaf.bundle.command/3.0.8 is waiting for namespace handlers [http://karaf.apache.org/xmlns/shell/v1.1.0]
      2016-12-08 11:48:38,926 | INFO  | FelixStartLevel  | SecuredCommandConfigTransformer  | 27 - org.apache.karaf.shell.console - 3.0.8 | Generating command ACL config org.apache.karaf.command.acl.scope_bundle into service ACL configs [org.apache.karaf.service.acl.command.scope_bundle.packages, org.apache.karaf.service.acl.command.scope_bundle.shell, org.apache.karaf.service.acl.command.scope_bundle.admin, org.apache.karaf.service.acl.command.scope_bundle.ssh, org.apache.karaf.service.acl.command.scope_bundle.osgi, org.apache.karaf.service.acl.command.scope_bundle.config, org.apache.karaf.service.acl.command.scope_bundle.jaas, org.apache.karaf.service.acl.command.scope_bundle.features, org.apache.karaf.service.acl.command.scope_bundle.log]
      2016-12-08 11:48:38,953 | INFO  | FelixStartLevel  | SecuredCommandConfigTransformer  | 27 - org.apache.karaf.shell.console - 3.0.8 | Generating command ACL config org.apache.karaf.command.acl.feature into service ACL configs [org.apache.karaf.service.acl.command.feature.uninstall, org.apache.karaf.service.acl.command.feature.install]
      2016-12-08 11:48:38,959 | INFO  | FelixStartLevel  | SecuredCommandConfigTransformer  | 27 - org.apache.karaf.shell.console - 3.0.8 | Generating command ACL config org.apache.karaf.command.acl.shell into service ACL configs [org.apache.karaf.service.acl.command.shell.java, org.apache.karaf.service.acl.command.shell.edit, org.apache.karaf.service.acl.command.shell.new, org.apache.karaf.service.acl.command.shell.exec]
      2016-12-08 11:48:38,971 | INFO  | FelixStartLevel  | SecuredCommandConfigTransformer  | 27 - org.apache.karaf.shell.console - 3.0.8 | Generating command ACL config org.apache.karaf.command.acl.system into service ACL configs [org.apache.karaf.service.acl.command.system.property, org.apache.karaf.service.acl.command.system.shutdown, org.apache.karaf.service.acl.command.system.start-level]
      2016-12-08 11:48:38,978 | INFO  | FelixStartLevel  | SecuredCommandConfigTransformer  | 27 - org.apache.karaf.shell.console - 3.0.8 | Generating command ACL config org.apache.karaf.command.acl.config into service ACL configs [org.apache.karaf.service.acl.command.config.property-append, org.apache.karaf.service.acl.command.config.property-delete, org.apache.karaf.service.acl.command.config.property-set, org.apache.karaf.service.acl.command.config.edit, org.apache.karaf.service.acl.command.config.update, org.apache.karaf.service.acl.command.config.cancel, org.apache.karaf.service.acl.command.config.delete]
      2016-12-08 11:48:39,002 | INFO  | FelixStartLevel  | SecuredCommandConfigTransformer  | 27 - org.apache.karaf.shell.console - 3.0.8 | Generating command ACL config org.apache.karaf.command.acl.jaas into service ACL configs [org.apache.karaf.service.acl.command.jaas.update]
      2016-12-08 11:48:39,005 | INFO  | FelixStartLevel  | SecuredCommandConfigTransformer  | 27 - org.apache.karaf.shell.console - 3.0.8 | Generating command ACL config org.apache.karaf.command.acl.bundle into service ACL configs [org.apache.karaf.service.acl.command.bundle.watch, org.apache.karaf.service.acl.command.bundle.update, org.apache.karaf.service.acl.command.bundle.install, org.apache.karaf.service.acl.command.bundle.refresh, org.apache.karaf.service.acl.command.bundle.uninstall, org.apache.karaf.service.acl.command.bundle.restart, org.apache.karaf.service.acl.command.bundle.stop, org.apache.karaf.service.acl.command.bundle.start]
      2016-12-08 11:48:39,026 | INFO  | FelixStartLevel  | SecuredCommandConfigTransformer  | 27 - org.apache.karaf.shell.console - 3.0.8 | Generating command ACL config org.apache.karaf.command.acl.kar into service ACL configs [org.apache.karaf.service.acl.command.kar.uninstall, org.apache.karaf.service.acl.command.kar.install]
      2016-12-08 11:48:39,077 | INFO  | FelixStartLevel  | BlueprintContainerImpl           | 15 - org.apache.aries.blueprint.core - 1.6.1 | Bundle org.apache.karaf.jaas.modules/3.0.8 is waiting for namespace handlers [http://karaf.apache.org/xmlns/jaas/v1.0.0]
      2016-12-08 11:48:39,536 | INFO  | FelixStartLevel  | Activator                        | 58 - org.ops4j.pax.web.pax-web-runtime - 3.2.9 | EventAdmin support enabled, servlet events will be postet to topics.
      2016-12-08 11:48:39,537 | INFO  | FelixStartLevel  | Activator                        | 58 - org.ops4j.pax.web.pax-web-runtime - 3.2.9 | LogService support enabled, log events will be created.
      2016-12-08 11:48:39,537 | INFO  | FelixStartLevel  | Activator                        | 58 - org.ops4j.pax.web.pax-web-runtime - 3.2.9 | Pax Web started
      2016-12-08 11:48:39,617 | INFO  | pool-3-thread-1  | Server                           | 50 - org.eclipse.jetty.aggregate.jetty-all-server - 8.1.19.v20160209 | jetty-8.1.19.v20160209
      2016-12-08 11:48:39,645 | INFO  | pool-3-thread-1  | AbstractConnector                | 50 - org.eclipse.jetty.aggregate.jetty-all-server - 8.1.19.v20160209 | Started SelectChannelConnector@0.0.0.0:8181
      2016-12-08 11:48:39,645 | INFO  | pool-3-thread-1  | JettyServerImpl                  | 59 - org.ops4j.pax.web.pax-web-jetty - 3.2.9 | Pax Web available at [0.0.0.0]:[8181]
      2016-12-08 11:48:40,008 | INFO  | FelixStartLevel  | SecurityUtils                    | 30 - org.apache.sshd.core - 0.14.0 | BouncyCastle not registered, using the default JCE provider
      2016-12-08 11:48:41,205 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Starting JMX OSGi agent
      2016-12-08 11:48:41,219 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Registering MBean with ObjectName [osgi.compendium:service=cm,version=1.3,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108] for service with service.id [15]
      2016-12-08 11:48:41,229 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Registering org.osgi.jmx.service.cm.ConfigurationAdminMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.compendium:service=cm,version=1.3,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:48:41,229 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Registering org.osgi.jmx.framework.FrameworkMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=framework,version=1.7,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:48:41,230 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Registering org.osgi.jmx.framework.BundleStateMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=bundleState,version=1.7,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:48:41,232 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Registering org.osgi.jmx.framework.PackageStateMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=packageState,version=1.5,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:48:41,232 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Registering org.osgi.jmx.framework.wiring.BundleWiringStateMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=wiringState,version=1.1,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:48:41,232 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Registering org.osgi.jmx.framework.ServiceStateMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=serviceState,version=1.7,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:48:41,445 | INFO  | FelixStartLevel  | ContextLoaderListener            | 110 - org.springframework.osgi.extender - 1.2.1 | Starting [org.springframework.osgi.extender] bundle v.[1.2.1]
      2016-12-08 11:48:41,527 | INFO  | FelixStartLevel  | ExtenderConfiguration            | 110 - org.springframework.osgi.extender - 1.2.1 | No custom extender configuration detected; using defaults...
      2016-12-08 11:48:41,530 | INFO  | FelixStartLevel  | TimerTaskExecutor                | 105 - org.apache.servicemix.bundles.spring-context - 3.2.17.RELEASE_1 | Initializing Timer
      2016-12-08 11:48:41,817 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/blueprint/core
      2016-12-08 11:48:41,819 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/configuration/beans
      2016-12-08 11:48:41,820 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/configuration/parameterized-types
      2016-12-08 11:48:41,821 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/configuration/security
      2016-12-08 11:48:41,823 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://schemas.xmlsoap.org/wsdl/
      2016-12-08 11:48:41,824 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://www.w3.org/2005/08/addressing
      2016-12-08 11:48:41,825 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://schemas.xmlsoap.org/ws/2004/08/addressing
      2016-12-08 11:48:41,832 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-management (171) [org.apache.cxf.management.InstrumentationManager]
      2016-12-08 11:48:41,836 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-wsdl (173) [org.apache.cxf.wsdl.WSDLManager]
      2016-12-08 11:48:41,842 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-bindings-xml (175) [org.apache.cxf.binding.xml.XMLBindingFactory, org.apache.cxf.binding.xml.wsdl11.XMLWSDLExtensionLoader]
      2016-12-08 11:48:41,845 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-bindings-soap (176) [org.apache.cxf.binding.soap.SoapBindingFactory, org.apache.cxf.binding.soap.SoapTransportFactory]
      2016-12-08 11:48:41,849 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/blueprint/bindings/soap
      2016-12-08 11:48:41,852 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-transports-http (177) [org.apache.cxf.transport.http.HTTPTransportFactory, org.apache.cxf.transport.http.HTTPWSDLExtensionLoader, org.apache.cxf.transport.http.policy.HTTPClientAssertionBuilder, org.apache.cxf.transport.http.policy.HTTPServerAssertionBuilder, org.apache.cxf.transport.http.policy.NoOpPolicyInterceptorProvider]
      2016-12-08 11:48:41,854 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-ws-policy (199) [org.apache.cxf.ws.policy.PolicyEngine, org.apache.cxf.policy.PolicyDataEngine, org.apache.cxf.ws.policy.AssertionBuilderRegistry, org.apache.cxf.ws.policy.PolicyInterceptorProviderRegistry, org.apache.cxf.ws.policy.PolicyBuilder, org.apache.cxf.ws.policy.PolicyAnnotationListener, org.apache.cxf.ws.policy.attachment.ServiceModelPolicyProvider, org.apache.cxf.ws.policy.attachment.external.DomainExpressionBuilderRegistry, org.apache.cxf.ws.policy.attachment.external.EndpointReferenceDomainExpressionBuilder, org.apache.cxf.ws.policy.attachment.external.URIDomainExpressionBuilder, org.apache.cxf.ws.policy.attachment.wsdl11.Wsdl11AttachmentPolicyProvider, org.apache.cxf.ws.policy.mtom.MTOMAssertionBuilder, org.apache.cxf.ws.policy.mtom.MTOMPolicyInterceptorProvider]
      2016-12-08 11:48:41,865 | INFO  | FelixStartLevel  | HttpServiceFactoryImpl           | 58 - org.ops4j.pax.web.pax-web-runtime - 3.2.9 | Binding bundle: [org.apache.cxf.cxf-rt-transports-http [177]] to http service
      2016-12-08 11:48:41,888 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/transports/http/configuration
      2016-12-08 11:48:41,896 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/blueprint/simple
      2016-12-08 11:48:41,901 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-frontend-jaxws (179) [org.apache.cxf.jaxws.context.WebServiceContextResourceResolver]
      2016-12-08 11:48:41,907 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/blueprint/jaxws
      2016-12-08 11:48:41,964 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/blueprint/jaxrs
      2016-12-08 11:48:41,973 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/blueprint/jaxrs-client
      2016-12-08 11:48:41,979 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-bindings-corba (188) [org.apache.cxf.binding.corba.CorbaBindingFactory, org.apache.cxf.binding.corba.wsdl.WSDLExtensionRegister]
      2016-12-08 11:48:41,985 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/binding/coloc
      2016-12-08 11:48:41,987 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-transports-local (190) [org.apache.cxf.transport.local.LocalTransportFactory]
      2016-12-08 11:48:41,990 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-bindings-object (191) [org.apache.cxf.binding.object.ObjectBindingFactory]
      2016-12-08 11:48:41,993 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/blueprint/binding/object
      2016-12-08 11:48:41,998 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-transports-http-jetty (192) [org.apache.cxf.transport.http_jetty.JettyDestinationFactory, org.apache.cxf.transport.http_jetty.JettyHTTPServerEngineFactory, org.apache.cxf.transport.http.ContinuationProviderFactory]
      2016-12-08 11:48:42,008 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/transports/http-jetty/configuration
      2016-12-08 11:48:42,011 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-transports-jms (193) [org.apache.cxf.transport.jms.JMSTransportFactory, org.apache.cxf.transport.jms.wsdl11.JMSWSDLExtensionLoader]
      2016-12-08 11:48:42,015 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-transports-udp (195) [org.apache.cxf.transport.udp.UDPTransportFactory]
      2016-12-08 11:48:42,023 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/policy
      2016-12-08 11:48:42,025 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://www.w3.org/ns/ws-policy
      2016-12-08 11:48:42,027 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://www.w3.org/2006/07/ws-policy
      2016-12-08 11:48:42,030 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://schemas.xmlsoap.org/ws/2004/09/policy
      2016-12-08 11:48:42,031 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd
      2016-12-08 11:48:42,033 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd
      2016-12-08 11:48:42,035 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://www.w3.org/2000/09/xmldsig#
      2016-12-08 11:48:42,038 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702
      2016-12-08 11:48:42,042 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-ws-addr (217) [org.apache.cxf.ws.addressing.policy.AddressingAssertionBuilder, org.apache.cxf.ws.addressing.policy.UsingAddressingAssertionBuilder, org.apache.cxf.ws.addressing.policy.AddressingPolicyInterceptorProvider, org.apache.cxf.ws.addressing.impl.AddressingWSDLExtensionLoader, org.apache.cxf.ws.addressing.WSAddressingFeature$WSAddressingFeatureApplier, org.apache.cxf.ws.addressing.MAPAggregator$MAPAggregatorLoader]
      2016-12-08 11:48:42,047 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/ws/addressing
      2016-12-08 11:48:42,077 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-ws-mex (222) [org.apache.cxf.ws.mex.MEXServerListener]
      2016-12-08 11:48:42,078 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-ws-security (219) [org.apache.cxf.ws.security.policy.WSSecurityPolicyLoader, org.apache.cxf.ws.security.cache.CacheCleanupListener]
      2016-12-08 11:48:42,089 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-ws-rm (221) [org.apache.cxf.ws.rm.RMManager, org.apache.cxf.ws.rm.policy.RMPolicyInterceptorProvider, org.apache.cxf.ws.rm.policy.RM10AssertionBuilder, org.apache.cxf.ws.rm.policy.RM12AssertionBuilder, org.apache.cxf.ws.rm.policy.WSRMP12PolicyLoader, org.apache.cxf.ws.rm.policy.MC11PolicyLoader, org.apache.cxf.ws.rm.policy.RSPPolicyLoader]
      2016-12-08 11:48:42,095 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/ws/rm/manager
      2016-12-08 11:48:42,097 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://schemas.xmlsoap.org/ws/2005/02/rm/policy
      2016-12-08 11:48:42,100 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-javascript (223) [org.apache.cxf.javascript.JavascriptServerListener]
      2016-12-08 11:48:42,127 | INFO  | FelixStartLevel  | NamespaceHandlerRegisterer       | 170 - org.apache.cxf.cxf-core - 3.1.5 | Registered blueprint namespace handler for http://cxf.apache.org/clustering
      2016-12-08 11:48:42,132 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.cxf.cxf-rt-features-metrics (228) [org.apache.cxf.metrics.MetricsProvider]
      2016-12-08 11:48:42,145 | INFO  | atures.logging]) | Activator                        | 230 - org.apache.cxf.cxf-rt-features-logging - 3.1.5 | CXF message logging feature disabled
      2016-12-08 11:48:42,311 | INFO  | ctivemq.server]) | ActiveMQServiceFactory           | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Starting broker amq-broker
      2016-12-08 11:48:42,333 | INFO  | ctivemq.server]) | ActiveMQServiceFactory$1         | 105 - org.apache.servicemix.bundles.spring-context - 3.2.17.RELEASE_1 | Refreshing ActiveMQServiceFactory.1(bundle=org.apache.activemq.activemq-osgi, config=file:/O:/groundstar/inform-trunk/realtime/INF/java/apache-servicemix-6.1.3/etc/activemq.xml): startup date [Thu Dec 08 11:48:42 CET 2016]; root of context hierarchy
      2016-12-08 11:48:42,351 | INFO  | ctivemq.server]) | ActiveMQServiceFactory$1         | 105 - org.apache.servicemix.bundles.spring-context - 3.2.17.RELEASE_1 | Application Context service already unpublished
      2016-12-08 11:48:42,387 | INFO  | ctivemq.server]) | XmlBeanDefinitionReader          | 103 - org.apache.servicemix.bundles.spring-beans - 3.2.17.RELEASE_1 | Loading XML bean definitions from OSGi resource[file:/O:/groundstar/inform-trunk/realtime/INF/java/apache-servicemix-6.1.3/etc/activemq.xml|bnd.id=122|bnd.sym=org.apache.activemq.activemq-osgi]
      2016-12-08 11:48:42,528 | INFO  | FelixStartLevel  | Activator                        | 151 - org.apache.camel.camel-core - 2.16.4 | Camel activator starting
      2016-12-08 11:48:42,536 | INFO  | FelixStartLevel  | Activator                        | 151 - org.apache.camel.camel-core - 2.16.4 | Camel activator started
      2016-12-08 11:48:42,596 | INFO  | ctivemq.server]) | DefaultListableBeanFactory       | 103 - org.apache.servicemix.bundles.spring-beans - 3.2.17.RELEASE_1 | Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@726c8d2e: defining beans [org.apache.activemq.xbean.XBeanBrokerService#0]; root of factory hierarchy
      2016-12-08 11:48:42,636 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Adding the extensions from bundle org.apache.camel.camel-cxf-transport (233) [org.apache.camel.component.cxf.transport.CamelTransportFactory]
      2016-12-08 11:48:42,699 | INFO  | ctivemq.server]) | PListStoreImpl                   | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | PListStore:[O:\groundstar\inform-trunk\realtime\INF\java\apache-servicemix-6.1.3\data\amq-broker\amq-broker\tmp_storage] started
      2016-12-08 11:48:42,702 | INFO  | ctivemq.server]) | ActiveMQServiceFactory$1         | 105 - org.apache.servicemix.bundles.spring-context - 3.2.17.RELEASE_1 | Publishing application context as OSGi service with properties {org.springframework.context.service.name=org.apache.activemq.activemq-osgi, Bundle-SymbolicName=org.apache.activemq.activemq-osgi, Bundle-Version=5.12.3}
      2016-12-08 11:48:42,723 | INFO  | FelixStartLevel  | GenericResourceManager           | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Resource manager is unrecoverable
      2016-12-08 11:48:42,727 | INFO  | ctivemq.server]) | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Using Persistence Adapter: KahaDBPersistenceAdapter[O:\groundstar\inform-trunk\realtime\INF\java\apache-servicemix-6.1.3\data\amq-broker\kahadb]
      2016-12-08 11:48:43,012 | INFO  | FelixStartLevel  | Activator                        | 267 - org.apache.camel.camel-script - 2.16.4 | Camel-Script activator starting
      2016-12-08 11:48:43,083 | INFO  | FelixStartLevel  | Activator                        | 267 - org.apache.camel.camel-script - 2.16.4 | Found ScriptEngineFactory in bundle: groovy-all
      2016-12-08 11:48:43,086 | INFO  | FelixStartLevel  | Activator                        | 267 - org.apache.camel.camel-script - 2.16.4 | Camel-Script activator started
      2016-12-08 11:48:43,094 | INFO  | FelixStartLevel  | Activator                        | 267 - org.apache.camel.camel-script - 2.16.4 | Found ScriptEngineFactory in bundle: scriptengines-groovy
      2016-12-08 11:48:43,316 | INFO  | ctivemq.server]) | MessageDatabase                  | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | KahaDB is version 6
      2016-12-08 11:48:43,330 | INFO  | ctivemq.server]) | MessageDatabase                  | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Recovering from the journal @1:149110
      2016-12-08 11:48:43,330 | INFO  | ctivemq.server]) | MessageDatabase                  | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Recovery replayed 1 operations from the journal in 0.008 seconds.
      2016-12-08 11:48:43,467 | INFO  | ctivemq.server]) | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Apache ActiveMQ 5.12.3 (amq-broker, ID:M4700-JJANSEN-60254-1481194123347-0:1) is starting
      2016-12-08 11:48:43,514 | INFO  | ctivemq.server]) | TransportServerThreadSupport     | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Listening for connections at: tcp://127.0.0.1:61616?maximumConnections=1000&wireFormat.maxFrameSize=104857600
      2016-12-08 11:48:43,514 | INFO  | ctivemq.server]) | TransportConnector               | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Connector openwire started
      2016-12-08 11:48:43,515 | INFO  | ctivemq.server]) | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Apache ActiveMQ 5.12.3 (amq-broker, ID:M4700-JJANSEN-60254-1481194123347-0:1) started
      2016-12-08 11:48:43,515 | INFO  | ctivemq.server]) | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | For help or more information please see: http://activemq.apache.org
      2016-12-08 11:48:43,517 | WARN  | ctivemq.server]) | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Store limit is 102400 mb (current store usage is 0 mb). The data directory: O:\groundstar\inform-trunk\realtime\INF\java\apache-servicemix-6.1.3\data\amq-broker\kahadb only has 31734 mb of usable space - resetting to maximum available disk space: 31734 mb
      2016-12-08 11:48:43,518 | WARN  | ctivemq.server]) | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Temporary Store limit is 51200 mb (current temporary store usage is 0 mb). The temporary data directory: O:\groundstar\inform-trunk\realtime\INF\java\apache-servicemix-6.1.3\data\amq-broker only has 31734 mb of usable space - resetting to maximum available disk space: 31734 mb
      2016-12-08 11:48:43,929 | INFO  | FelixStartLevel  | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | Apache Camel 2.16.4 (CamelContext: ObjectServerConnection) is starting
      2016-12-08 11:48:43,931 | INFO  | FelixStartLevel  | ManagedManagementStrategy        | 151 - org.apache.camel.camel-core - 2.16.4 | JMX is enabled
      2016-12-08 11:48:44,008 | INFO  | FelixStartLevel  | DefaultRuntimeEndpointRegistry   | 151 - org.apache.camel.camel-core - 2.16.4 | Runtime endpoint registry is in extended mode gathering usage statistics of all incoming and outgoing endpoints (cache limit: 1000)
      2016-12-08 11:48:44,011 | INFO  | FelixStartLevel  | ActiveMQComponentResolver        | 236 - org.apache.servicemix.activemq.camel - 6.1.3 | Creating an instance of the ActiveMQComponent (activemq:)
      2016-12-08 11:48:44,099 | INFO  | FelixStartLevel  | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | AllowUseOriginalMessage is enabled. If access to the original message is not needed, then its recommended to turn this option off as it may improve performance.
      2016-12-08 11:48:44,099 | INFO  | FelixStartLevel  | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | StreamCaching is not in use. If using streams then its recommended to enable stream caching. See more details at http://camel.apache.org/stream-caching.html
      2016-12-08 11:48:44,144 | INFO  | FelixStartLevel  | TransportConnector               | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Connector vm://amq-broker started
      2016-12-08 11:48:44,177 | INFO  | FelixStartLevel  | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | Route: test-aqm-shutdown-route started and consuming from: Endpoint[activemq://buffered-route?asyncConsumer=5&concurrentConsumers=5]
      2016-12-08 11:48:44,178 | INFO  | FelixStartLevel  | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | Total 1 routes, of which 1 is started.
      2016-12-08 11:48:44,181 | INFO  | FelixStartLevel  | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | Apache Camel 2.16.4 (CamelContext: ObjectServerConnection) started in 0.249 seconds
      2016-12-08 11:48:44,189 | INFO  | lixDispatchQueue | Main                             |  -  -  | Karaf started in 7s. Bundle stats: 279 active, 279 total
      2016-12-08 11:48:52,236 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.camel.karaf.camel-karaf-commands/2.16.4
      2016-12-08 11:48:52,286 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle activemq-karaf/5.12.3
      2016-12-08 11:48:52,309 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.activemq.activemq-osgi/5.12.3
      2016-12-08 11:48:52,315 | INFO  | FelixShutdown    | ActiveMQServiceFactory           | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Stopping broker org.apache.activemq.server.f7a8ec94-118b-4de2-b8a9-a68425749156
      2016-12-08 11:48:52,316 | INFO  | FelixShutdown    | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Apache ActiveMQ 5.12.3 (amq-broker, ID:M4700-JJANSEN-60254-1481194123347-0:1) is shutting down
      2016-12-08 11:48:52,318 | INFO  | FelixShutdown    | TransportConnector               | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Connector openwire stopped
      2016-12-08 11:48:52,324 | WARN  | [buffered-route] | faultJmsMessageListenerContainer | 145 - org.apache.servicemix.bundles.spring-jms - 3.2.17.RELEASE_1 | Setup of JMS message listener invoker failed for destination 'buffered-route' - trying to recover. Cause: The Consumer is closed
      2016-12-08 11:48:52,330 | INFO  | meSize=104857600 | TcpTransportServer               | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | socketQueue interuppted - stopping
      2016-12-08 11:48:52,330 | ERROR | meSize=104857600 | TransportConnector               | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Could not accept connection : java.lang.InterruptedException
      2016-12-08 11:48:52,333 | INFO  | m://amq-broker#0 | PooledConnectionFactory          | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Expiring connection ActiveMQConnection {id=ID:M4700-JJANSEN-60254-1481194123347-3:1,clientId=ID:M4700-JJANSEN-60254-1481194123347-2:1,started=false} on IOException: peer (vm://amq-broker#1) stopped.
      2016-12-08 11:48:52,333 | INFO  | FelixShutdown    | TransportConnector               | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Connector vm://amq-broker stopped
      2016-12-08 11:48:52,336 | INFO  | FelixShutdown    | PListStoreImpl                   | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | PListStore:[O:\groundstar\inform-trunk\realtime\INF\java\apache-servicemix-6.1.3\data\amq-broker\amq-broker\tmp_storage] stopped
      2016-12-08 11:48:52,336 | INFO  | FelixShutdown    | KahaDBStore                      | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Stopping async queue tasks
      2016-12-08 11:48:52,336 | INFO  | FelixShutdown    | KahaDBStore                      | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Stopping async topic tasks
      2016-12-08 11:48:52,336 | INFO  | FelixShutdown    | KahaDBStore                      | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Stopped KahaDB
      2016-12-08 11:48:52,629 | INFO  | FelixShutdown    | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Apache ActiveMQ 5.12.3 (amq-broker, ID:M4700-JJANSEN-60254-1481194123347-0:1) uptime 9.912 seconds
      2016-12-08 11:48:52,629 | INFO  | FelixShutdown    | BrokerService                    | 122 - org.apache.activemq.activemq-osgi - 5.12.3 | Apache ActiveMQ 5.12.3 (amq-broker, ID:M4700-JJANSEN-60254-1481194123347-0:1) is shutdown
      2016-12-08 11:48:52,629 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.shell.ssh/3.0.8
      2016-12-08 11:48:52,644 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.kar.command/3.0.8
      2016-12-08 11:48:52,661 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.package.command/3.0.8
      2016-12-08 11:48:52,666 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.service.command/3.0.8
      2016-12-08 11:48:52,674 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.log.command/3.0.8
      2016-12-08 11:48:52,701 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.diagnostic.command/3.0.8
      2016-12-08 11:48:52,706 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.jaas.command/3.0.8
      2016-12-08 11:48:52,753 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.instance.command/3.0.8
      2016-12-08 11:48:52,801 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.web.command/3.0.8
      2016-12-08 11:48:52,809 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.http.command/3.0.8
      2016-12-08 11:48:52,813 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.features.obr/3.0.8
      2016-12-08 11:48:52,835 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.obr.command/3.0.8
      2016-12-08 11:48:52,867 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.shell.commands/3.0.8
      2016-12-08 11:48:52,928 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.system.command/3.0.8
      2016-12-08 11:48:52,939 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.shell.help/3.0.8
      2016-12-08 11:48:52,942 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.bundle.command/3.0.8
      2016-12-08 11:48:52,981 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.features.command/3.0.8
      2016-12-08 11:48:52,996 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.deployer.wrap/3.0.8
      2016-12-08 11:48:53,000 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle blueprint.xml/0.0.0
      2016-12-08 11:48:53,002 | INFO  | FelixShutdown    | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | Apache Camel 2.16.4 (CamelContext: ObjectServerConnection) is shutting down
      2016-12-08 11:48:53,003 | INFO  | FelixShutdown    | DefaultShutdownStrategy          | 151 - org.apache.camel.camel-core - 2.16.4 | Starting to graceful shutdown 1 routes (timeout 300 seconds)
      2016-12-08 11:49:02,336 | ERROR | [buffered-route] | faultJmsMessageListenerContainer | 145 - org.apache.servicemix.bundles.spring-jms - 3.2.17.RELEASE_1 | Could not refresh JMS Connection for destination 'buffered-route' - retrying in 5000 ms. Cause: Error while attempting to add new Connection to the pool; nested exception is javax.jms.JMSException: Could not create Transport. Reason: java.io.IOException: Broker named 'amq-broker' does not exist.
      2016-12-08 11:49:07,339 | INFO  | 5 - ShutdownTask | DefaultShutdownStrategy          | 151 - org.apache.camel.camel-core - 2.16.4 | Route: test-aqm-shutdown-route shutdown complete, was consuming from: Endpoint[activemq://buffered-route?asyncConsumer=5&concurrentConsumers=5]
      2016-12-08 11:49:07,340 | INFO  | FelixShutdown    | DefaultShutdownStrategy          | 151 - org.apache.camel.camel-core - 2.16.4 | Graceful shutdown of 1 routes completed in 14 seconds
      2016-12-08 11:49:07,344 | INFO  | FelixShutdown    | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | Apache Camel 2.16.4 (CamelContext: ObjectServerConnection) uptime 23.415 seconds
      2016-12-08 11:49:07,344 | INFO  | FelixShutdown    | BlueprintCamelContext            | 151 - org.apache.camel.camel-core - 2.16.4 | Apache Camel 2.16.4 (CamelContext: ObjectServerConnection) is shutdown in 14.342 seconds
      2016-12-08 11:49:07,345 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.servicemix.activemq.camel/6.1.3
      2016-12-08 11:49:07,346 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.servicemix.activemq.service/6.1.3
      2016-12-08 11:49:07,348 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.camel.camel-cxf/2.16.4
      2016-12-08 11:49:07,350 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.camel.camel-cxf-transport/2.16.4
      2016-12-08 11:49:07,352 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.camel.camel-blueprint/2.16.4
      2016-12-08 11:49:07,353 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.cxf.cxf-rt-features-clustering/3.1.5
      2016-12-08 11:49:07,354 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.features.core/3.0.8
      2016-12-08 11:49:07,360 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.deployer.kar/3.0.8
      2016-12-08 11:49:07,361 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.kar.core/3.0.8
      2016-12-08 11:49:07,361 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.deployer.features/3.0.8
      2016-12-08 11:49:07,363 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.management.server/3.0.8
      2016-12-08 11:49:07,365 | INFO  | FelixShutdown    | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Unregistering org.osgi.jmx.service.cm.ConfigurationAdminMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.compendium:service=cm,version=1.3,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:49:07,365 | INFO  | FelixShutdown    | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Unregistering org.osgi.jmx.framework.FrameworkMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=framework,version=1.7,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:49:07,365 | INFO  | FelixShutdown    | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Unregistering org.osgi.jmx.framework.BundleStateMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=bundleState,version=1.7,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:49:07,365 | INFO  | FelixShutdown    | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Unregistering org.osgi.jmx.framework.PackageStateMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=packageState,version=1.5,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:49:07,365 | INFO  | FelixShutdown    | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Unregistering org.osgi.jmx.framework.wiring.BundleWiringStateMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=wiringState,version=1.1,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:49:07,365 | INFO  | FelixShutdown    | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Unregistering org.osgi.jmx.framework.ServiceStateMBean to MBeanServer com.sun.jmx.mbeanserver.JmxMBeanServer@5e481248 with name osgi.core:type=serviceState,version=1.7,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108
      2016-12-08 11:49:07,366 | WARN  | FelixShutdown    | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Task rejected for JMX Notification dispatch of event [org.osgi.framework.ServiceEvent[source=[javax.management.MBeanServer]]] - Dispatcher may have been shutdown
      2016-12-08 11:49:07,369 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.package.core/3.0.8
      2016-12-08 11:49:07,370 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.service.core/3.0.8
      2016-12-08 11:49:07,371 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.log.core/3.0.8
      2016-12-08 11:49:07,373 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.diagnostic.core/3.0.8
      2016-12-08 11:49:07,375 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.instance.core/3.0.8
      2016-12-08 11:49:07,376 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.config.command/3.0.8
      2016-12-08 11:49:07,386 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.config.core/3.0.8
      2016-12-08 11:49:07,387 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.web.core/3.0.8
      2016-12-08 11:49:07,389 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.http.core/3.0.8
      2016-12-08 11:49:07,390 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.obr.core/3.0.8
      2016-12-08 11:49:07,390 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.system.core/3.0.8
      2016-12-08 11:49:07,391 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.jaas.modules/3.0.8
      2016-12-08 11:49:07,394 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.jaas.config/3.0.8
      2016-12-08 11:49:07,395 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.shell.console/3.0.8
      2016-12-08 11:49:07,401 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.bundle.core/3.0.8
      2016-12-08 11:49:07,403 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.deployer.blueprint/3.0.8
      2016-12-08 11:49:07,404 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.karaf.deployer.spring/3.0.8
      2016-12-08 11:49:07,404 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.aries.blueprint.core/1.6.1
      2016-12-08 11:49:07,407 | INFO  | FelixShutdown    | BlueprintExtender                | 15 - org.apache.aries.blueprint.core - 1.6.1 | Destroying BlueprintContainer for bundle org.apache.aries.blueprint.cm/1.0.8
      2016-12-08 11:49:07,412 | INFO  | FelixShutdown    | ContextLoaderListener            | 110 - org.springframework.osgi.extender - 1.2.1 | Stopping [org.springframework.osgi.extender] bundle v.[1.2.1]
      2016-12-08 11:49:07,418 | INFO  | FelixShutdown    | TimerTaskExecutor                | 105 - org.apache.servicemix.bundles.spring-context - 3.2.17.RELEASE_1 | Cancelling Timer
      2016-12-08 11:49:07,435 | INFO  | FelixStartLevel  | Activator                        | 267 - org.apache.camel.camel-script - 2.16.4 | Camel-Script activator stopping
      2016-12-08 11:49:07,438 | INFO  | FelixStartLevel  | Activator                        | 267 - org.apache.camel.camel-script - 2.16.4 | Camel-Script activator stopped
      2016-12-08 11:49:07,443 | INFO  | FelixStartLevel  | Activator                        | 151 - org.apache.camel.camel-core - 2.16.4 | Camel activator stopping
      2016-12-08 11:49:07,444 | INFO  | FelixStartLevel  | Activator                        | 151 - org.apache.camel.camel-core - 2.16.4 | Camel activator stopped
      2016-12-08 11:49:07,533 | INFO  | FelixStartLevel  | HttpServiceFactoryImpl           | 58 - org.ops4j.pax.web.pax-web-runtime - 3.2.9 | Unbinding bundle: [org.apache.cxf.cxf-rt-transports-http [177]]
      2016-12-08 11:49:07,534 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 192
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 193
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 195
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 228
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 199
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 233
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 171
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 173
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 175
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 176
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 177
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 179
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 217
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 219
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 188
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 221
      2016-12-08 11:49:07,535 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 190
      2016-12-08 11:49:07,536 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 222
      2016-12-08 11:49:07,536 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 191
      2016-12-08 11:49:07,536 | INFO  | FelixStartLevel  | CXFActivator                     | 170 - org.apache.cxf.cxf-core - 3.1.5 | Removing the extensions for bundle 223
      2016-12-08 11:49:07,538 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Stopping JMX OSGi agent
      2016-12-08 11:49:07,538 | INFO  | FelixStartLevel  | core                             | 96 - org.apache.aries.jmx.core - 1.1.6 | Unregistering MBean with ObjectName [osgi.compendium:service=cm,version=1.3,framework=org.apache.felix.framework,uuid=8dfc1329-4ec7-4f49-9b50-bbc6c4ad2108] for service with service.id [15]
      2016-12-08 11:49:07,567 | INFO  | pool-3-thread-2  | ContextHandler                   | 50 - org.eclipse.jetty.aggregate.jetty-all-server - 8.1.19.v20160209 | stopped HttpServiceContext{httpContext=DefaultHttpContext [bundle=org.apache.cxf.cxf-rt-transports-http [177], contextID=default]}
      2016-12-08 11:49:07,620 | INFO  | FelixStartLevel  | Activator                        | 58 - org.ops4j.pax.web.pax-web-runtime - 3.2.9 | Pax Web stopped
      

      Attachments

        1. llinfo_servicemix.log
          73 kB
          Jörg Jansen
        2. lldebug_servicemix.log
          6.52 MB
          Jörg Jansen

        Activity

          People

            Unassigned Unassigned
            jansenj Jörg Jansen
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: