Sign in
manish godse's GlobalServiceMonitor, SCOM and remoting blog
Global Service Monitor, Microsoft Operations Manager and .net Remoting related posts
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
No tags have been created or used yet.
Archive
Archives
March 2013
(1)
January 2013
(1)
September 2012
(2)
June 2012
(1)
July 2006
(3)
December 2005
(1)
June 2005
(1)
May 2005
(1)
April 2005
(3)
January 2005
(1)
December 2004
(2)
November 2004
(10)
October 2004
(12)
September 2004
(11)
August 2004
(3)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
manish godse's GlobalServiceMonitor, SCOM and remoting blog
Remoting: TypeFilterLevel setting added to v1.0 sp3
Posted
over 9 years ago
by
manishg
0
Comments
v1.0 sp3 of the framework now has typefilterlevel set to Low by default, similar to the setting in v1.1 version of the framework. This means the server will not deserialize ObjRef's, Leases and other such objects by default. The way to fix is exactly...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
Deprecating the Soap Formatter
Posted
over 9 years ago
by
manishg
4
Comments
The Soap Formatter is on the path of deprecation. Starting in v2.0 of the framework the usefulness of the soap formatter would be highly limited since it will not support some of the new v2.0 framework features such as generics and the version tolerant...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
IPv6 support in remoting
Posted
over 9 years ago
by
manishg
0
Comments
v2.0 for the .net framework adds IPv6 support to .net remoting. In v2.0 you can use the bindTo property on channels to bind your server channel to IPv6 addresses. To enable this functionality you need to turn on ipv6 support in machine.config for system...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
Remoting Lifetime and Leases
Posted
over 9 years ago
by
manishg
1
Comments
Remoting implements a lease based lifetime management. There is no reference counting since doing so for remote objects is not trivial and for cases where networks can be faulty its bound to cause more issues. Thus clients need to make sure they keep...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
More about remoting proxies
Posted
over 9 years ago
by
manishg
0
Comments
As is common knowledge there are two types of remoting objects, server-activated objects (aka wellknown) and client activated objects. The client side proxies for these objects have different behaviour as well. Some issues to be aware of are: 1. RemotingServices...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
Reflection and remoting
Posted
over 9 years ago
by
manishg
0
Comments
Reflection should work just fine over remoting proxies. In some cases you need to be a little careful since for some cases the entire type heirarchy isnt available mainly for wellknown proxies, since the proxy is generated without a remote invocation...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
securing remoting endpoints
Posted
over 9 years ago
by
manishg
0
Comments
There are a couple of ways you can secure remoting endpoints: 1. Host in IIS: hosting your server components in IIS allows you to secure your application using IIS' inbuilt authentication (basic/digest/ntlm/kerb) and encryption (using https) mechanisms...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
SerializationBinder in runtime serialization
Posted
over 9 years ago
by
manishg
0
Comments
Binary and Soap formatters have a way to specify a SerializationBinder. Each time a type is being deserialized the BindToType method on the registered binder will be invoked. This gives the user the opportunity to load his/her own custom type instead...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
Channel / Object affinity in remoting and security implications
Posted
over 9 years ago
by
manishg
1
Comments
This is a very common question. Whether there is affinity between remoting objects and registered channels. The answer is no. Any channel registered in the appdomain hosting a remoting object can dispatch to it. Thus if you have a "secure" channel and...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
remoting versioning
Posted
over 9 years ago
by
manishg
0
Comments
There are two types of remotable objects, wellknown and client activated. The server controls which version of the type its publishing (either using registerwellknownservertype or using RemotingServices.Marshal). Whereas for client-activated objects the...
manish godse's GlobalServiceMonitor, SCOM and remoting blog
Changing ClientChannelSink properties for remoting CAO objects
Posted
over 9 years ago
by
manishg
0
Comments
As I had described in my previous post its possible to change client side sink properties for remoting proxies. For client-activated objects it can be a little tricky since you dont get a proxy till a constructor is invoked remotely( and this might be...
Page 1 of 1 (11 items)