<< < 1 2 3 4 5   Sort: Date

What is an application object ?
.NET INTERVIEW QUESTIONS - What is an application object ? Application object can be used in situation where we want data to be shared across users globally.
2009-04-21, 4088👍, 0💬

What are two different types of remote object creation mode in .NET ?
.NET INTERVIEW QUESTIONS - What are two different types of remote object creation mode in .NET ? There are two different ways in which object can be created using Remoting :- * SAO (Server Activated Objects) also called as Well-Known call mode. * CAO (Client Activated Objects) SAO has two modes “Sin...
2009-08-11, 4072👍, 0💬

What is a Managed Code?
.NET INTERVIEW QUESTIONS - What is a Managed Code? Managed code runs inside the environment of CLR i.e. .NET runtime. In short all IL are managed code. But if you are using some third party software example VB6 or VC++ component they are unmanaged code as .NET runtime (CLR) does not have control ove...
2010-02-16, 4069👍, 0💬

What is a Thread ?
.NET INTERVIEW QUESTIONS - What is a Thread ? A thread is the basic unit to which the operating system allocates processor time.
2009-11-03, 4068👍, 0💬

What the different phase/steps of acquiring a proxy object in Webservice ?
.NET INTERVIEW QUESTIONS - What the different phase/steps of acquiring a proxy object in Webservice ? Following are the different steps needed to get a proxy object of a webservice at the client side :- * Client communicates to UDI node for WebService either through browser or UDDI's public web serv...
2009-10-13, 4057👍, 0💬

What is Abstract ?
What is Abstract ? NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based WebServices. .NET Remoting is easier to use than Jav...
2009-03-26, 4046👍, 0💬

What are the precautions you will take in order that SQLSERVER Mode work properly ?
.NET INTERVIEW QUESTIONS - What are the precautions you will take in order that SQLSERVER Mode work properly ? Following are the things to remember so that SQLSERVER Mode works properly :- * SQLSERVER mode session data is stored in a different process so you must ensure that your objects are seriali...
2009-06-09, 4029👍, 0💬

.NET INTERVIEW QUESTIONS - What is a IL?
.NET INTERVIEW QUESTIONS - What is a IL? (What is MSIL or CIL , What is JIT?) (IL)Intermediate Language is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language). All .NET source code is compiled to IL. This IL is then converted to machine code at the point where ...
2010-02-02, 4004👍, 0💬

How can you reference current thread of the method ?
.NET INTERVIEW QUESTIONS - How can you reference current thread of the method ? "Thread.CurrentThread" refers to the current thread running in the method."CurrentThread" is a public static property.
2009-11-17, 3993👍, 0💬

What are two different types of remote object creation mode in .NET ?
.NET INTERVIEW QUESTIONS - What are two different types of remote object creation mode in .NET ? There are two different ways in which object can be created using Remoting :- * SAO (Server Activated Objects) also called as Well-Known call mode. * CAO (Client Activated Objects) SAO has two modes “Sin...
2009-08-11, 3951👍, 0💬

What is DISCO ?
.NET INTERVIEW QUESTIONS - What is DISCO ? DISCO is the abbreviated form of Discovery. It is basically used to club or group common services together on a server and provides links to the schema documents of the services it describes may require.
2009-10-07, 3923👍, 0💬

What is the fundamental of published or pre-created objects in Remoting ?
.NET INTERVIEW QUESTIONS - What is the fundamental of published or pre-created objects in Remoting ? In scenarios of singleton or single call the objects are created dynamically. But in situations where you want to pre-create object and publish it you will use published object scenarios. Dim obj as ...
2009-08-18, 3838👍, 0💬

What is ObjRef object in remoting ?
.NET INTERVIEW QUESTIONS - What is ObjRef object in remoting ? All Marshal() methods return ObjRef object.The ObjRef is serializable because it implements the interface ISerializable, and can be marshaled by value. The ObjRef knows about :- * location of the remote object * host name * port number *...
2009-10-01, 3837👍, 0💬

<< < 1 2 3 4 5   Sort: Date