Re: java.util.zip.CRC32C cannot be found on the system module path

2018-04-03 Thread Chuck Davis
This appears to be the same as I reported @ [NETBEANS-413]. In my case I was implementing jdk9 WebSocket. jdk8 WebSocket is entirely different and does not show the error -- for whatever reason. On Tue, Apr 3, 2018 at 4:08 PM, Efrem Mc wrote: > HI Glenn, > > I went to an existing Java Applicat

Re: java.util.zip.CRC32C cannot be found on the system module path

2018-04-03 Thread Efrem Mc
HI Glenn, I went to an existing Java Application, and switched it from JDK8 (default) to JDK10. I rebuild using Clean and Build I received no error message and was able to run the app without any errors. Output: ant -f P:\\testing\\netcat9\\srctest\\projects\\JavaApplication19 -Dnb.internal

Re: java.util.zip.CRC32C cannot be found on the system module path

2018-04-03 Thread Efrem Mc
Hi all: Does it matter if you are using JDK8, JDK10, or OpenJDK that may contain this jar file? I noticed in the original report it had openjdk-# and it appears that source file does some type of checking. What are the steps or the test case, I can run to see if I can reproduce it? Thanks, Ef

Re: java.util.zip.CRC32C cannot be found on the system module path

2018-04-03 Thread Glenn Holmer
On 04/03/2018 03:56 AM, Marcel Witte wrote: > I checked the source for this error and found something interesting. In > JavacParser there is the check for the different JDK versions. Every check up > to 1.8 checks the bootClassPath for a specific JDK class, but the check for 9 > checks the modul

Re: java.lang.IllegalStateException

2018-04-03 Thread Hermien Pellissier
Glad to hear it! ~ Hermien On Tue, 03 Apr 2018, 18:15 Luff,Chris, wrote: > Thanks man…can’t be sure exactly but I think I just had a literal out of > sync…appears to be working now! > > On Apr 3, 2018, at 10:55 AM, Hermien Pellissier > wrote: > > Hi, > > This exception happens when the constr

Re: java.lang.IllegalStateException

2018-04-03 Thread Luff,Chris
Thanks man…can’t be sure exactly but I think I just had a literal out of sync…appears to be working now! On Apr 3, 2018, at 10:55 AM, Hermien Pellissier mailto:miena@gmail.com>> wrote: Hi, This exception happens when the constructor of the TopComponent throws an Exception of some kind. So

Re: java.lang.IllegalStateException

2018-04-03 Thread Hermien Pellissier
Hi, This exception happens when the constructor of the TopComponent throws an Exception of some kind. So my suggestion would be to step through the constructor in debug mode on the other computer, to see why this happens. ~ Hermien On Tue, Apr 3, 2018 at 11:22 AM, Luff,Chris wrote: > Hey, I a

java.lang.IllegalStateException

2018-04-03 Thread Luff,Chris
Hey, I am having a problem with this IllegalStateException when I share a plugin with another developer who is running the same version as I am; Version: incubator-netbeans-release-228-on-20180312 Built with maven on MacOS 11.12.6. java.lang.IllegalStateException: Cannot find TopComponent with p

Re: java.util.zip.CRC32C cannot be found on the system module path

2018-04-03 Thread Marcel Witte
I checked the source for this error and found something interesting. In JavacParser there is the check for the different JDK versions. Every check up to 1.8 checks the bootClassPath for a specific JDK class, but the check for 9 checks the moduleBoot. Sadly, the log output seems to be copy-paste,