On Jul 3, 9:04 am, Roedy Green <see_webs...@mindprod.com.invalid>
wrote:
> >I am tyring to workaround a dll written in Visualbasic (or you can say
> >a standard component) , is that possible that i can access that dll's
[quoted text clipped - 12 lines]
> Roedy Green Canadian Mind Products
> The Java Glossaryhttp://mindprod.com
There is also a Java to COM bridge somewhere. http://danadler.com/jacob/
Java integration support was de-featured from the base windows+IIS
bundle with the demise of J++.
TimJowers
Roedy Green - 04 Jul 2007 03:19 GMT
>There is also a Java to COM bridge somewhere. http://danadler.com/jacob/
>Java integration support was de-featured from the base windows+IIS
>bundle with the demise of J++.
There is a fair bit of pre-written JNI out there for the taking. You
don't have to do everything from scratch. However I have found most
of the time all you are doing is a few Windows system calls to give
access to an API from Java. The glue code is pretty trivial.
--
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
gripusa - 04 Jul 2007 09:51 GMT
On Jul 4, 3:19 am, Roedy Green <see_webs...@mindprod.com.invalid>
wrote:
> >There is also a Java to COM bridge somewhere.http://danadler.com/jacob/
> >Java integration support was de-featured from the base windows+IIS
[quoted text clipped - 8 lines]
> Roedy Green Canadian Mind Products
> The Java Glossaryhttp://mindprod.com
Hi Roedy!
Yup , i found few bridges that let me do the functionlity but i
decided to apply the same formula to bridge things up in a c++ dll of
my own to call COM components rather then using a heavy bridge
between. (The actual decision is to create efficiency rather then
ease.)
Thanks for your replies.