What is the difference between an ActiveX control and a JavaBean component?
Location: http://www.jguru.com/faq/view.jsp?EID=114112 Created: Jul 29, 2000 Modified: 2000-07-29 11:22:38.741 Author: John Zukowski (http://www.jguru.com/guru/viewbio.jsp?EID=7) Question originally posed by Jai Cherian (http://www.jguru.com/guru/viewbio.jsp?EID=103424 An ActiveX control is a reusable component written to take advantage of Microsoft’s Component Object Model (COM). They basically execute well within browsers on Windows platforms but don’t work anywhere else. While there are ports of COM to other platforms, you still need to deliver differnt binaries if you want your component to work there. On the other hand, a JavaBean component is a reusable component written to take advantage of Sun’s Java platform. Assuming the component was created following the JavaBeans specification, it will be reusable within any of the Bean building tools like JBuilder or VisualAge for Java, and deployable onto any platform that supports Java.