user1489829
user1489829

Reputation: 1840

CXF client without servlet

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

Answers (1)

Dennis Kieselhorst
Dennis Kieselhorst

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

Related Questions