From cfcb7de350b1a1a1f94995d9c2c3edb92a6afdd0 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Fri, 15 Feb 2008 18:39:00 +0000 Subject: [PATCH] javadoc --- src/site/fml/faq.fml | 66 +++++++++++--------------------------------- 1 file changed, 16 insertions(+), 50 deletions(-) diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml index aff406f4..e6db9ed8 100644 --- a/src/site/fml/faq.fml +++ b/src/site/fml/faq.fml @@ -98,54 +98,28 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + +
Application ServerSAAJ Version
BEA WebLogic 81.1
BEA WebLogic 91.1/1.2 - * -
IBM WebSphere 61.2
SUN Glassfish 11.3
JBoss 4.21.3 - ** -
Application ServerSAAJ Version
BEA WebLogic 81.1
BEA WebLogic 91.1/1.2*
IBM WebSphere 61.2
SUN Glassfish 11.3
JBoss 4.21.3**
-

* = Seebelow. +

* = See below.

-

** = Seebelow. +

** = See below.

Additionally, Java SE 6 includes SAAJ 1.3.

- I get an - NoSuchMethodError - when using SAAJ. What can I do about it? + I get a NoSuchMethodError when using SAAJ. What can I do about it?

If you get the following stack trace:

-                    org.springframework.beans.factory.BeanCreationException:
-                    Error creating bean with name 'org.springframework.ws.soap.saaj.SaajSoapMessageFactory'
-                    defined in ServletContext resource [/WEB-INF/springws-servlet.xml]:
+                    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.ws.soap.saaj.SaajSoapMessageFactory' defined in ServletContext resource [/WEB-INF/springws-servlet.xml]:
                     Invocation of init method failed;
                     nested exception is java.lang.NoSuchMethodError:
                     javax.xml.soap.MessageFactory.newInstance(Ljava/lang/String;)Ljavax/xml/soap/MessageFactory;
@@ -169,19 +143,14 @@
         
         
             
-                I get a
-                UnsupportedOperationException
-                "This class does not support SAAJ 1.1" when I use SAAJ
-                under WebLogic 9. What can I do about it?
+                I get an UnsupportedOperationException "This class does not support SAAJ 1.1" when I use SAAJ under WebLogic 9. What can I do about it?
             
             
                 

Weblogic 9 has a known bug in the SAAJ 1.2 implementation: it implement all the 1.2 interfaces, - but throws - UnsupportedOperationExceptions - when you call them. - Confusingly, the exception message isThis class does not support SAAJ 1.1, even though - it supports SAAJ 1.1 just fine; it just doesn't support SAAJ1.2. + but throws UnsupportedOperationExceptions when you call them. + Confusingly, the exception message is This class does not support SAAJ 1.1, even though + it supports SAAJ 1.1 just fine; it just doesn't support SAAJ 1.2. See alsothis BEA forum post.

@@ -204,9 +173,7 @@ - I get a - IndexOutOfBoundsException - when I use SAAJ under JBoss. What can I do about it? + I get an IndexOutOfBoundsException when I use SAAJ under JBoss. What can I do about it?

@@ -232,8 +199,7 @@

You can find the answer to this question on a separate page - - . Note that Spring-WS only requires you to write the XSD; the WSDL can be generated from that. + . Note that Spring-WS only requires you to write the XSD; the WSDL can be generated from that. The tutorial illustrates how.