Reputation: 1840
I am trying to figure out if it is possible to use CXF (with WS-Security, SAML, SOAP) without a servlet container. I saw this link about not using spring but that solution still requires a container I think. I am using Vert.x and would like to keep that as my server.
Upvotes: 1
Views: 236
Reputation: 1387
From the title I assume that you just want to create a client? No servlet container is needed for that, just add a dependency and use it as described here: http://cxf.apache.org/docs/jax-rs-client-api.html
Upvotes: 1