Re: How to handle "applications" in OSGi that offer / consume cxf services and want to enforce application level rules

2014-09-25 Thread Sergey Beryozkin
I misunderstood what Christian suggested, as far as configuring the URI with a servlet name was concerned. Christian explained to me (thanks) it was for the internal purposes only to be used for bootstrapping the common configuration, etc, where a URI would have the internal schema and public s

Re: How to handle "applications" in OSGi that offer / consume cxf services and want to enforce application level rules

2014-09-25 Thread Sergey Beryozkin
On 25/09/14 15:07, Christian Schneider wrote: On 25.09.2014 12:44, Sergey Beryozkin wrote: Hi Christian On 25/09/14 08:51, Christian Schneider wrote: Having one servlet per bundle would definately work. I see two problems though: - Each servlet has its own base path where all services reside th

Re: How to handle "applications" in OSGi that offer / consume cxf services and want to enforce application level rules

2014-09-25 Thread Christian Schneider
The filter approach is generally a good technique as it allows us more flexibility. It has some drawbacks though. The main issue for me is naming. If you have one servlet per application you can name it like the application. The endpoint uris then only have to be unique inside the application.

Re: Why Apache CXF not being used in WebLogic 12c ?

2014-09-25 Thread Krzysztof Sobkowiak
Hi Try to add following entry in weblogic-application.xml META-INF/services/* Best regards Krzysztof On 25.09.2014 15:08, Felix.1973 wrote: > Thanks Daniel a lot for your answer. > > Well, I don't have any jaxws:endpoint because using Intellij, when I enabled > CXF support, t

Re: How to handle "applications" in OSGi that offer / consume cxf services and want to enforce application level rules

2014-09-25 Thread Christian Schneider
On 25.09.2014 12:44, Sergey Beryozkin wrote: Hi Christian On 25/09/14 08:51, Christian Schneider wrote: Having one servlet per bundle would definately work. I see two problems though: - Each servlet has its own base path where all services reside then. Not necessarily a bad thing but it would li

JMS: configuration of ClientId using JMS compliant style (CXF 3.x.x); unsubscribe from durable subscriptions

2014-09-25 Thread Andrei Shakirin
Hi, I am analysing possible extension of ClientId JMS configuration using JMS compliant style (through URL). 1. ClientId. Use case: the CXF client and service communicating using JMS Topic and durable subscription. Both client and service using ClientId and durable subscription name in order t

Re: Why Apache CXF not being used in WebLogic 12c ?

2014-09-25 Thread Felix.1973
Thanks Daniel a lot for your answer. Well, I don't have any jaxws:endpoint because using Intellij, when I enabled CXF support, the HelloWorld example appear with cxf-servlet.xml and web.xml and I did not change anything. When I execute in Intellij it works using CXF so I thought all needed things

Re: Why Apache CXF not being used in WebLogic 12c ?

2014-09-25 Thread Daniel Kulp
Well, #1, your beans.xml doesn’t describe any services for CXF to expose. There aren’t any jaxws:endpoint things or similar. Not sure how you are expecting the service to be started. 2: You MIGHT want to try looking at https://metro.java.net/guide/ch02.html#weblogic-10 and see what the Metr

Re: How to handle "applications" in OSGi that offer / consume cxf services and want to enforce application level rules

2014-09-25 Thread Daniel Kulp
On Sep 25, 2014, at 3:51 AM, Christian Schneider wrote: > Having one servlet per bundle would definately work. > I see two problems though: > - Each servlet has its own base path where all services reside then. Not > necessarily a bad thing but it would limit the freedom of the user to define

Why Apache CXF not being used in WebLogic 12c ?

2014-09-25 Thread Felix.1973
Hi there I need help as I tried many things, I checked the Internet for help for many days but still having the same problem. Please any help would be very appreciated. I am developing using IDEA Intellij 11.0.2. Inside Intellij works perfectly as CXF is used. I deploy with no error in WebLogic

Re: How to handle "applications" in OSGi that offer / consume cxf services and want to enforce application level rules

2014-09-25 Thread Sergey Beryozkin
Hi Christian On 25/09/14 08:51, Christian Schneider wrote: Having one servlet per bundle would definately work. I see two problems though: - Each servlet has its own base path where all services reside then. Not necessarily a bad thing but it would limit the freedom of the user to define where hi

Re: How to handle "applications" in OSGi that offer / consume cxf services and want to enforce application level rules

2014-09-25 Thread Christian Schneider
Having one servlet per bundle would definately work. I see two problems though: - Each servlet has its own base path where all services reside then. Not necessarily a bad thing but it would limit the freedom of the user to define where his endpoints live. - Added configuration overhead and compl