• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Tim Cooke
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
Saloon Keepers:
  • Piet Souris
Bartenders:

ActiveX and JavaBeans

 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How in an application i can establish a communication between a
JavaBean Component and an ActiveX Component?
Do I have to use CORBA?
If so How?
 
Sheriff
Posts: 3341
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This depends on which way you want to do the access
Active X calling Java Sun has an early release package called COM Bridge which may work for you.
Java calling Active X Alot more difficult, there are a few third party solutions such as JIntegra which can do this. Or you can try to code your own native dll which does the translation and use JNI.... Not the easiest of things to do.
Hope this helps
reply
    Bookmark Topic Watch Topic
  • New Topic