How to perform Remoting?
Answer / ramakrishna pidugu
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 refreshing proxy settings
whenever the active connection changes. These features can
be very useful in .Net Remoting but the auto web proxy
feature can also affect performance. If you do not need
these settings in your client it might be useful to disable
them.
There are a number of ways to disable this:
1. In Internet Explorer Open Internet Options,
(either through control panel or the Internet Explorerâ„¢
tools menu), switch to the connections tab, and select LAN
settings. Clear all checkboxes under automatic
configuration. This will disable automatic proxy settings
for the current user (note that this will not work for
ASP.NET sites making outgoing web service calls because
they run under a different user).
2. Imperatively disable it by setting
System.Net.WebRequest.DefaultWebProxy = null;
3. In your config file bypass the proxy for your web-
server. You can also disable the default proxy altogether.
| Is This Answer Correct ? | 0 Yes | 2 No |
Explain serialization formatters in .net remoting
Name the distributed systems available apart from .net remoting?
When do we use delegates in your remoting applications?
Difference between .net remoting versus distributed com?
What are the information required to configure remote objects?
Explain Singleton design pattern of Remoting?
What does manifest consists?
What are various types of assemblies ?
How to decide which to use .net remoting or asp.net web services?
What is assembly ?
Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs? In what way it is best?
Which Namespaces is used to achieve the Remoting?