Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am currently building my own custom Security Token Services using the Opensaml and Openws APIs.

I am using CXF with Spring, this technology facilitates interceptors that allow me to manipulate and insert elements (SAML Assertions etc) into the soap header.

However, I would like to insert an OpenWS RequestSecurityToken object into the soap body, via my web service method.

The OpenWS RequestSecurityToken object itself does no have a non-argument constructor defined, and neither does it's superclasses. Root class being org.w3c.xml.Element which also does not have an empty constructor.

JAXB throws an exception, complaining about this, saying it can't handle interfaces - even though these classes are not interfaces!

I do not have the source code and so am not able to add constructors easily. Much has been posted on the internet about this, with pointers to custom annotations, adapter classes and custom marshallers, but I cannot work out which approach to adopt.

BTW: OpenWS and Opensaml does come with Marshallers and Unmarshallers for each object. I was wondering if anyone has managed to force JAXB to use custom marshallers at all?

share|improve this question

1 Answer

You can use an XmlAdapter, check out:

share|improve this answer
I have just followed the example, and unfortunatly it has not made any difference. – Joel Kennedy Dec 3 '10 at 21:58
I think it is to do with the structure of the opensaml and openws objects. All the objects are constructed via a deep hierarchie. Each object does have a constructor, but does not have a default empty constructor. attributes are passes to the constructor and set in the super classes using 'their' set and get methods. So I have defined an Apapter for a specific object, but the same exception is thrown. – Joel Kennedy Dec 3 '10 at 22:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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