FIQL with objects containing Collection

2017-02-10 Thread javaworkinggirl
Hi. I have an object that contains a Collection. What is the FIQL syntax to filter on values in the Collection? I have tried: 'features==3' returns nothing even though the list does contain FeatureEntitlements that have 3 in the Collection of features 'features=gt=3' incorrectly returns every F

Re: Swagger2Feature jar and version

2016-06-22 Thread javaworkinggirl
Thank you for updating the sample. I was able to get 1 endpoint working, but not multiple endpoints in the same application. Any ideas? -- View this message in context: http://cxf.547215.n5.nabble.com/Swagger2Feature-jar-and-version-tp5769165p5769674.html Sent from the cxf-user mailing list a

Swagger2Feature with multiple endpoints and multiple ports

2016-06-22 Thread javaworkinggirl
I got Swagger2Feature to work on 1 of my apps endpoints. I have tried to get Swagger2Feature working on 3 endpoints on 3 different ports, but Swagger2Feature only picks up the last configuration. Any suggestions? If it is not supported, where can I make an enhancement request? Thanks. Tara

Re: Swagger2Feature jar and version

2016-06-03 Thread javaworkinggirl
it itself, etc. > > Cheers, Sergey > > On 03/06/16 20:04, javaworkinggirl wrote: > > > I still can't get swagger2Feature to work in my project > > > > What is the expected outcome of Swagger2Feature? I am expecting that I > am > > going to see swagge

Re: Swagger2Feature jar and version

2016-06-03 Thread javaworkinggirl
I still can't get swagger2Feature to work in my project What is the expected outcome of Swagger2Feature? I am expecting that I am going to see swagger documents for my api under http://0.0.0.0:8877/api, but the logs say 404 not found. Can someone explain more what is happening behind the scenes

Re: Swagger2Feature jar and version

2016-06-02 Thread javaworkinggirl
<http:///user/SendEmail.jtp?type=node&node=5769226&i=0>>: >>> >>> > Hi >>> > >>> > I believe one needs to add Swagger UI, Aki Youshida added 3 Swagger 2 >>> demos, >>> > see this directory: >>> > >>

Re: Swagger2Feature jar and version

2016-06-02 Thread javaworkinggirl
ed >> > >> https://github.com/apache/cxf/tree/master/distribution/src/main/release/samples/jax_rs/jaxrs_spring_boot >> > >> > which creates a CXFServlet with a URI "/services/helloworld/*" pattern >> > and registers the feature at >> > >

Re: Swagger2Feature jar and version

2016-06-02 Thread javaworkinggirl
t; http://localhost:8080/services/helloservice/swagger.yaml > > > > return Yaml. > > > > but I guess having UI on top of it would be good, so please Aki's demo's > > (pom.xml) on how to wire Swagger UI in > > > > HTH, Sergey > > &g

Re: Swagger2Feature jar and version

2016-06-01 Thread javaworkinggirl
ervice-description:jar:3.1.4:provided > > > > > > > > > > > > On Tue, May 31, 2016 at 7:31 PM, javaworkinggirl > > <[hidden email] <http:///user/SendEmail.jtp?type=node&node=5769172&i=0>> > wrote: > >> Which jar? > >&

Re: Swagger2Feature jar and version

2016-05-31 Thread javaworkinggirl
Thx got it now. -- View this message in context: http://cxf.547215.n5.nabble.com/Swagger2Feature-jar-and-version-tp5769165p5769169.html Sent from the cxf-user mailing list archive at Nabble.com.

Re: Swagger2Feature jar and version

2016-05-31 Thread javaworkinggirl
Which jar? -- View this message in context: http://cxf.547215.n5.nabble.com/Swagger2Feature-jar-and-version-tp5769165p5769167.html Sent from the cxf-user mailing list archive at Nabble.com.

Swagger2Feature jar and version

