Hello, Please can someone help me on the Camel CXF Blueprint - GracePeriod warning that I am getting.
I am using the below CXF Blueprint, and when I deploy the same in ServiceMix 4.3.0 as a bundle, its not getting started. I can see the following warning in the logs, [ 240] [Active ] [*GracePeriod *] [ ] [ 60] camel-cxf-demo (1.0.0.SNAPSHOT) 17:05:56,308 | WARN | rint Extender: 1 | BlueprintContainerImpl | 7 - org.apache.aries.blueprint - 0.2.0.incubating | Bundle com.mycompany.camel-cxf-demo is *waiting for namespace handlers [(&(objectClass=org.apache.aries.blueprint.NamespaceHandler)(osgi.service.blueprint.namespace=http://camel.apache.org/schema/blueprint/cxf))]* ***************************************************************************** <?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.0.0" xmlns:jaxws="http://cxf.apache.org/blueprint/jaxws" xmlns:cxf="http://cxf.apache.org/blueprint/core" xmlns:camel="http://camel.apache.org/schema/blueprint" xmlns:camelcxf="http://camel.apache.org/schema/blueprint/cxf" xsi:schemaLocation=" http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd http://cxf.apache.org/blueprint/jaxws http://cxf.apache.org/schemas/blueprint/jaxws.xsd http://cxf.apache.org/blueprint/core http://cxf.apache.org/schemas/blueprint/core.xsd"> <camelcxf:cxfEndpoint id="helloworld-ws" address="http://localhost:9090/services/HelloWorldService" endpointName="SOAPOverHTTP" serviceName="HelloWorldService" serviceClass="com.mycompany.demos.camel.cxf.HelloWorldService"/> <camelContext id="camel" xmlns="http://camel.apache.org/schema/blueprint"> <route> <from uri="cxf:bean:helloworld-ws"/> <choice> <when> <simple>${in.header.operationName} == 'greet'</simple> <log message="HelloWorld Web Service invoked!"/> </when> </choice> </route> </camelContext> </blueprint> ***************************************************************************** Thanks, Chaks. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-CXF-Blueprint-GracePeriod-WARNING-tp5013328p5013328.html Sent from the Camel - Users mailing list archive at Nabble.com.