Reputation: 623
I have this situation:
I was curious, since SOAP response needs to be decrypted, does that mean that data can't be streamed with Apache Axiom? Axiom utilizes Streaming API for XML.
I.E., to decrypt message, Rampart should have whole object model tree constructed in memory?
Upvotes: 0
Views: 94
Reputation: 9154
Rampart is based on WSS4J using DOM. This requires conversion from Axiom to DOM and back, and it's not possible to implement streaming in this case.
Upvotes: 1