Error trying to check in BSSV Object - Compiler error

DougInChi

Member
I am picking up for a contractor who has left, and I have had to make changes to some of his web service java objects. Most of those went fine, but the published web service does some kind of validation check. When it run, it throws an error in the jdedebug log of:
May 27 09:58:14.737000 - 744/5456 WRK:Starting jdeCallObject OMW - Artifact c:\e812\DV812\java\source\oracle\e1\bssv\JP560301\CARSCustomerMasterManager.java failed to compile.
Compile failed because: javac: invalid flag: of
Usage: javac <options> <source files>
where possible options include:
-g Generate all debugging info
-g:none Generate no debugging info
-g:{lines,vars,source} Generate only some debugging info
-nowarn Generate no warnings
-verbose Output messages about what the compiler is doing
-deprecation Output source locations where deprecated APIs are used
-classpath <path> Specify where to find user class files
-cp <path> Specify where to find user class files
-sourcepath <path> Specify where to find input source files
-bootclasspath <path> Override location of bootstrap class files
-extdirs <dirs> Override location of installed extensions
-endorseddirs <dirs> Override location of endorsed standards path
-d <directory> Specify where to place generated class files
-encoding <encoding> Specify character encoding used by source files
-source <release> Provide source compatibility with specified release
-target <release> Generate class files for specific VM version
-version Version information
-help Print a synopsis of standard options
-X Print a synopsis of nonstandard options
-J<flag> Pass <flag> directly to the runtime system

I think I'm using the BSSVWASExpress.xml to generate the makefile and the javac entry is :

<javac destdir="${e1.work.dir}/classes"
debug="on"
nowarn="off"
deprecation="on"
encoding="Cp1252"
source="1.4"
target="1.4"
>

I'd like to know how to see what this validation compile is actually doing (and of course to be able to check in the changes to the web service).

Any hints or ideas would be appreciated.


Thanks
 
Back
Top