From 35d148798e87895f546a2e7c3aa5b039c85b09ef Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Sun, 31 Dec 2006 16:55:19 +0000 Subject: [PATCH] Upgraded to Axiom 1.2.1 fixed the SwA issue --- .../ws/soap/axiom/AxiomSoapMessage.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessage.java b/core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessage.java index 86952092..db9e6bdb 100644 --- a/core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessage.java +++ b/core/src/main/java/org/springframework/ws/soap/axiom/AxiomSoapMessage.java @@ -101,9 +101,7 @@ public class AxiomSoapMessage extends AbstractSoapMessage { this.payloadCaching = payloadCaching; } - /** - * Return the AXIOM SOAPMessage that this AxiomSoapMessage is based on. - */ + /** Return the AXIOM SOAPMessage that this AxiomSoapMessage is based on. */ public final SOAPMessage getAxiomMessage() { return axiomMessage; } @@ -171,9 +169,7 @@ public class AxiomSoapMessage extends AbstractSoapMessage { } } - /** - * Axiom-specific implementation of org.springframework.ws.soap.Attachment - */ + /** Axiom-specific implementation of org.springframework.ws.soap.Attachment */ private static class AxiomAttachment implements Attachment { private final DataHandler dataHandler; @@ -204,7 +200,7 @@ public class AxiomSoapMessage extends AbstractSoapMessage { } public long getSize() { - throw new UnsupportedOperationException("Axiom does not support setting the Content-ID of attachments."); + throw new UnsupportedOperationException("Axiom does not support getting the size of attachments."); } }