New Dot Net Remoting Interview Questions :: ALLInterview.com http://www.allinterview.com New Dot Net Remoting Interview Questions en-us In which conditions do you opt for Remoting services? http://www.allinterview.com/showanswers/28569.html If client and server belongs to same operation system then we have to go with remoting services.............. What are the differences between Marshal by value and Marshal by ref http://www.allinterview.com/showanswers/23216.html Marshal-by-value objects are copied by the remoting system and passed in their entirety to the caller's application domain. Once copied to the caller's application domain (by the marshaling process), all method calls and property ac Give the Hierarchial description of remoting? http://www.allinterview.com/showanswers/23215.html .Net remoting is replacement of DCOM. Step 1:Build a proxcy which is looks like a real obj. Step 2:By useing proxcy U can make method calls on remoting objs. Step 3:These method calls know as "Messages", messages can be serial How to perform Remoting? http://www.allinterview.com/showanswers/23214.html Remoting Performance and Auto Web Proxy . The .Net Framework 2.0 has significant changes to its support for proxies including support for connection- specific proxy settings, automatic proxy configuration and the ability to automatically refr When we use web service and when we use Remoting? http://www.allinterview.com/showanswers/23213.html .NET remoting is specifically used when you are using only Microsoft platform. Remoting cannot be used between .net client and non .NET clients. Web services though can be used for communication on MIcrosoft technologies, but their main featur Choosing between HTTP and TCP for protocols and Binary and SOAP for http://www.allinterview.com/showanswers/20868.html Binary over TCP is the most effiecient, SOAP over HTTP is the most interoperable. How does assembly versioning in .NET prevent DLL Hell? http://www.allinterview.com/showanswers/20867.html Using Zero impact deployment in .Net to prevent the DLL Hell Proplem. How do you directly call a native function exported from a DLL? http://www.allinterview.com/showanswers/20866.html Yes we can call a native function exported from a Dll in the following way, I used C#.Net for Coding. Add a Namespace that "System.Runtime.InteropServices" Then use the following code, Syntax: [DllImport("dllname")] Can you configure a .NET Remoting object via XML file? http://www.allinterview.com/showanswers/20858.html Yes, via machine.config and application level .config file (or web.config in ASP.NET). Application-level XML settings take precedence over machine.config. How are the activation URLs different in case of SAO and CAO in .NET http://www.allinterview.com/showanswers/20857.html What&#039;s the difference btw the following methods in .NET remotin http://www.allinterview.com/showanswers/20856.html RegisterWellknownServiceType(): Method used to define and configure a remotable Object that needs to be Activated on server side. This takes 3 parameter as follows:- RegisterWellKnownServiceType( typeof( <Class/Object Name> ), <" About sn.exe ? http://www.allinterview.com/showanswers/20656.html strong Name is the process of assinging the storng name to the shared assembly. About .NET Remoting and types of remoting ? http://www.allinterview.com/showanswers/20655.html Remoting allows two processes, a Server and a Client, to communicate in the same system, the same network or across networks. It allows applications in the same or different domains to inter-communicate. This article discusses the concept of What are static assemblies and dynamic assemlies. Differences between http://www.allinterview.com/showanswers/20581.html Static assemblies are stored on disk.But dynamic assemblies are directley loaded from memory. What is a process ? http://www.allinterview.com/showanswers/20580.html Process is set of task of an running application or an application itself, getting executed on a OS for which memory is allocated by OS.