I am using Tomcat 7 and I want to add the following JVM argument:
-Xbootclasspath/p:PrintServiceFixer.jar
I added the aforementioned JVM argument in the tomcat windows application but it didn't work. I received the following error message:
WARNING: Bootstrap: command "-Xbootclasspath/p:/Path to Jar file/PrintServiceFixer.jar" does not exist.
Why isn't this working?
SOLUTION: I added Startup VM parameter "-Xbootclasspath/p:C:\Program Files\Apache Software Foundation\Tomcat 7.0\lib\PrintServiceFixer.jar" to Tomcat 7 from tomcats windows application and it works now.