Skip to content

Commit cfcb7de

Browse files
committed
javadoc
1 parent a808f72 commit cfcb7de

File tree

1 file changed

+16
-50
lines changed

1 file changed

+16
-50
lines changed

src/site/fml/faq.fml

Lines changed: 16 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -98,54 +98,28 @@
9898
<answer>
9999
<table class="bodyTable">
100100
<tbody>
101-
<tr>
102-
<th>Application Server</th>
103-
<th>SAAJ Version</th>
104-
</tr>
105-
<tr>
106-
<td>BEA WebLogic 8</td>
107-
<td>1.1</td>
108-
</tr>
109-
<tr>
110-
<td>BEA WebLogic 9</td>
111-
<td>1.1/1.2
112-
<sup>*</sup>
113-
</td>
114-
</tr>
115-
<tr>
116-
<td>IBM WebSphere 6</td>
117-
<td>1.2</td>
118-
</tr>
119-
<tr>
120-
<td>SUN Glassfish 1</td>
121-
<td>1.3</td>
122-
</tr>
123-
<tr>
124-
<td>JBoss 4.2</td>
125-
<td>1.3
126-
<sup>**</sup>
127-
</td>
128-
</tr>
101+
<tr><th>Application Server</th><th>SAAJ Version</th></tr>
102+
<tr><td>BEA WebLogic 8</td><td>1.1</td></tr>
103+
<tr><td>BEA WebLogic 9</td><td>1.1/1.2<sup>*</sup></td></tr>
104+
<tr><td>IBM WebSphere 6</td><td>1.2</td></tr>
105+
<tr><td>SUN Glassfish 1</td><td>1.3</td></tr>
106+
<tr><td>JBoss 4.2</td><td>1.3<sup>**</sup></td></tr>
129107
</tbody>
130108
</table>
131-
<p>* = See<a href="#saaj-weblogic9">below</a>.
109+
<p>* = See <a href="#saaj-weblogic9">below</a>.
132110
</p>
133-
<p>** = See<a href="#saaj-jboss">below</a>.
111+
<p>** = See <a href="#saaj-jboss">below</a>.
134112
</p>
135113
<p>Additionally, Java SE 6 includes SAAJ 1.3.</p>
136114
</answer>
137115
</faq>
138116
<faq id="saaj-nosuchmethod">
139-
<question>I get an
140-
<tt>NoSuchMethodError</tt>
141-
when using SAAJ. What can I do about it?
117+
<question>I get a <tt>NoSuchMethodError</tt> when using SAAJ. What can I do about it?
142118
</question>
143119
<answer>
144120
<p>If you get the following stack trace:</p>
145121
<pre>
146-
org.springframework.beans.factory.BeanCreationException:
147-
Error creating bean with name 'org.springframework.ws.soap.saaj.SaajSoapMessageFactory'
148-
defined in ServletContext resource [/WEB-INF/springws-servlet.xml]:
122+
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]:
149123
Invocation of init method failed;
150124
nested exception is java.lang.NoSuchMethodError:
151125
javax.xml.soap.MessageFactory.newInstance(Ljava/lang/String;)Ljavax/xml/soap/MessageFactory;
@@ -169,19 +143,14 @@
169143
</faq>
170144
<faq id="saaj-weblogic9">
171145
<question>
172-
I get a
173-
<tt>UnsupportedOperationException</tt>
174-
"This class does not support SAAJ 1.1" when I use SAAJ
175-
under WebLogic 9. What can I do about it?
146+
I get an <tt>UnsupportedOperationException</tt> "This class does not support SAAJ 1.1" when I use SAAJ under WebLogic 9. What can I do about it?
176147
</question>
177148
<answer>
178149
<p>
179150
Weblogic 9 has a known bug in the SAAJ 1.2 implementation: it implement all the 1.2 interfaces,
180-
but throws
181-
<tt>UnsupportedOperationExceptions</tt>
182-
when you call them.
183-
Confusingly, the exception message is<tt>This class does not support SAAJ 1.1</tt>, even though
184-
it supports SAAJ 1.1 just fine; it just doesn't support SAAJ<strong>1.2</strong>.
151+
but throws <tt>UnsupportedOperationExceptions</tt> when you call them.
152+
Confusingly, the exception message is <tt>This class does not support SAAJ 1.1</tt>, even though
153+
it supports SAAJ 1.1 just fine; it just doesn't support SAAJ <strong>1.2</strong>.
185154
See also<a href="http://forums.bea.com/bea/thread.jspa?threadID=600007964">this BEA forum post</a>.
186155
</p>
187156
<p>
@@ -204,9 +173,7 @@
204173
</faq>
205174
<faq id="saaj-jboss">
206175
<question>
207-
I get a
208-
<tt>IndexOutOfBoundsException</tt>
209-
when I use SAAJ under JBoss. What can I do about it?
176+
I get an <tt>IndexOutOfBoundsException</tt> when I use SAAJ under JBoss. What can I do about it?
210177
</question>
211178
<answer>
212179
<p>
@@ -232,8 +199,7 @@
232199
<p>
233200
You can find the answer to this question on
234201
<a href="http://static.springframework.org/spring-ws/site/why-contract-first.html">a separate page
235-
</a>
236-
. Note that Spring-WS only requires you to write the XSD; the WSDL can be generated from that.
202+
</a>. Note that Spring-WS only requires you to write the XSD; the WSDL can be generated from that.
237203
<a href="http://static.springframework.org/spring-ws/site/tutorial/tutorial2.html">The tutorial</a>
238204
illustrates how.
239205
</p>

0 commit comments

Comments
 (0)