Hi
On 16/07/13 10:22, nikosdim wrote:
Hi
I want to use FIQL expressions in the URL with the form of matrix parameter
and I saw in the FIQL tutorial
<http://cxf.apache.org/docs/jax-rs-search.html#JAX-RSSearch-SearchExpressionsinURIPathsegments>
that I have to set the contextual property "ignore.matrix.parameter" in
order to have this feature.
My question is where to put this property?
I am running my service in Tomcat 6 and I tried the catalina.properties file
in tomcat but it didn't worked.
These are CXF endpoint contextual properties, for WS & RS endpoints,
example, in this case, you can do:
<jaxrs:server address="/">
<jaxrs:properties>
<entry "ignore.matrix.parameter" value="true"/>
</jaxrs:properties>
</jaxrs:server>
If you use CXFNonSpringServlet, do something like this:
<init-param>
<param-name>jaxrs.properties</param-name>
<param-value>
ignore.matrix.parameter=true
</param-value>
</init-param>
HTH, Sergey
Any ideas?
--
View this message in context:
http://cxf.547215.n5.nabble.com/Where-to-put-contextual-property-ignore-matrix-parameters-true-tp5730881.html
Sent from the cxf-user mailing list archive at Nabble.com.
--
Sergey Beryozkin
Talend Community Coders
http://coders.talend.com/
Blog: http://sberyozkin.blogspot.com