<< < 1 2 3 4 5 > >>   Sort: Date

What are the ways in which client can create object on server in CAO model ?
.NET INTERVIEW QUESTIONS - What are the ways in which client can create object on server in CAO model ? There are two ways by which you can create Client objects on remoting server :- * Activator.CreateInstance(). * By Keyword “New”.
2009-08-18, 4845👍, 0💬

How to add and remove an assembly from GAC?
.NET INTERVIEW QUESTIONS - How to add and remove an assembly from GAC? There are two ways to install .NET assembly in GAC:- * Using Microsoft Installer Package. You can get download of installer from http://www.microsoft.com. * Using Gacutil. Goto “Visual Studio Command Prompt” and type “gacutil –i...
2010-03-23, 4816👍, 0💬

What is DCOM Can anybod explain in detail
What is DCOM Can anybod explain in detail Short for Distributed Component Object Model, an extension of the Component Object Model (COM) that allows COM components to communicate across network boundaries. Traditional COM components can only perform interprocess communication across process boundari...
2009-03-06, 4807👍, 0💬

How can we call methods in remoting Asynchronously ?
.NET INTERVIEW QUESTIONS - How can we call methods in remoting Asynchronously ? All previous examples are a synchronous method calls that means client has to wait until the method completes the process. By using Delegates we can make Asynchronous method calls.
2009-09-01, 4760👍, 0💬

Security in Remoting ?
Security in Remoting ? Security is of paramount importance to any distributed application. Although the .NET Remoting infrastructure does not define any security features itself, because distributed applications are managed code they have full access to all of the .NET security features. In addition...
2009-03-24, 4759👍, 0💬

What is Multi-threading ?
.NET INTERVIEW QUESTIONS - What is Multi-threading ? Multi-threading forms subset of Multi-tasking. Instead of having to switch between programs this feature switches between different parts of the same program. Example you are writing in word and at the same time word is doing a spell check in back...
2009-10-27, 4752👍, 0💬

What the way to stop a long running thread ?
.NET INTERVIEW QUESTIONS - What the way to stop a long running thread ? Thread.Abort() stops the thread execution at that moment itself.
2009-12-01, 4735👍, 0💬

Is Session_End event supported in all session modes ?
.NET INTERVIEW QUESTIONS - Is Session_End event supported in all session modes ? Session_End event occurs only in “Inproc mode”.”State Server” and “SQL SERVER” do not have Session_End event.
2009-06-02, 4727👍, 0💬

What are different types of caching using cache object of ASP.NET?
.NET INTERVIEW QUESTIONS - What are different types of caching using cache object of ASP.NET? You can use two types of output caching to cache information that is to be transmitted to and displayed in a Web browser: * Page Output Caching Page output caching adds the response of page to cache object....
2009-05-12, 4716👍, 0💬

What is NameSpace?
.NET INTERVIEW QUESTIONS - What is NameSpace? Namespace has two basic functionality :- * NameSpace Logically group types, example System.Web.UI logically groups our UI related features. * In Object Oriented world many times its possible that programmers will use the same class name.By qualifying Nam...
2010-03-02, 4714👍, 0💬

What is a CTS?
.NET INTERVIEW QUESTIONS - What is a CTS? In order that two language communicate smoothly CLR has CTS (Common Type System).Example in VB you have “Integer” and in C++ you have “long” these datatypes are not compatible so the interfacing between them is very complicated. In order to able that two di...
2010-02-09, 4699👍, 0💬

How can you implement Page Fragment Caching ?
.NET INTERVIEW QUESTIONS - How can you implement Page Fragment Caching ? Page fragment caching involves the caching of a fragment of the page, rather than the entire page. When portions of the page are need to be dynamically created for each user request this is best method as compared to page cachi...
2009-05-26, 4699👍, 0💬

What is Difference between NameSpace and Assembly?
.NET INTERVIEW QUESTIONS - What is Difference between NameSpace and Assembly? Following are the differences between namespace and assembly : * Assembly is physical grouping of logical units. Namespace logically groups classes. * Namespace can span multiple assembly.
2010-03-02, 4674👍, 0💬

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

What is UDDI ?
.NET INTERVIEW QUESTIONS - What is UDDI ? Full form of UDDI is Universal Description, Discovery and Integration. It is a directory that can be used to publish and discover public Web Services. If you want to see more details you can visit the http://www.UDDI.org .
2009-10-01, 4645👍, 0💬

Can Non-Default constructors be used with Single Call SAO?
.NET INTERVIEW QUESTIONS - Can Non-Default constructors be used with Single Call SAO? Non-Default constructors can not be used with single call objects as object is created with every method call, there is no way to define Non-default constructors in method calls. It is possible to use Non-Default c...
2009-09-01, 4596👍, 0💬

What is garbage collection?
.NET INTERVIEW QUESTIONS - What is garbage collection? Garbage collection is a CLR feature which automatically manages memory. Programmers forget to release the objects while coding . CLR automatically releases objects when they are no longer in use and referenced. CLR runs on non-deterministic to s...
2010-03-23, 4594👍, 0💬

Can you explain in brief how can we implement threading ?
.NET INTERVIEW QUESTIONS - Can you explain in brief how can we implement threading ? Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim pthread1 As New Thread(AddressOf Thread1) Dim pthread2 As New Thread(AddressOf Thread2) pthread1.Start() pth...
2009-11-17, 4593👍, 0💬

What is the difference between Cache object and application object ?
.NET INTERVIEW QUESTIONS - What is the difference between Cache object and application object ? The main difference between the Cache and Application objects is that the Cache object provides cache-specific features, such as dependencies and expiration policies.
2009-04-28, 4591👍, 0💬

Can you describe IUKNOWN interface in brief ?
.NET INTERVIEW QUESTIONS - Can you describe IUKNOWN interface in brief ? Every COM object supports at least one interface, the IUnknown interface. All interfaces are classes derived from the base class IUnknown. Each interface supports methods access data and perform operations transparently to the ...
2010-01-19, 4573👍, 0💬

.NET Remoting Overview ?
.NET Remoting Overview ? .NET Remoting is very flexible. You have a wide range of communications options and activation methods, as well as full control over a distributed object's lifecycle. You can choose TCP or HTTP communications protocols on any port, using text or binary formatting. The .NET R...
2009-03-27, 4540👍, 0💬

Which class does the remote object has to inherit ?
.NET INTERVIEW QUESTIONS - Which class does the remote object has to inherit ? All remote objects should inherit from System.MarshalbyRefObject.
2009-08-04, 4527👍, 0💬

Which config file has all the supported channels/protocol ?
.NET INTERVIEW QUESTIONS - Which config file has all the supported channels/protocol ? Machine.config file has all the supported channels and formatter supported by .NET remoting.Machine.config file can be found at “C:\WINDOWS\Microsoft.NET\Fram ework\vXXXXX\CONFIG”path. Find element in the Machine....
2009-09-01, 4524👍, 0💬

What are Value types and Reference types ?
.NET INTERVIEW QUESTIONS - What are Value types and Reference types ? Value types directly contain their data which are either allocated on the stack or allocated in-line in a structure. Reference types store a reference to the value's memory address, and are allocated on the heap. Reference types c...
2010-04-13, 4508👍, 0💬

<< < 1 2 3 4 5 > >>   Sort: Date