I have created a Java application which load a DLL (created in VC++) and interacts with it.
This DLL makes an entry in the windows registry (WR) which attached itwith the IE window.
When use
regsvr32
everything works fine its entry is made into the WR.
However when I load the same DLL in Java
System.load(DLL_PATH)
the DLL load but its entry is not made into the WR.
I have checked it that the DLL main function actually gets called, even then the entry is not being made into the WR.
and yes the DLL is a self registering one.
Anyone having any idea, how to make that self registering DLL, make its entry into the WR when its loaded in JVM.
Any ideas/wild guesses are welcomed.
Thanks in advance.
Pradeep Agnihotri