diff --git a/docs/faq.html b/docs/faq.html
index 373f86d5e..79b3ec0b9 100644
--- a/docs/faq.html
+++ b/docs/faq.html
@@ -293,6 +293,13 @@
I installed Ant 1.6.x and now get
java.lang.InstantiationException: org.apache.tools.ant.Main
+
+
One can check if this is the case by doing
ant --noconfig -version
.
+
+ + + Whenever I use the Ant jar or manifest related tasks, long lines in + my manifest are wrapped at 70 characters and the resulting jar does + not work in my application server. Why does Ant do this? + +
++ Ant implements the Java + Jar + file specification. Please refer to the notes section where it + discusses the maximum allowable length of a line and the concept of + continuation characters. +
++ If a jar file produced by Ant does not work in your appserver, and + that failure is due to the wrapped manifest, then you need + to consult your appserver provider, as it is a bug in their + appserver. Far more likely, however, is a problem in your + specification of your classpath. It is not Ant's wrapping of your + classpath that is the problem. +
++ Do not raise a bug about this issue until you have checked to ensure + that the problem is not due to your classpath specification.
diff --git a/xdocs/faq.xml b/xdocs/faq.xml index 97f1ac1b8..7dba002c0 100644 --- a/xdocs/faq.xml +++ b/xdocs/faq.xml @@ -845,6 +845,38 @@ shell-prompt> m4 foo.m4 > foo
++ Ant implements the Java + Jar + file specification. Please refer to the notes section where it + discusses the maximum allowable length of a line and the concept of + continuation characters. +
+ ++ If a jar file produced by Ant does not work in your appserver, and + that failure is due to the wrapped manifest, then you need + to consult your appserver provider, as it is a bug in their + appserver. Far more likely, however, is a problem in your + specification of your classpath. It is not Ant's wrapping of your + classpath that is the problem. +
+ ++ Do not raise a bug about this issue until you have checked to ensure + that the problem is not due to your classpath specification. +
+