I\'m using the Jersey client API to submit SOAP requests to a JAX-WS webservice. By default Jersey is somehow using my Windows Nt credentials for authentication when challen
Yes for jersey 2.x you can do this to authenticate each request with basic auth (preemptive mode):
client.register(HttpAuthenticationFeature.basic(userName, password)); // rest invocation code ..