<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   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, 4996👍, 0💬

What is UDDI
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 .
2007-10-23, 4991👍, 0💬

Are CAO stateful in nature ?
.NET INTERVIEW QUESTIONS - Are CAO stateful in nature ? Yes. In CAO remoting model client creates a instance on server and instance variable set by client on server can be retrieved again with correct value.
2009-08-26, 4987👍, 0💬

Describe in detail Basic of SAO architecture of Remoting
Describe in detail Basic of SAO architecture of Remoting? For these types of questions interviewer expects small and sweet answers. He is basically looking at what you know about the specific subject. For these type of question this book will provide detail code which is not necessary to be said dur...
2007-10-23, 4987👍, 0💬

How can we know a state of a thread
How can we know a state of a 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.
2007-10-22, 4987👍, 0💬

What are the ways in which client can create object on server in CAO
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 gNewh.
2007-10-23, 4986👍, 0💬

Which namespace has threading
Which namespace has threading ? Systems.Threading has all the classes related to implement threading. Any .NET application who wants to implement threading has to import this namespace. Note :- .NET program always has at least two threads running one is the main program and second is the garbage col...
2007-10-22, 4980👍, 0💬

What are levels in dimensions
What are levels in dimensions ? Dimensions are arranged in hierarchical levels, with unique positions within each level. For example, a time dimension may have four levels, such as Year, Quarter, Month, and Day. Or the dimension might have only three levels, for example, Year, Week, and Day. The val...
2007-10-25, 4978👍, 0💬

What are benefits and limitations of using Cookies
What are benefits and limitations of using Cookies? Following are benefits of using cookies for state management :- ã No server resources are required as they are stored in client. ã They are light weight and simple to use Following are limitation of using cookies :- ã Most browsers place a 409...
2007-10-23, 4973👍, 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, 4972👍, 0💬

What are dependencies in cache and types of dependencies
What are dependencies in cache and types of dependencies ? When you add an item to the cache, you can define dependency relationships that can force that item to be removed from the cache under specific activities of dependenci es.Example if the cache object is dependent on file and when the file da...
2007-10-23, 4971👍, 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, 4970👍, 0💬

How can you use Hidden frames to cache client data
How can you use Hidden frames to cache client data ? This technique is implemented by creating a Hidden frame in page which will contain your data to be cached. &lt;FRAMESET cols="100%,*,*"> &lt;FRAMESET rows="100%"> &lt;FRAME src="data_of_frame1.html">& ;lt;/FRAMESET>&lt;FRAME sr...
2007-10-23, 4966👍, 0💬

How to add and remove an assembly from GAC
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 ¨Ci (assembly_name)...
2007-10-22, 4965👍, 0💬

How can you reference current thread of the method
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.
2007-10-22, 4963👍, 0💬

What is Dataset object
What is Dataset object? The DataSet provides the basis for disconnected storage and manipulation of relational data. We fill it from a data store,work with it while disconnected from that data store, then reconnect and flush changes back to the data store if required.
2007-10-24, 4959👍, 0💬

What is the use of dataadapter
What is the use of dataadapter ? These are objects that connect one or more Command objects to a Dataset object. They provide logic that would get data from the data store and populates the tables in the DataSet, or pushes the changes in the DataSet back into the data store. ? An OleDbDataAdapter ob...
2007-10-24, 4957👍, 0💬

What is concept of Boxing and Unboxing
What is concept of Boxing and Unboxing ? Boxing permits any value type to be implicitly converted to type object or to any interface type implemented by value type. Boxing is a process in which object instances are created and copy values in to that instance. Unboxing is vice versa of boxing operati...
2007-10-22, 4957👍, 0💬

Does the performance for viewstate vary according to User controls
Does the performance for viewstate vary according to User controls ? Performance of viewstate varies depending on the type of server control to which it is applied. Label, TextBox, CheckBox, RadioButton, and HyperLink are server controls that perform well with ViewState. DropDownList, ListBox, DataG...
2007-10-23, 4956👍, 0💬

Can we change the order in a select query with a specified collation sequence
Can we change the order in a select query with a specified collation sequence? Yes we can specify a collate sequence in the order by clause. That will change the sort according to the collation defined in the order by claused. ORDER BY { order_by_expression [ COLLATE collation_name ] [ ASC | DESC ] ...
2007-11-02, 4954👍, 0💬

What is file extension of Webservices
What is file extension of Webservices ? .ASMX is extension for Webservices. Note :- After this we are going to deal with a sample of webservice. In VS2005 webproject is created from the menu itself as compared to 2003 where it was present in the explorer.
2007-10-23, 4954👍, 0💬

What is ObjRef object in remoting
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 ã object name.
2007-10-23, 4954👍, 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.Int...
2007-10-22, 4945👍, 0💬

What are benefits and Limitation of using Hidden fields
What are benefits and Limitation of using Hidden fields ? Following are the benefits of using Hidden fields :- ã They are simple to implement. ã As data is cached on client side they work with Web Farms. ã All browsers support hidden field. ã No server resources are required. Following are li...
2007-10-23, 4938👍, 0💬

<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Date