The JAX-RS HTTPS sample doesn't use a WAR:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/jax_rs/basic_https/
HTH,
Glen
On 08/17/2012 03:45 PM, Juan José Pérez Consuegra wrote:
Hello,
I'm studing the examples given with cxf, exactly security an https. In my
proyect I need a standalone server publishing the server with no war
package. The https example seems to be like this, but security one uses a
war package. Mi question is how to mix both.
I understand that I can use https proyect using de security annotations,
but I have the next dubt, how I can stablish the filter and filter-map of
the web.xml as the one used in the security example?
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Does anyone know about a complete example to guide me????
thanks a lot