Subject:Java compile problem Author:Cameron Gray Date:05 Feb 2009 03:31 PM
I'm trying to generate a pipeline to be used by another person in our department who does not have Stylus Studio installed nor will have it ever.
I've installed JAVA 2 SDK as I found I needed to from the error messages I was getting when I tried to compile.
Now I'm getting :
Classpath:"h:\RSP-RIF Lists\";"c:\Program Files\Stylus Studio 2009 XML Enterprise Suite\Components\XML Converters for Java\lib\XMLConverters.jar";"c:\Program Files\Stylus Studio 2009 XML Enterprise Suite\Components\DataDirect XQuery\lib\ddxq.jar";"c:\Program Files\Stylus Studio 2009 XML Enterprise Suite\Components\XML Converters for Java\lib\codehaus\wstx-asl.jar";"c:\Program Files\Stylus Studio 2009 XML Enterprise Suite\bin\Plugins\XMLPipeline.jar"
Compiling...
RifPipeline.java
h:\RSP-RIF Lists\RIFgenerate\RifPipeline.java:19: cannot access java.lang.Object
bad class file: C:\Program Files\Java\jre1.6.0_05\lib\rt.jar(java/lang/Object.class)
class file has wrong version 49.0, should be 48.0
Please remove or make sure it appears in the correct subdirectory of the classpath.
public class RifPipeline extends AbstractPipeline implements PipelineOperation {
I know noting about java, but need to have a standalone (pipline job) for generating the XML files I've set up in Stylus studio.
Subject:Java compile problem Author:Tony Lavinio Date:05 Feb 2009 11:12 PM
You need to make sure that the Java version installed is
consistent. It looks like you have the runtime library
from one version, but the executable from another.
I'd say uninstall the Java version(s) on the target machine
and reinstall the Java 6 installables.
Subject:Java compile problem Author:Cameron Gray Date:06 Feb 2009 11:31 AM
Ok so I uninstalled everything JAVA and reinstalled j2sdk-1_4_2_17-windows-i586-p.exe
Now I'm getting this:
Classpath:"h:\RSP-RIF Lists\";"c:\Program Files\Stylus Studio 2009 XML Enterprise Suite\Components\XML Converters for Java\lib\XMLConverters.jar";"c:\Program Files\Stylus Studio 2009 XML Enterprise Suite\Components\DataDirect XQuery\lib\ddxq.jar";"c:\Program Files\Stylus Studio 2009 XML Enterprise Suite\Components\XML Converters for Java\lib\codehaus\wstx-asl.jar";"c:\Program Files\Stylus Studio 2009 XML Enterprise Suite\bin\Plugins\XMLPipeline.jar"
Compiling...
RifPipeline.java
java.lang.NoClassDefFoundError: com/sun/tools/javac/Main
Subject:Java compile problem Author:Cameron Gray Date:06 Feb 2009 12:38 PM
Alright I finally, after a lot of mucking about, was able to get the JAVA to compile.
Now what do I do with it? I need to be able to give this to another person, who doesn't know java either, and have them run it against a text file.
Why does this have to be so difficult? All I want is an executable, as I was lead to believe I would have from the documentation, to distribute to a non-programmer!
Subject:Java compile problem Author:Minollo I. Date:06 Feb 2009 05:41 PM
I think you are confusing a few things here. Once the code is generated and compiled in Stylus Studio, you can test it from Stylus just running it (ctrl+f5). Of course you can run it outside the Stylus environment; it's a Java class; so you'll do something like:
java.exe -classpath <yourclasspath> RifPipeline
...where <yourclasspath> is the same classpath you are using to compile.
Subject:Java compile problem Author:Cameron Gray Date:09 Feb 2009 09:52 AM Originally Posted: 09 Feb 2009 09:51 AM
I know I can run it from within Stylus Studio. I've done that and it works great. AS for runninging it as you pointed out. That would be fine for a programmer like myself, but I am wanting to pass this to a person who is not a programmer and has limited computer knowledge.
I'm looking to just have something they can double click on and it runs for them.
As it stands right now it would still require someone with experience to run.