Hi there,
I am trying to build c# proxies for some java software.
I call
proxygen.exe lib\myLib.jar -wd work -cp lib\dep1.jar;lib\dep2.jar;...
Proxygen stops with java.lang.NoClassDefFoundError: com.whatever.BadClass
Originally BadClass was part of myLib.jar, so I tried to move it into some dep?.jar, but the result is the same.
BadClass is some simple abstract public class with no public consttuctor. It has some enclosed public static class EnclosedClass<Type>,
which is a generic. Might this be the problem? I guess generics are a problem, according to other postings here...
Have you any suggestions, what to try? Otherwise I can try to create a minimal example triggering my problem, but I do not know if I am able to do so.
Every hint is welcome!
with kind regards,
Daniel