Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
105 views

Does .Net 4 inline MarshalByRefObject methods?

I have some code that relied on methods not being inlined : internal class MyClass : BaseClass { // should not be inlined public void DoSomething(int id) { base.Execute(id); } ...
7
votes
5answers
2k views

How to solve “Must be MarshalByRefObject” in a good but multiple-inheritance amputated language like C#?

How to solve "Must be MarshalByRefObject" in a good but multiple-inheritance amputated language like C#? The problem is very simple, in several cases you just have to inherit from this class ...
4
votes
1answer
84 views

How can I find out if an instance is a MarshalByRef proxy?

I know there's a way, I know I've done it (a long time) before, but I can't remember or find out how to do it!!! var otherDomain = AppDomain.Create("Lol my memory sucks"); var myRemotableType = ...
3
votes
2answers
62 views

Mixing MarshalByRefObject and Serializable

Various sources explain that When an object derives form MarshalByRefObject, an object reference will be passed from one application domain to another rather than the object itself. When an ...
3
votes
2answers
231 views

Unable to cast transparent proxy in a dll when called from PowerShell, but successful in C# console app

I'm attempting to create an open source library that spawn a new AppDomain and runs a PowerShell script in it. I have a static method that takes the name of the powershell file and the name of the ...
3
votes
1answer
73 views

Memory leak in simple cross app object

I am experimenting with cross-AppDomain objects, and found one quite strange thing. When I call a remote method, which is allocating a MemoryStream object and returning it's reference (and which is ...
3
votes
2answers
398 views

How do I pass references as method parameters across AppDomains?

I have been trying to get the following code to work(everything is defined in the same assembly) : namespace SomeApp{ public class A : MarshalByRefObject { public byte[] GetSomeData() { // } } ...
2
votes
2answers
142 views

Transparent proxy to original type

I have an run time object of type {System.Runtime.Remoting.Proxies.__TransparentProxy} which is created from an instance of class which is inherited from ContextBoundObject. This class raise an event ...
2
votes
2answers
681 views

“Object has been disconnected or does not exist at the server” exception

I need to use cross-appdomain calls in my app, and sometimes I have this RemotingException: Object '/2fa53226_da41_42ba_b185_ec7d9c454712/ygiw+xfegmkhdinj7g2kpkhc_7.rem' has been disconnected or does ...
2
votes
0answers
372 views

C# Remoting (MarshalByRefObject) problem with System.Security.PermissionSet

I have a class that extends MarshalByRefObject class. I create a HTTPChannel, register the ChannelService and while reading and writing the int and string properties everything works fine. My ...
2
votes
1answer
169 views

Garbage collecting objects crossing AppDomain boundary

When you pass an object that inherits from MarshalByRefObject to a different AppDomain, won't GC.Collect() induced by the AppDomain that created it collect the object, provided that the object is not ...
2
votes
1answer
297 views

Interaction between multiple AppDomain. Problems with the destruction of singleton-objects

The problem is the following. There is an application that is at work creating additional AppDomain's and loads there assembly (custom user scripts). In the main application, there are some objects, ...
2
votes
2answers
2k views

Passing data across appdomains with MarshalByRefObject

I'm having a little trouble passing some data between two .NET appdomains and I'm hoping someone on here can help me. Basically what I have is a main application (Main) which loads assembly A and B ...
2
votes
2answers
699 views

.NET remoting threading model

I would like to know how threads are handled on the server side using MarshalByRef objects. Given my remoted MarshalByRef class: public class MyRemotedClass : MarshalByRef { public int MyInt; ...
2
votes
3answers
1k views

Logging using policy injection application block

Hi All I want to ask, how to use policy injection application block to log methods entry and exit in these cases : Case1 : in case of logging events handlers of a web form controls, you know the ...
1
vote
2answers
58 views

How do I detect if a MarshalByRefObject is local or remote?

In other words, how do I tell if I have a reference to a TransparentProxy or a local object?
1
vote
1answer
245 views

Can JAXB marshal by containment at first then marshal by @XmlIDREF for subsequent references?

I'm new to JAXB and I'm wondering if it's possible to annotate my classes so that the first time the marshaller encounters an object, it generates an XML element of the appropriate type, but any ...
1
vote
2answers
307 views

Accessing a member on Form may cause a runtime exception because it is a field of a marshal-by-reference class

"Accessing a member on Form may cause a runtime exception because it is a field of a marshal-by-reference class" I know what is this warning and know how to solve it. the question is why this could ...
1
vote
1answer
420 views

Mono, Serializable Objects with MarshalByRefObject

I'm attempting to port a C# application to .NET (client server), and am running into issues with serialization. The Linux client serializes and object, but the Windows server is unable to deserialize ...
1
vote
1answer
378 views

Generic container for exposing POCO instances to other AppDomains - how does it work?

I'm intrigued by this answer from another SO thread, and I was hoping someone can help me shine some light on the concept. Say I have a primary AppDomain and a bunch of child AppDomains, that are ...
1
vote
3answers
1k views

Workaround .net application domain only passing objects by value

I am developing an .net application which heavely depends on plugins. The application itself contains an connection to a remote server. Recently I digged into Application domains and see them as the ...
0
votes
0answers
15 views

Reflection on MarshalByRefObject object to discover implemented method

I'm new to .NET/C# and I'm presently creating a client/server application I've been looking for a way to 'make an introspection' (french translated) on the MarshalByRefObject object on the client side ...
0
votes
0answers
18 views

removing disconnected MrshalByRefObjects from server side lists

In .net remoting if one creates a list of remote objects, if the remote side goes away and you try to accesses one of them you would get an exception. All well and good, you can try catch it, not the ...
0
votes
1answer
69 views

How is MarshalByRefObject implemented?

I would like to know how the MarshalByRefObject is implimented and why does it make it possible to pass objects by reference in remoting. Is it possible because of the implementation of the ...
0
votes
1answer
129 views

Calling methods and getting values in the main appdomain from a secondary domain

I am implementing a module system for my C# IRC Bot. The modules are .dll assemblies which are stored in a subdirectory, "modules", and they are used to add functionality to the bot, such as adding ...
0
votes
1answer
91 views

mySQL error with plugin loaded into appDomain

I am struggling to get dynamic loading working with my plugin. I'm loading the plugin into an appdomain but I get the following exception when my plugin tries to execute any mySQL code: ...
0
votes
2answers
234 views

Why can't pass Marshaled interface as integer(or pointer)

I passed ref of interface from Visio Add-ins to MyCOMServer (http://stackoverflow.com/questions/2455183/interface-marshalling-in-delphi).I have to pass interface as pointer in internals method of ...
0
votes
4answers
419 views

Using an abstract class as the contract in plugin framework

Can an abstract class be used as the contract object between a 'Host' and a 'plugin'? The idea is that the plugin inherits the contract (we call it an adapter). We are also understanding that all ...
0
votes
2answers
463 views

Creative use of MarshalByRefObject

I've been banging my head trying to figure some things out. So, I'm looking for advice and research material (via links). Here's the scenario: We have a library (say, CommonLib) that contains ...
0
votes
1answer
823 views

Speeding up cross-AppDomain communication

I am trying to execute some logic on multiple AppDomains in parallel. I am doing this because I am working with legacy code which is "un-changeable" and I want to improve performance by parallelizing ...
0
votes
1answer
1k views

Serializable Objects with MarshalByRefObject Fields

Alright, I'm not sure if this question has been asked before so if it has then flame away. Lets say we have two classes like this [Serializable] public class ClassA { private string _name; ...