vote up 0 vote down star
1

I'm trying to develop a standalone Java web service client with JAX-WS (Metro) that uses WS-Security with Username Token Authentication (Password digest, nonces and timestamp) and timestamp verification along with WS-Addressing over SSL.

The WSDL I have to work with does not define any security policy information. I have been unable to figure out exactly how to add this header information (the correct way to do so) when the WSDL does not contain this information. Most examples I have found using Metro revolve around using Netbeans to automatically generate this from the WSDL which does not help me at all. I have looked into WSIT, XWSS, etc. without much clarity or direction. JBoss WS Metro looked promising not much luck yet there either.

Anyone have experience doing this or have suggestions on how to accomplish this task? Even pointing me in the right direction would be helpful. I am not restricted to a specific technology other than it must be Java based.

flag

3 Answers

vote up 0 vote down

If the information isn't in the WSDL, are you sure it's in the service described by the WSDL? The WSDL is meant to provide all the information necessary to describe the service, including the security policies necessary to use the service.

What platform did the WSDL come from? Is it possible that the WSDL is not the complete description? For instance, it might be a WSDL that is included in another WSDL that does provide the security information.

link|flag
Let me clarify, it is not in the WSDL that I have been given access to. The documentation I have has holes (no mention of timestamp) so exlusion of WSDL info would not surprise me. – aurealus Mar 30 at 22:34
Well, you're going to need the real WSDL to call the real service. That's about all there is to it. – John Saunders Mar 30 at 22:39
So there is no possibility that the WSDL leaves this out but it is implemented on the server? The server is Java (probably JBoss or Websphere) using some version of Axis. – aurealus Mar 30 at 23:07
There's no possibility that it's correct for the WSDL to leave this out. I've seen earlier versions of Axis assume client and service were Axis, so leave things out of the WSDL. Not security, though. – John Saunders Mar 31 at 1:21
vote up 0 vote down

Check the first two links at #7 here: http://www.jroller.com/gmazza/entry/creating_a_wsdl_first_web1#WFsitemap

link|flag
vote up 1 vote down check

I did end up figuring this issue out but I went in another direction to do so. My solution was to use CXF 2.1 and its JAX-WS implementation, combining the power of CXF with the existing Spring infrastructure I already had in place. I was skeptical at first because of the numerous jars required by CXF, but in the end it provided the best and simplest solution.

Adapting an example from the CXF website for client configuration, I used the custom CXF JAXWS namespace within spring and used an Out Interceptor for Username Token Authentication (Password digest, nonces and timestamp) and timestamp verification. The only other step to make this work was creating my own Password Callback handler that is executed for each outbound SOAP request.

For SSL configuration, I again turned to CXF and its SSL support via conduits, although I could never make SSL work with a specific http:conduit name, I had to use the general purpose one that is not recommended for production environments.

I will post an example of my config file later. Hopefully that will help anyone else that runs into similar issues.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.