Data Warehousing (1107) Databases (3004) JAVA Related 2673) MainFrames (975) Microsoft Related (2296) Networking (553)
Operating Systems (919) Programming (3254) SAP (2318) Testing FAQS (1674) Testing Material (252) Web Related (994)

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
How do I increase WebLogic Server memory?
Added on Thu, Jan 7, 2010
Increase the allocation of Java heap memory for WebLogic Server. (Set the minimum and the maximum to the same size.) Start WebLogic Server with the -ms32m option to increase the allocation, as in this example: $ java ... -ms32m -mx32m ... This... Read More
What happens when a failure occurs and the stub cannot connect to a WebLogic Server instance?
Added on Thu, Jan 7, 2010
When the failure occurs, the stub removes the failed server instance from its list. If there are no servers left in its list, the stubb uses DNS again to find a running server and obtain a current list of running instances. Also, the stub... Read More
Can I start a Managed Server if the Administration Server is unavailable
Added on Thu, Jan 7, 2010
By default, if a Managed Server is unable to connect to the specified Administration Server during startup, it can retrieve its configuration by reading a configuration file and other files directly. You cannot change the server's configuration... Read More
How can I set deployment order for applications?
Added on Thu, Jan 7, 2010
WebLogic Server allows you to select the load order for applications. WebLogic Server deploys server-level resources (first JDBC and then JMS) before deploying applications. Applications are deployed in this order: connectors, then EJBs, then Web... Read More
Can I still use the default connection factories supported in WebLogic Release 5.1?
Added on Thu, Jan 7, 2010
The following two names for the default connection factories have been deprecated: javax.jms.QueueConnectionFactory javax.jms.TopicConnectionFactory. However, these connection factories are still defined and usable in this release for... Read More
How do I provide user credentials for starting a server?
Added on Thu, Jan 7, 2010
When you create a domain, the Configuration Wizard prompts you to provide the username and password for an initial administrative user. If you create the domain in development mode, the wizard saves the username and encrypted password in a boot... Read More
What is the function of T3 in WebLogic Server?
Added on Thu, Jan 7, 2010
T3 provides a framework for WebLogic Server messages that support for enhancements. These enhancements include abbreviations and features, such as object replacement, that work in the context of WebLogic Server clusters and HTTP and other product... Read More
How do you set the classpath?
Added on Thu, Jan 7, 2010
WebLogic Server installs the following script that you can use to set the classpath that a server requires: WL_HOMEserverinsetWLSEnv.cmd (on Windows) WL_HOME/server/bin/setWLSEnv.sh (on UNIX) 5)How do stubs work in a WebLogic Server cluster? ... Read More
How does a server know when another server is unavailable?
Added on Thu, Jan 7, 2010
Question : How does a server know when another server is unavailable? Category Weblogic Interview Questions Rating (0.0) By 0 users Added on 9/3/2009 Views 3 Rate it!            Answers: ... Read More
What is the difference between URL instance and URLConnection instance? -
Added on Thu, Jan 7, 2010
A URL instance represents the location of a resource, and a URLConnection instance represents a link for accessing or communicating with the resource at the location. Read More
What are the two important TCP Socket classes?
Added on Thu, Jan 7, 2010
ServerSocket is used for normal two-way socket communication. Socket class allows us to read and write through the sockets. getInputStream() and getOutputStream() are the two methods available in Socket class. Read More
What technologies are included in J2EE?
Added on Thu, Jan 7, 2010
The primary technologies in J2EE are: Enterprise JavaBeansTM (EJBsTM), JavaServer PagesTM (JSPsTM), Java Servlets, the Java Naming and Directory InterfaceTM (JNDITM), the Java Transaction API (JTA), CORBA, and the JDBCTM data access API. Read More
What is the Java Authentication and Authorization Service (JAAS) 1.0?
Added on Thu, Jan 7, 2010
Java Authentication and Authorization Service (JAAS) provides a way for a J2EE application to authenticate and authorize a specific user or group of users to run it. JAAS is a Java programing language version of the standard Pluggable... Read More
What?s the difference between JNDI lookup(), list(), listBindings(), and search
Added on Thu, Jan 7, 2010
lookup() attempts to find the specified object in the given context. I.e., it looks for a single, specific object and either finds it in the current context or it fails. list() attempts to return an enumeration of all of the NameClassPair?s of all of... Read More
Components of JNDI?
Added on Thu, Jan 7, 2010
Naming Interface- The naming interface organizes information hierarchically and maps human-friendly names to addresses or objects that are machine-friendly. It allows access to named objects through multiple namespaces. Directory Interface - JNDI... Read More
I plugged in a version of Apache Xalan that I downloaded from the Apache Web site, and now I get errors when I try to transform documents. What is the problem?
Added on Thu, Jan 7, 2010
You must ensure that the version of Apache Xalan you download from the Apache Web site is compatible with Apache Xerces version 1.3.1. Because you cannot plug in a different version of Apache Xerces , the only version of Apache Xerces that is... Read More
What is the Max amount of information that can be saved in a Session Object?
Added on Thu, Jan 7, 2010
As such there is no limit on the amount of information that can be saved in a Session Object. Only the RAM available on the server machine is the limitation. The only limit is the Session ID length(Identifier), which should not exceed more than 4K.... Read More
Must my bean-managed persistence mechanism use the WebLogic JTS driver?
Added on Thu, Jan 7, 2010
BEA recommend that you use the TxDataSource for bean-managed persistence. Read More
Do EJBs have to be homogeneously deployed across a cluster? Why?
Added on Thu, Jan 7, 2010
Yes. Beginning with WebLogic Server version 6.0, EJBs must be homogeneously deployed across a cluster for the following reasons: * To keep clustering EJBs simple * To avoid cross server calls which results in more efficiency. If EJBs are not... Read More
Is an XSLT processor bundled in WebLogic Server?
Added on Thu, Jan 7, 2010
Yes, an XSLT processor, based on Apache?s Xalan 2.0.1 processor, in WebLogic Server 6.1. Read More
What causes Java.io exceptions in the log file of WebLogic Server?
Added on Thu, Jan 7, 2010
You may see messages like these in the log file: (Windows NT) java.io.IOException Connection Reset by Peer java.io.EOFException Connection Reset by Peer (Solaris) java.io.Exception: Broken pipe These messages occur when you are using... Read More
What are the enhancements in EJB 2.0 specification with respect to Asynchronous communication?
Added on Thu, Jan 7, 2010
EJB 2.0 mandates integration between JMS and EJB. We have specified the integration of Enterprise JavaBeans with the Java Message Service, and have introduced message-driven beans. A message-driven bean is a stateless component that is invoked by the... Read More
What are the enhancements in EJB 2.0 with respect to CMP?
Added on Thu, Jan 7, 2010
EJB 2.0 extends CMP to include far more robust modeling capability, with support for declarative management of relationships between entity EJBs. Developers no longer need to re-establish relationships between the various beans that make up their... Read More
Can you briefly describe local interfaces?
Added on Thu, Jan 7, 2010
EJB was originally designed around remote invocation using the Java Remote Method Invocation (RMI) mechanism, and later extended to support to standard CORBA transport for these calls using RMI/IIOP. This design allowed for maximum flexibility in... Read More
What are the special design care that must be taken when you work with local interfaces?
Added on Thu, Jan 7, 2010
It is important to understand that the calling semantics of local interfaces are different from those of remote interfaces. For example, remote interfaces pass parameters using call-by-value semantics, while local interfaces use call-by-reference.... Read More
What happens if remove( ) is never invoked on a session bean?
Added on Thu, Jan 7, 2010
In case of a stateless session bean it may not matter if we call or not as in both cases nothing is done. The number of beans in cache is managed by the container. In case of stateful session bean, the bean may be kept in cache till either the... Read More
What is the difference between creating a distributed application using RMI and using a EJB architecture?
Added on Thu, Jan 7, 2010
It is possible to create the same application using RMI and EJB. But in case of EJB the container provides the requisite services to the component if we use the proper syntax. It thus helps in easier development and lesser error and use of proven... Read More
Why would a client application use JTA transactions?
Added on Thu, Jan 7, 2010
One possible example would be a scenario in which a client needs to employ two (or more) session beans, where each session bean is deployed on a different EJB server and each bean performs operations against external resources (for example, a... Read More
Can the bean class implement the EJBObject class directly? If not why?
Added on Thu, Jan 7, 2010
It is better not to do it will make the Bean class a remote object and its methods can be accessed without the containers? security, and transaction implementations if our code by mistake passed it in one of its parameters. Its just a good design... Read More
What does isIdentical() method return in case of different type of beans?
Added on Thu, Jan 7, 2010
Stateless - true always. Stateful - depends whether the references point to the same session object. Entity - Depends whether the primary key is the same and the home is same. Read More
How should you type cast a remote object? Why?
Added on Thu, Jan 7, 2010
A client program that is intended to be interoperable with all compliant EJB Container implementations must use the javax.rmi.PortableRemoteObject.narrow(?) method to perform type-narrowing of the client-side representations of the remote home... Read More
What should you do in a passive method?
Added on Thu, Jan 7, 2010
You try to make all nontransient variables, which are not one of the following to null. For the given list the container takes care of serializing and restoring the object when activated. Serializable objects, null, UserTransaction, SessionContext,... Read More
Can I start a Managed Server if the Administration Server is unavailable?
Added on Thu, Jan 7, 2010
By default, if a Managed Server is unable to connect to the specified Administration Server during startup, it can retrieve its configuration by reading a configuration file and other files directly. You cannot change the server's configuration... Read More
How do stubs work in a WebLogic Server cluster?
Added on Thu, Jan 7, 2010
Clients that connect to a WebLogic Server cluster and look up a clustered object obtain a replica-aware stub for the object. This stub contains the list of available server instances that host implementations of the object. The stub also contains the... Read More
How does a server know when another server is unavailable
Added on Thu, Jan 7, 2010
WebLogic Server uses two mechanisms to determine if a given server instance is unavailable. Each WebLogic Server instance in a cluster uses multicast to broadcast regular "heartbeat" messages that advertise its availability. By monitoring... Read More
How are notifications made when a server is added to a cluster?
Added on Thu, Jan 7, 2010
The WebLogic Server cluster broadcasts the availability of a new server instance each time a new instance joins the cluster. Cluster-aware stubs also periodically update their list of available server instances. Read More
How do clients handle DNS requests to failed servers?
Added on Thu, Jan 7, 2010
If a server fails and DNS continues to send requests to the unavailable machine, this can waste bandwidth. For a Java client application, this problem occurs only during startup. WebLogic Server caches the DNS entries and removes the unavailable... Read More
How many WebLogic Servers can I have on a multi-cpu machine?
Added on Thu, Jan 7, 2010
There are many possible configurations and each has its own advantages and disadvantages. BEA WebLogic Server has no built-in limit for the number of server instances that can reside in a cluster. Large, multi-processor servers such as Sun... Read More
Which types of JDBC databases does WebLogic JMS support
Added on Thu, Jan 7, 2010
The JMS database can be any database that is accessible through a JDBC driver. WebLogic supports and provides JDBC drivers for the following databases: * Cloudscape * Informix * Microsoft SQL ( MSSQL) Server (Versions 6.5 and 7) * Oracle ... Read More





   copy right ® all rights reserved by www.fullinterview.com