--- javamz <[EMAIL PROTECTED]> wrote: > So...here is the code snippet I am using to > construct this: ... > commandLine.createArgument().setValue("-m\"" + > getDescription() + "\""); >
Did you try: commandLine.createArgument().setValue("-m" + getDescription()); as I suggested? Out of the goodness of my heart, I performed the following experiment with a file I needed to check in (paraphrased): <exec executable="put.exe"> <arg value="-u" /> <arg value="-mMy whitespaced comment" /> <arg file="${archive-path}(${file-path})" /> </exec> This works fine. -Matt __________________________________ Do you Yahoo!? Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes http://hotjobs.sweepstakes.yahoo.com/signingbonus --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]