-windowtitle <text> in javadoc

I am executing the following javadoc through a servlet.

javadoc -windowtitle "xxx yyy" -d <abs target path> -sourcepath <abs sourcepath> pkg1 pkg2

It gives the following error:

javadoc: No package, class, or source file found named yyy"

But when I don't have any space between xxx and yyy such as "xxxyyy" it works fine.

Same thing happens when specifying the header,footer also.

How should I specify space in the title, header and footer?

I am using

java version "1.2.1"

Solaris VM (build Solaris_JDK_1.2.1_02, native threads, sunwjit

Thanks.

[638 byte] By [csoundap] at [2007-9-26 20:23:48]
# 1

It appears the double quotes (") surrounding "xxx yyy" are

being ignored by the servlet. You may have to escape

them however the calling program or shell needs them

(\" or \\" perhaps) or use single quotes (').

If you need a workaround,

there is no HTML workaround for -windowtitle, as this

does not interpret HTML.

Howver, for -header and -footer, you could use

in place of a space (ugly).

-Doug Kramer

Javadoc team

dkramer at 2007-7-3 18:39:44 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...