cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
poojakhobragade
Level 3

Compile errors while javac -classpath flexlm.jar:EccpressoAll.jar demoInfo.java

Hi,

I downloaded the Java development kit for windows and Flexnet SDK for x86.
After building it for windows x86 platform,I followed the steps in Licensing for Java Programming Reference Guide to build the java class

While doing doing so I am getting the following error on
javac -classpath flexlm.jar:EccpressoAll.jar demoInfo.java

Error:
demoInfo.java:4: package com.macrovision.flexlm does not exist
import com.macrovision.flexlm.FlexlmConstants;

Can anyone help?

Thanks,
Pooja
Labels (1)
0 Kudos
(3) Replies
poojakhobragade
Level 3

While doing doing so I am getting the following error on
javac demoInfo.java

Error:
demoInfo.java:4: package com.macrovision.flexlm does not exist
import com.macrovision.flexlm.FlexlmConstants;
0 Kudos
poojakhobragade
Level 3

I am using FlexNet version 11.9

Is the com.macrovision.flexlm package not included in the flexlm.jar which was a part of Java development kit installation?
0 Kudos
RobertDickau
Flexera Alumni

If you're compiling demoInfo.java on Windows, perhaps use a semicolon (;) instead of a colon (:) to separate jar files on the javac class path?

javac -classpath flexlm.jar;EccpressoAll.jar demoInfo.java
0 Kudos