Axel,
You might also try something like:
{{{
import org.apache.cxf.configuration.security.AuthorizationPolicy;
...
AuthorizationPolicy authzPolicy =
new AuthorizationPolicy();
authzPolicy.setUserName("foo");
authzPolicy.setPassword("bar");
bp.getRequestContext().put(
AuthorizationPolicy.class.getName(),
authzPolicy
);
}}}
Where bp is the Jax-ws BindingProvider Dan mentioned earlier.
On Jul 26, 2007, at 5:27 PM, Daniel Kulp wrote:
I'm going to go ahead and fix that. I have no idea why your stuff
isn't
appearing on the wire at all. That's very strange. :-(