I have a java gui application that is feeding info into a python script using a python interpreter. This python script uses win32 to access a shared outlook folder. Separately, the python script works but my java application calls out an ImportError concerning the win32api.pyd file.
From this, I have tried troubleshooting by installing JyNI in order to account for Jython's inability to read C-extension files. However, I am still getting this error:
Exception in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: org/python/modules/_weakref/ReferenceBackendFactory
Has anyone else had this issue or found a way to work around this issue?