DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21298>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21298

Nested websphere element for ejbjar does not support spaces in file name.

           Summary: Nested websphere element for ejbjar does not support
                    spaces in file name.
           Product: Ant
           Version: 1.5.3
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Optional Tasks
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


The nested <websphere/> element for the <ejbjar/> task does not support spaces 
in any of the ejbdeploy filename arguments (source, tempdir, or destination).  
The arguments are concatenated into a string, and the string is added in a 
single arguments.setLine().  [..optional.ejb.WebsphereDeploymentTool/Line 611].

A reasonable fix is to replace the line above with the following filename 
sensitive actions:

        javaTask.createArg().setValue(sourceJar.getPath());
        javaTask.createArg().setValue(tempdir);
        javaTask.createArg().setValue(destJar.getPath());
        javaTask.createArg().setLine(getOptions());

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to