Juan, No, you can register jaxws in the NMR.
If you get a look on the SMX4 examples, you can see : - in the cxf-osgi exemple, the beans.xml looks like this : <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd [1] http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd [2]"> <import resource="classpath:META-INF/cxf/cxf.xml" /> <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> <import resource="classpath:META-INF/cxf/cxf-extension-http.xml" /> <import resource="classpath:META-INF/cxf/osgi/cxf-extension-osgi.xml" /> <jaxws:endpoint id="helloWorld" implementor="org.apache.servicemix.examples.cxf.HelloWorldImpl" address="/HelloWorld"/> </beans> This beans.xml will deploy the jaxws endpoint directly on HTTP (using the cxf-extension-http and cxf-extension-soap). We define HTTP publishing using address="/HelloWorld" (the / at the beginning is important). - on the other hand, in the cxf-nmr exemple (which a OSGi bundle too), the beans.xml looks like this : <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd [3] http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd [4]"> <import resource="classpath:META-INF/cxf/cxf.xml" /> <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> <import resource="classpath:META-INF/cxf/transport/nmr/cxf-transport-nmr.xml" /> <jaxws:endpoint id="helloWorld" implementor="org.apache.servicemix.examples.cxf.HelloWorldImpl" address="nmr:HelloWorld" /> </beans> Using this beans.xml (and the cxf-transport-nmr.xml), your OSGi bundle will be registered directly in the NMR and will be available for others BC components. One time your OSGi bundle is registered in the NMR, you can use it. For exemple, in the deploy directory, you can create a test.xml file looking like this : <beans xmlns="http://www.springframework.org/schema/beans" xmlns:http="http://servicemix.apache.org/http/1.0" xmlns:fsb="urn:fsb" xmlns:osgi="http://www.springframework.org/schema/osgi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans [5] http://www.springframework.org/schema/beans/spring-beans.xsd [6] http://www.springframework.org/schema/osgi [7] http://www.springframework.org/schema/osgi/spring-osgi.xsd [8] http://servicemix.apache.org/http/1.0 [9] http://servicemix.apache.org/http/1.0/servicemix-http.xsd [10]"> <bean class="org.apache.servicemix.common.osgi.EndpointExporter"/> <http:endpoint service="fsb:AutomaticSimulation" endpoint="AutomaticSimulationHTTP" role="consumer" locationUri="http://0.0.0.0:8192/HelloWorld" defaultMep="http://www.w3.org/2004/08/wsdl/in-out" soap="false" targetEndpoint="HelloWorld"/> </beans> FYI, currently, I make a set of samples with associated documentation that (I hope) will be added to the SMX4 tutorial. Regards JB -- Jean-Baptiste Onofré [EMAIL PROTECTED] BuildProcess/AutoDeploy Project Leader http://buildprocess.sourceforge.net On Mon 03/11/08 16:35, Juan F. Valdés [EMAIL PROTECTED] wrote: Hi Jean-Baptiste, Thank you for your response. I think if i create the endpoint on this way i would be exposing my OSGi service as JAX-WS Web Service, would't I? I don't want that, and this is the reason for looking for a solution where the creation of NMR endpoint was only "logical" (internal to the bus). It's similar to the concept of JBI Service Engine without binding it to a BC, but I would like not to use JBI in my prototype. Regards, Juan. Jean-Baptiste Onofré wrote: > > Hi Juan, > > You can create a CXF like OSGi bundle using jxws:endpoint with a > address type nmr:MyService. > > With that, your OSGi bundle will be registered in the NMR and you > can use it from others components. > > Regards > -- > Jean-Baptiste Onofré > [EMAIL PROTECTED] [11] > BuildProcess/AutoDeploy Project Leader > http://buildprocess.sourceforge.net [12]> > > On Mon 03/11/08 14:59, Juan F. Valdés [EMAIL PROTECTED] [13] > wrote: > > Hi Gert, > > First of all, thank you so much for helping me. Now I have a better > understanding of NMR. > > Gert Vanthienen wrote: > > > > > > If you register an endpoint for your service in the NMR, you can > access > > it from you camel orchestration bundle. The camel-nmr shows you > how > > different Camel routes can communicate over the NMR, but you can > connect > > anything there. A service that has an endpoint registered on the > NMR, > > is not necessarily available for remote calls. > > > > But, how can I register an endpoint for my OSGi service? > > I mean, in camel-nmr example "nmr:ExampleRouter" endpoint is > implicitly > created by NMR Component, but i need to link a NMR endpoint with my > service, > a simple HelloWorld OSGi service: > > class="com.santalucia.esb.primer.osgi.HolaMundoOSGiImpl"> > > Hola Mundo OSGi > > I could use > http://fusesource.com/docs/esb/4.0/fsf_se/ESBFSFSEDeployService.html [14]> > [1] > EndpointExporter to expose the bundle as a JBI Service Unit, and use > the > JBI endpoint in the orchestration bundle through NMR, but I think > there is a > simpler way (without JBI) to do it, it is possible? > > I had thought camel log component used the NMR-OSGi linking i was > looking > for but I realized it's a native Camel component > > Cheers, > > Juan > > -- > View this message in context: > http://www.nabble.com/Can-I-route-OSGi-calls-in-SMX4--tp20262134p20303228.html [15]> > [2] > Sent from the ServiceMix - User mailing list archive at Nabble.com. > > > > Links: > ------ > [1] > http://fusesource.com/docs/esb/4.0/fsf_se/ESBFSFSEDeployService.html [16]> > [2] > http://www.nabble.com/Can-I-route-OSGi-calls-in-SMX4--tp20262134p20303228.html [17]> > > -- View this message in context: http://www.nabble.com/Can-I-route-OSGi-calls-in-SMX4--tp20262134p20304896.html [18] Sent from the ServiceMix - User mailing list archive at Nabble.com. Links: ------ [1] http://www.springframework.org/schema/beans/spring-beans.xsd [2] http://cxf.apache.org/schemas/jaxws.xsd [3] http://www.springframework.org/schema/beans/spring-beans.xsd [4] http://cxf.apache.org/schemas/jaxws.xsd [5] http://www.springframework.org/schema/beans [6] http://www.springframework.org/schema/beans/spring-beans.xsd [7] http://www.springframework.org/schema/osgi [8] http://www.springframework.org/schema/osgi/spring-osgi.xsd [9] http://servicemix.apache.org/http/1.0 [10] http://servicemix.apache.org/http/1.0/servicemix-http.xsd [11] mailto:[EMAIL PROTECTED] [12] http://buildprocess.sourceforge.net</font [13] mailto:[EMAIL PROTECTED] [14] http://fusesource.com/docs/esb/4.0/fsf_se/ESBFSFSEDeployService.html</font [15] http://www.nabble.com/Can-I-route-OSGi-calls-in-SMX4--tp20262134p20303228.html</font [16] http://fusesource.com/docs/esb/4.0/fsf_se/ESBFSFSEDeployService.html</font [17] http://www.nabble.com/Can-I-route-OSGi-calls-in-SMX4--tp20262134p20303228.html</font [18] http://www.nabble.com/Can-I-route-OSGi-calls-in-SMX4--tp20262134p20304896.html