Sign In
manish godse's MoM and remoting blog
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
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
No tags have been created or used yet.
Archive
Archives
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)
October, 2004
MSDN Blogs
>
manish godse's MoM and remoting blog
>
October, 2004
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
manish godse's MoM and remoting blog
rejectRemoteRequests config switch on remoting channels
Posted
over 8 years ago
by
manishg
3
Comments
You can add rejectRemoteRequests="true" on the server side tcp or http channels. With this set remoting will only allow connections from the loopback address and thus will reject cross machine calls. This is equivalent to setting bindTo="127.0.0.1" or...
manish godse's MoM and remoting blog
Reasoning for TypeFilterLevel in remoting
Posted
over 8 years ago
by
manishg
1
Comments
Most remoting users have seen one of the following exception messages during deserialization: Because of security restrictions, the type XXX cannot be accessed Type XXX and the types derived from it (such as {YYY}) are not permitted to be deserialized...
manish godse's MoM and remoting blog
Clarification on OneWay messages in remoting
Posted
over 8 years ago
by
manishg
0
Comments
My post from last week talked about OneWay messages in remoting. I should have clarified that the async and one way behaviour occurs only when invoking a method marked with [OneWay] on a remoting proxy. Invoking the same method on a regular object will...
manish godse's MoM and remoting blog
Investigating memory leaks in remoting
Posted
over 8 years ago
by
manishg
0
Comments
There is a common misconception that using remoting leads to memory leaks. The fact is that the problems mostly lie in the server design more that in the use of remoting. There are two issues which often lead to server side leaks: 1. It could be related...
manish godse's MoM and remoting blog
RemotingServices.Marshal
Posted
over 8 years ago
by
manishg
2
Comments
RemotingServices.Marshal allows you to publish an existing instance remotely. Both for server activated (wellknown) and client activated objects remoting controls when the object is instantiated and initialized. Using Marshal allows you to initialize...
manish godse's MoM and remoting blog
OneWay messages in remoting
Posted
over 8 years ago
by
manishg
8
Comments
Remoting provides a way for fire-and-forget OneWay messages from client to the server. Just adding a [OneWay] attribute to a method of your remoted type would make the method invokation oneway. Something like: public class Remote : MarshalByRefObject...
manish godse's MoM and remoting blog
NLB and remoting
Posted
over 8 years ago
by
manishg
0
Comments
One issue with NLB and remoting is the fact that remoting clients cache sockets connections for performance reasons. The side effect of this is that in the NLB case subsequent calls from the same client go to the same server introducing server affinity...
manish godse's MoM and remoting blog
Guidance for using Events and delegates in Remoting
Posted
over 8 years ago
by
manishg
8
Comments
Events and Delegates are supported in remoting. So x-appdomain and x-process delegates and eventing does work. The guidance is to not use them in cases where channels could be unreliable. In case where channels are unreliable (mostly the network in x...
manish godse's MoM and remoting blog
Exceptions and Remoting
Posted
over 8 years ago
by
manishg
1
Comments
Exceptions are serializable (ISerializable too). Exceptions are serialized from the server back the client. Thus if you see a client side exception with the following stack trace, there is a good chance you are actually seeing an exception which was thrown...
manish godse's MoM and remoting blog
CallContext
Posted
over 8 years ago
by
manishg
1
Comments
CallContext allows you to flow information with a "logical" call. With logical we mean the call doesnt necessarily have to happen on the same thread. Following constitute logical calls: 1. remoting calls made x-appdomain and x-process 2. Async delegate...
manish godse's MoM and remoting blog
BinaryFormatter Version incompatibility
Posted
over 8 years ago
by
manishg
0
Comments
When hosted in IIS / Asp.Net and using the binary formatter you might run into an exception saying "BinaryFormatter Version incompatibility. Expected Version 1.0. Received Version 1950887522.2017816692". The issue here is that under various error conditions...
manish godse's MoM and remoting blog
New IPC channel in remoting
Posted
over 8 years ago
by
manishg
6
Comments
Remoting in v2.0 of the framework is introducing a new IPC Channel meant for x-proc communication on the same machine. It is based on named pipes and works on win2k based platforms (win2k, winxp, win2k3). It will provide better performance characteristics...
Page 1 of 1 (12 items)