com4j icon indicating copy to clipboard operation
com4j copied to clipboard

Type-safe Java/COM binding

Results 60 com4j issues
Sort by recently updated
recently updated
newest added

Hi the link to downloads fails there are currently no downloads https://github.com/kohsuke/com4j/downloads It would be useful if there was download for the 2.2-SNAPSHOT as I don't have the Microsft/Visual Studio...

https://docs.microsoft.com/en-us/windows/win32/adschema/a-accountexpires > The date when the account expires. This value represents the number of 100-nanosecond intervals since January 1, 1601 (UTC). A value of 0 or 0x7FFFFFFFFFFFFFFF (9223372036854775807) indicates that...

I have an interface signature in a dll ``` [id(0x0000001d), propget, helpstring("property Contaminants")] HRESULT Contaminants([out, retval] VARIANT* pVal); ``` Whose specification tells me that it returns an array of double...

Hi I get an IllegalArgumentException when calling a method in a com dll. My code is the following: `IManager manager = ClassFactory.createManager();` `String bstrFile = "1.xml";` `String pbstrSchema=new String();` `Holder...

[![mitm_build](https://user-images.githubusercontent.com/1323708/59226671-90645200-8ba1-11e9-8ab3-39292bef99e9.jpeg)](https://medium.com/@jonathan.leitschuh/want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-1fc329d898fb?source=friends_link&sk=3c99970c55a899ad9ef41f126efcde0e) - [Want to take over the Java ecosystem? All you need is a MITM!](https://medium.com/@jonathan.leitschuh/want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-1fc329d898fb?source=friends_link&sk=3c99970c55a899ad9ef41f126efcde0e) - [Update: Want to take over the Java ecosystem? All you need is a MITM!](https://medium.com/bugbountywriteup/update-want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-d069d253fe23?source=friends_link&sk=8c8e52a7d57b98d0b7e541665688b454)...

Hi, I'm beginner with COM/COM4J, trying to map WPD/PortableDeviceAPI. `1F001332-1A57-4934-BE31-AFFC99F4EE0A` I get many error messages "[ERROR] Unable to handle the type "... and some required methods a re not mapped....

# # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_STACK_OVERFLOW (0xc00000fd) at pc=0x000000018002f347, pid=23328, tid=0x0000000000003c3c # # JRE version: Java(TM) SE Runtime Environment (8.0_162-b12)...

The analysis in eclipse/openj9#5696 shows that there is a out of bounds access that is fixed by increasing the buffer size by 8. Validated by having the VM increase all...

From: https://github.com/eclipse/openj9/issues/5696 memory corruption detected openj9 64bit jdk8u212-b03 Just calling the tutorial from https://com4j.kohsuke.org/tutorial.html java -jar tlbimp.jar -o wsh -p test.wsh %WINDIR%\system32\wshom.ocx 09:54:37.499 0x2e18500 omrport.359 * ** ASSERTION FAILED **...

Hi. We're using com4j in our Java 8 application to connect to our Microsoft Active Directory, using the following code: ` _Connection con = com4j.typelibs.ado20.ClassFactory.createConnection(); try { con.provider("ADsDSOObject"); con.open("AD-Anon-Search", "",...