<< < 16 17 18 19 20 21 22 23 24 25 26 > >>   Sort: Rank

Can you explain what is remotable and non-remotable objects ?
Can you explain what is remotable and non-remotable objects ? The remotable objects are the objects which can be distributed accross domains, can be used with domain. The non-remotable objects are the objects which can't be distributed accross domains. In distributed system, if an object is very big...
2009-03-19, 4541👍, 0💬

.NET Remoting versus Distributed COM ?
.NET Remoting versus Distributed COM ? In the past interprocess communication between applications was handled through Distributed COM, or DCOM. DCOM works well and the performance is adequate when applications exist on computers of similar type on the same network. However, DCOM has its drawbacks i...
2009-03-19, 4680👍, 0💬

Which is the best place to store ConnectionString in Dot Net Projects?
Which is the best place to store ConnectionString in Dot Net Projects? I am about to deploy my first ASP.NET project. But, I was used to store my variables, such as connection strings, in the global.asa file, in an application. However, these variables are different on my development and production ...
2009-03-18, 7240👍, 0💬

How Can we change priority & what levels of priority are provided by Dot Net?
How Can we change priority & what levels of priority are provided by Dot Net? Thread Priority can be changed by using Threadname.Priority = ThreadPriority.Highest. In the sample provided look out for code where the second thread is ran with a high priority. Following are different levels of Prio...
2009-03-13, 7032👍, 0💬

What does address of operator do in background? any example.
What does address of operator do in background? any example. The AddressOf operator creates a delegate object to the BackgroundProcess method. A delegate within VB.NET is a type-safe, object-oriented function pointer. After the thread has been instantiated, you begin the execution of the code by cal...
2009-03-13, 4651👍, 0💬

What is dot Net Remoting?
What is dot Net Remoting? NET Remoting is an enabler for application communication. It is a generic system for different applications to use to communicate with one another. .NET objects are exposed to remote processes, thus allowing interprocess communication. The applications can be located on the...
2009-03-11, 4674👍, 0💬

I want to use the Win32 API function .....
When we use windows API in Dot Net? I want to use the Win32 API function : SendMessageToDescendants I want to use it in a VB.Net app, but I have a few questions..... 1) Can one use Win32 API functions in VB.Net 2) Is doing so a "no no" 3) are VB.Net windows, underneath the covers, Win32 windows? and...
2009-03-06, 4904👍, 0💬

What is a thread? How to use and create a thread in .NET?
What is a thread? How to use and create a thread in .NET? Can we use events with threading? Threads - When we want to run one or more instances of a method, we make use of threading. Suppose we have a method like this... Private Sub OnGoingProcess() Dim i As Integer = 1 Do While True ListBox1.Items....
2009-03-06, 5316👍, 0💬

What does address of operator do in background?
What does address of operator do in background? The AddressOf operator creates a delegate object to the BackgroundProcess method. A delegate within VB.NET is a type-safe, object-oriented function pointer. After the thread has been instantiated, you begin the execution of the code by calling the Star...
2009-03-06, 8072👍, 0💬

What is the difference between System.String and System.StringBuilder classes?
Difference between System.String & System.StringBuilder Classes? System.String is immutable; System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed. prefer System.StringBuilder when you are doing lot of string manuplation oper...
2009-03-06, 4734👍, 0💬

What is application domain? Explain.
What is application domain? Explain. An application domain is the CLR equivalent of an operation system's process. An application domain is used to isolate applications from one another. This is the same way an operating system process works. The separation is required so that applications do not af...
2009-03-06, 7252👍, 0💬

Calling unmanaged function from within managed code
Calling unmanaged function from within managed code When we use windows API in Dot Net?Is it managed or un managed code? Have you ever tried to called an unmanaged function (eg: MessageBox function inside the User32.dll ) with in a managed code? Let's try to do that. Open up your Visual studio 2005 ...
2009-03-06, 5086👍, 0💬

How do we create DCOM object in VB6
How do we create DCOM object in VB6 Using the CreateObject method you can create a DCOM object. You have to put the server name in the registry.
2009-03-06, 4710👍, 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, 4487👍, 0💬

What is use of interlocked class?
What is use of interlocked class? Interlocked class provides methods by which you can achieve following functionalities :- * Increment Values. * Decrement values. * Exchange values between variables. * Compare values from any thread. in a synchronization mode. Example :- System.Threading.Interlocked.. .
2009-03-06, 4587👍, 0💬

How Can We Know state of thread?
How Can We Know state of thread? "ThreadState" property can be used to get detail of a thread. Thread can have one or a combination of status.System.Threading. Threadstate enumeration has all the values to detect a state of thread. Some sample states are Isrunning, IsAlive, suspended etc.
2009-03-06, 5378👍, 0💬

What is LeaseTime, SponsershipTime,RenewonCallTime and LeaseManagerPollTime?
What is LeaseTime, SponsershipTime,RenewonCallTim e& LeaseManagerPollTime? The Client Lease Time is the amount of time a network user will be allowed connection to the Router with their current dynamic IP address. Enter the amount of time, in minutes, that the user will be "leased" this dynamic ...
2009-03-06, 4713👍, 0💬

How can we host a service on two different protocols on a single server
How can we host a service on two different protocols on a single server? Let’s first understand what this question actually means. Let’s say we have made a service and we want to host this service using HTTP as well as TCP. You must be wondering why to ever host services on two different types of pr...
2007-11-04, 5861👍, 0💬

Can you explain duplex contracts in WCF
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the server service provides a reference call back Uri back to the client. So the client initiates a call using the proxy class and when server finishes its work it notifies the client using the callback c...
2007-11-04, 8184👍, 0💬

What is one way operation
What is one way operation? IsOneWay equal to true ensures that the client does not have to wait for the response. So methods marked by IsOneWay to true should always return void. In this the caller does not get anything in return so it is called as one-way communication. In order to understand one w...
2007-11-04, 5003👍, 0💬

Which are the various programming approaches for WCF
Which are the various programming approaches for WCF?
2007-11-04, 9267👍, 0💬

What are different bindings supported by WCF
What are different bindings supported by WCF? WCF includes predefined bindings. They cover most of bindings widely needed in day to day application. But just incase you find that you need to define something custom WCF does not stop you. So let’s try to understand what each binding provides. BasicHt...
2007-11-04, 5040👍, 0💬

What is the difference WCF and Web services?
What is the difference WCF and Web services? Web services can only be invoked by HTTP. While Service or a WCF component can be invoked by any protocol and any transport type. Second web services are not flexible. But Services are flexible. If you make a new version of the service then you need to ju...
2007-11-04, 5422👍, 0💬

What are the major differences between services and Web services
What are the major differences between services and Web services?
2007-11-04, 5499👍, 0💬

<< < 16 17 18 19 20 21 22 23 24 25 26 > >>   Sort: Rank