|
what is '1000 projects'?
'fullinterview.com' is a educational content website dedicated to finding and realizing final year projects for btech, be, mtech, mca students, here you can search, find your projects and get guidance from experts the below are the different technological projects.
visual Studio projects
.net projects,
asp projects,
c & ds projects,
c++ projects (all),
cold fusion projects,
delphi projects,
java projects,
perl projects,
php projects,
sql projects,
vc++ projects,
visual basic projects.
how it works?
well, everything on this site is submitted by the student and professional community. after you submit your project, it is being verified and approved by our administrator. after approval, other people can read/discuss it, save to favorites.
more number of projects?
here you can find morethan 1000 projects on different technologies, if u want to get more projects please visit our sister sites www.fullinterview.com & Chetanasprojects.com
Category Articles
What is the relation between the InfoBus and RMI?
Added on Sat, Dec 26, 2009
The InfoBus architecture addresses Beans talking to one in a single JVM not across multiple JVMs; while RMI (Remote Method Invocation) is intended for communication across JVMs (different Java Virtual Machines across the network). As for IIOP, one... Read More
What is entity reference ?
Added on Sat, Dec 26, 2009
A reference to an entity that is substituted for the reference when the XML document is parsed. It can reference a predefined entity such as < or reference one that is defined in the DTD. In the XML data, the reference could be to an entity that... Read More
What is bean persistance property?
Added on Sat, Dec 26, 2009
A bean has the property of persistence when its properties, fields, and state information are saved to and retrieved from storage. Component models provide a mechanism for persistence that enables the state of components to be stored in a non... Read More
Difference between java bean and bean?
Added on Sat, Dec 26, 2009
A Java Bean is a software component written in the Java programming language that conforms to the JavaBeans component specification. The JavaBeans APIs became part of the "core" Java APIs as of the 1.1 release of the JDK. The JavaBeans... Read More
What is EJB Home object ?
Added on Sat, Dec 26, 2009
An object that provides the life-cycle operations (create, remove, find) for an enterprise bean. The class for the EJB Home object is generated by the container's deployment tools. The EJB Home object implements the enterprise bean's Home... Read More
How and when will the JavaBeans Migration Assistant to ActiveX be available?
Added on Sat, Dec 26, 2009
IBM plans to ship the JavaBeans Migration Assistant for ActiveX in Taligent's Visual Age, WebRunner Toolkit, and Visual Age for Java development tools. This will allow developers to utilize a common component model that may be leveraged by a... Read More
When will JavaBeans be supported on the [fill in the blank] platform/operating system?
Added on Sat, Dec 26, 2009
The complete set of JavaBeans APIs are core to Java 2, hence any platform that is fully compatible with Java 2 implicitly supports JavaBeans. Thus, JavaBeans support will be available as soon as this platform/operating system vendor supports Java 2... Read More
What are Java Beans?
Added on Sat, Dec 26, 2009
Java Beans are usual Java classes which adhere to certain coding conventions:<br>1.Implements java.io.Serializable interface<br>2.Provides no argument constructor<br>3.Provides getter and setter methods for accessing it's... Read More
Why do I get a NullPointerException when loading a JAR file into the BeanBox
Added on Sat, Dec 26, 2009
Usually this is because of a mistake in the JAR file being loaded. In the meantime, typical errors include: * The MANIFEST file uses classes using the wrong file separator ("/" should be used in all platforms). * The MANIFEST file refers to... Read More
What are externizable interface?
Added on Sat, Dec 26, 2009
Use the Externalizable interface when you need complete control over your bean's serialization (for example, when writing and reading a specific file format). To use the Externalizable interface you need to implement two methods: readExternal... Read More
What are the purpose of introspection
Added on Sat, Dec 26, 2009
A growing number of Java object repository sites exist on the Internet in answer to the demand for centralized deployment of applets, classes, and source code in general. Any developer who has spent time hunting through these sites for licensable... Read More
What is property editor in java beans?
Added on Sat, Dec 26, 2009
A property editor is a tool for customizing a particular property type. Property editors are activated in the Properties window. This window determines a property's type, searches for a relevant property editor, and displays the property's... Read More
Write a simple bean program?
Added on Sat, Dec 26, 2009
Write the SimpleBean code. Put it in a file named SimpleBean. java, in the directory of your choice. Here's the code: import java.awt.Color; import java.beans.XMLDecoder; import javax.swing.JLabel; import java.io.Serializable; public... Read More
What is JavaBeans
Added on Sat, Dec 26, 2009
JavaBeans is a portable, platform-independent component model written in the Java programming language, developed in collaboration with industry leaders. It enables developers to write reusable components once and run them anywhere -- benefiting... Read More
What is a Bean? Why isn't a Bean an Applet?
Added on Sat, Dec 26, 2009
JavaBeans components, or Beans, are reusable software components that can be manipulated visually in a builder tool. Beans can be combined to create traditional applications, or their smaller web-oriented brethren, applets. In addition, applets can... Read More
Why are component architectures useful?
Added on Sat, Dec 26, 2009
Developers are turning to creating components rather than monolithic applications to free themselves from slow, expensive application development, and to build up a portable, reusable code base. This enables developers to quickly attack new market... Read More
Is JavaBeans a complete component architecture?
Added on Sat, Dec 26, 2009
JavaBeans is a complete component model. It supports the standard component architecture features of properties, events, methods, and persistence. In addition, JavaBeans provides support for introspection (to allow automatic analysis of a JavaBeans... Read More
Why a component architecture for the Java platform?
Added on Sat, Dec 26, 2009
JavaBeans brings the extraordinary power of the Java platform to component development, offering the ideal environment for a developer who wants to extend the concept of reusable component development beyond one platform and one architecture to... Read More
What kind of industry support exists for JavaBeans?
Added on Sat, Dec 26, 2009
A coalition of industry leaders in component development worked with JavaSoft to create the JavaBeans specification, which was released to the Internet for public comments on September 4, 1996. The "frozen" JavaBeans specification combines the work... Read More
Are there JavaBeans components available that I can buy today?
Added on Sat, Dec 26, 2009
Yes. A large number of companies, both large and small, have announced their plans to deliver JavaBeans-based products. Read More
What is the relationship between Sun's JFCs and JavaBeans?
Added on Sat, Dec 26, 2009
The JFC (Java Foundation Classes) is based upon the AWT (Abstract Windowing Toolkit), which has been part of the Java platform from the beginning. JFC effectively adds a richer set of visual elements for building JavaBeans components and applications... Read More
What are the security implications for downloading Beans over the Internet
Added on Sat, Dec 26, 2009
JavaBeans does not add any security features to the Java platform. Rather, JavaBeans components have full access to the broad range of security features that are part of the Java platform. JavaBeans components can be used to build a range of... Read More
Why do I get a duplicate name error when loading a JAR file?
Added on Sat, Dec 26, 2009
The most common reason for a " java.lang.ClassFormatError: Duplicate name" error is that a .class file in the JAR contains a class whose class name is different from the expected name. So for example if you have a file called "a/B.class" and it... Read More
Why nobody at Sun wants to read the messages sent to java-beans@java.sun.com?
Added on Sat, Dec 26, 2009
Because of the fact, that 99% of all messages is spam. It is recommended to post on JavaBeans forum, which is inspected by Sun engineers on a regular basis. Read More
What is Glasgow
Added on Sat, Dec 26, 2009
Glasgow - the code name for add-ins to the JavaBeans specification. It contains following specifications: * The Extensible Runtime Containment and Services Protocol * The Drag and Drop Subsystem for the Java Foundation Classes * The JavaBeans... Read More
What is the InfoBus?
Added on Sat, Dec 26, 2009
The InfoBus is a compact Java API which allows cooperating applets or Beans, on a Web page or in any other Java application, to communicate data to one another. The InfoBus architecture enables Beans to be categorized as "data providers" and "data... Read More
How does the InfoBus relate to JavaBeans?
Added on Sat, Dec 26, 2009
The InfoBus specification extends JavaBeans by providing a set of enhanced interfaces to share and exchange dynamic data. Read More
Does the InfoBus compete with JavaBeans?
Added on Sat, Dec 26, 2009
On the contrary, InfoBus extends the power of JavaBeans to a new range of more dynamic applications. InfoBus is fully compatible with JavaBeans, and Lotus enthusiastically supports JavaBeans as the component standard for Java. Wherever possible,... Read More
Will the general public have access to the InfoBus API's?
Added on Sat, Dec 26, 2009
Yes, under the usual terms of the JDK license. The specification and technology preview are available in our products archive. Read More
Is InfoBus easy to use?
Added on Sat, Dec 26, 2009
Using InfoBus aware components, such as the ESuite components from Lotus, users can easily construct powerful data driven applications. No programming or scripting is required: simple parameters are used to establish connections to databases and to... Read More
Is the InfoBus client side only?
Added on Sat, Dec 26, 2009
Yes. InfoBus is typically used to communicate among Beans at the client, and it can also be useful for sharing information among components at a single server site. The initial version of InfoBus is not distributed, and is therefore not intended... Read More
JavaBeans has mechanisms like "bound properties" for data transfer between components. Why is the InfoBus necessary
Added on Sat, Dec 26, 2009
JavaBeans mechanisms, such as bound properties, are very useful in cases where the type of data to be communicated can be hard-coded into the source and target components. The InfoBus adds additional features required for more dynamic data... Read More
Difference between java Beans and Enterprise Java Beans?
Added on Sat, Dec 26, 2009
JavaBeans may be visible or nonvisible at runtime.For example, the visual GUI component may be a button,list box,graphic or a chart. An EJB is a nonvisual ,remote object. 2. JavaBeans are intended to be local to a single process and are... Read More
Can JavaBeans use DCOM as its network model?
Added on Sat, Dec 26, 2009
JavaBeans works with any network model (i.e., to communicate between components across the network), including CORBA, DCOM, etc. JavaBeans integrates well with CORBA IDL, which is an excellent solution for customers in a heterogeneous distributed... Read More
Why is the JavaBeans Bridge for ActiveX only available on Windows/X86?
Added on Sat, Dec 26, 2009
Sun's JavaBeans Bridge for ActiveX is platform specific due to the platform specific nature of ActiveX. Currently, ActiveX is essentially a Window/X86 platform specific component architecture. If Microsoft delivers ActiveX libraries and... Read More
Why would a developer need the JavaBeans Migration Assistant for ActiveX?
Added on Sat, Dec 26, 2009
Many of the capabilities that are so exciting to JavaBeans developers are not available on ActiveX, or are incomplete. There is, therefore, a need for a set of conversion conventions and tools designed to convert desktop ActiveX components into... Read More
Who is developing the JavaBeans Migration Assistant to ActiveX?
Added on Sat, Dec 26, 2009
IBM and Taligent, its object oriented technology subsidiary, with support from JavaSoft, are developing a set of conversion conventions, a porting guide and tool that will allow developers to easily convert their Windows ActiveX components into... Read More
What are/is Enterprise JavaBeans?
Added on Sat, Dec 26, 2009
Enterprise JavaBeans (EJB) is an API specification for building scalable, distributed, component-based, multi-tier applications. It leverages and extends the JavaBeans component model to provide a rich object-oriented transactional environment for... Read More
What is the relationship between Enterprise JavaBeans and JavaBeans?
Added on Sat, Dec 26, 2009
Enterprise JavaBeans extends the JavaBeans component model to handle the needs of transactional business applications. JavaBeans is a component model for visual construction of reusable components for the Java platform. Enterprise JavaBeans... Read More
What are the properties of java beans?
Added on Sat, Dec 26, 2009
The JavaBeans specification defines the following types of bean properties: 1.Simple ? A bean property with a single value whose changes are independent of changes in any other property. 2.Indexed ? A bean property that supports a range of... Read More
How to implement a bound property in your bean application?
Added on Sat, Dec 26, 2009
To implement a bound property in the application, follow these steps: 1. Import the java.beans package. This gives you access to the PropertyChangeSupport class. 2. Instantiate a PropertyChangeSupport object. This object maintains the property... Read More
How to create bound property in bean application
Added on Sat, Dec 26, 2009
To create the title property as a bound property for the MyBean component in the NetBeans GUI Builder, perform the following sequence of operations: 1. Right-click the Bean Patterns node in the MyBean class hierarchy. 2. Select Add|Property... Read More
What is the serializable class in java beans?
Added on Sat, Dec 26, 2009
Any class is serializable as long as that class or a parent class implements the java.io.Serializable interface. Examples of serializable classes include Component, String, Date, Vector, and Hashtable. Read More
How to control serialization in java beans?
Added on Sat, Dec 26, 2009
V Three ways to control serilization in java beans: 1.Automatic serialization, implemented by the Serializable interface. The Java serialization software serializes the entire object, except transient and static fields. 2.Customized... Read More
What is introspection properties in java beans?
Added on Sat, Dec 26, 2009
Introspection is the automatic process of analyzing a bean's design patterns to reveal the bean's properties, events, and methods. Read More
What are introspection API in java beans?
Added on Sat, Dec 26, 2009
The JavaBeans API architecture supplies a set of classes and interfaces to provide introspection. The BeanInfo (in the API reference documentation) interface of the java.beans package defines a set of methods that allow bean implementors to provide... Read More
What is bean customization?
Added on Sat, Dec 26, 2009
Customization provides a means for modifying the appearance and behavior of a bean within an application builder so it meets your specific needs. There are several levels of customization available for a bean developer to allow other developers to... Read More
What is EJB container ?
Added on Sat, Dec 26, 2009
A container that implements the EJB component contract of the J2EE architecture. This contract specifies a runtime environment for enterprise beans that includes security, concurrency, life-cycle management, transactions, deployment, naming, and... Read More
What is EJB context ?
Added on Sat, Dec 26, 2009
A vendor that supplies an EJB container. An object that allows an enterprise bean to invoke services provided by the container and to obtain the information about the caller of a client-invoked method. Read More
What is EJB object ?
Added on Sat, Dec 26, 2009
An object whose class implements the enterprise bean's remote interface. A client never references an enterprise bean instance directly. A client always references an EJB object. The class of an EJB object is generated by a container's... Read More
What is EJB server
Added on Sat, Dec 26, 2009
Software that provides services to an EJB container. For example, an EJB container typically relies on a transaction manager that is part of the EJB server to perform the two-phase commit across all the participating resource managers. The J2EE... Read More
What is enterprise bean provider ?
Added on Sat, Dec 26, 2009
An application developer who produces enterprise bean classes, remote and Interview Questions - Home interfaces, and deployment descriptor files, and packages them in an EJB JAR file. Read More
What is enterprise information system ?
Added on Sat, Dec 26, 2009
The applications that constitute an enterprise's existing system for handling companywide information. These applications provide an information infrastructure for an enterprise. An enterprise information system offers a well-defined set of... Read More
What is Enterprise JavaBeans ?
Added on Sat, Dec 26, 2009
A component architecture for the development and deployment of object-oriented, distributed, enterprise-level applications. Applications written using the Enterprise JavaBeans architecture are scalable, transactional, and secure. Read More
What is Enterprise JavaBeans Query Language?
Added on Sat, Dec 26, 2009
Defines the queries for the finder and select methods of an entity bean having container-managed persistence. A subset of SQL92, EJB QL has extensions that allow navigation over the relationships defined in an entity bean's abstract schema. Read More
What is an entity ?
Added on Sat, Dec 26, 2009
A distinct, individual item that can be included in an XML document by referencing it. Such an entity reference can name an entity as small as a character (for example, <, which references the less-than symbol or left angle bracket, <). An... Read More
What is entity bean ?
Added on Sat, Dec 26, 2009
An enterprise bean that represents persistent data maintained in a database. An entity bean can manage its own persistence or can delegate this function to its container. An entity bean is identified by a primary key. If the container in which an... Read More
|