2016-05-31 Thread javaworkinggirl
What jar and version of cxf is Swagger2Feature in? I found an example that cxf 3.2.0-SNAPSHOT has it. Is this the earliest cxf version with Swagger2Feature? -- View this message in context: http://cxf.547215.n5.nabble.com/Swagger2Feature-jar-and-version-tp5769165.html Sent from the cxf-user m

Re: Use Validation Groups with Bean Validation?

2014-07-29 Thread javaworkinggirl
Ok. I was able to use an abstract class with 2 subclasses with that had the appropriate annotations for each class instead. Thanks. On Tue, Jul 29, 2014 at 2:47 AM, Sergey Beryozkin [via CXF] < ml-node+s547215n5747010...@n5.nabble.com> wrote: > Hi > > > On 28/07/14 20:1

Re: Upgraded to 3.0.0, now Rest service receiving xml give 400 Bad request

2014-07-28 Thread javaworkinggirl
Sergey, I solved my problems. What is needed is an abstract pojo class with no @XmlRootElement, that my 2 concrete classes then inherit from both with the same @XmlRootElement(name="Order"). Probably this way the JAXB can figure out which class to instantiate. Thanks for your help! Tara -- V

Re: Upgraded to 3.0.0, now Rest service receiving xml give 400 Bad request

2014-07-28 Thread javaworkinggirl
Response-Code: 400 Content-Type: Headers: {Date=[Mon, 28 Jul 2014 20:38:55 GMT], Content-Length=[0]} On Mon, Jul 28, 2014 at 1:43 PM, Sergey Beryozkin [via CXF] < ml-node+s547215n5747001...@n5.nabble.com> wrote: > Hi > On 27/07/14 22:44, javaworkinggirl wrote: > > Yes this error h

Use Validation Groups with Bean Validation?

2014-07-28 Thread javaworkinggirl
Hi. Is there a way to use validation groups with bean validation (jsr-303) in cxf? Passing in the group as an parameter to @Valid doesn't work. Other suggestions? @POST @Path("/entitlement") @Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML}) @CsgHeaderValidation @Valid

Re: Upgraded to 3.0.0, now Rest service receiving xml give 400 Bad request

2014-07-27 Thread javaworkinggirl
the validation > and retry ? > > Sergey > On 26/07/14 07:43, javaworkinggirl wrote: > > > Hi. > > > > I upgraded to cxf 3.0.0 and now my REST service works fine with json but > > returns 400 bad request with xml. Same test with xml and json on my > > previ

Upgraded to 3.0.0, now Rest service receiving xml give 400 Bad request

2014-07-25 Thread javaworkinggirl
Hi. I upgraded to cxf 3.0.0 and now my REST service works fine with json but returns 400 bad request with xml. Same test with xml and json on my previous system with cxf 2.7.6 passes. What could I be missing? Are there more/different .jars that need to be included? Does an xml provider need to

Re: Configuration problem specific rest services need specific providers

2014-07-25 Thread javaworkinggirl
Nevermind. I got it. The directory needs to be scanned thus I needed to add: http://0.0.0.0:8877"; basePackages="com.twc.ctg.ecp.service.rest.custom"* depends-on="activeMQConnectionFactory"> The NameBinding solution works for me. Thanks! -- View this message in context: http://cxf.54

Re: Configuration problem specific rest services need specific providers

2014-07-25 Thread javaworkinggirl
Thanks for the responses. I have tried NameBinding, but the filter doesn't get activated. What am I missing? @Target({ ElementType.TYPE, ElementType.METHOD }) @Retention(value = RetentionPolicy.RUNTIME) @NameBinding public @interface CsgHeaderValidation { } @Component @CsgHeaderValidation publ

Configuration problem specific rest services need specific providers

2014-07-24 Thread javaworkinggirl
The way my project is currently configuring rest services, all providers listed get used for all services. How can I get more fine grained configuration? I only want the headerValidationFilter used on the ecpCDRestServiceV1 rest service. Right now all the rest services are getting it. Note that w