Search:
Namespaces
Discussions
.NET v1.1
Feedback
How to use Marshal By Value
Messages
Related Types
This message was discovered on
microsoft.public.dotnet.framework.remoting
.
Responses highlighted in red are from those people who are likely to be able to contribute good, authoratitive information to this discussion. They include Microsoft employees, MVP's and others who IMHO contribute well to these kinds of discussions.
Post a new message to this list...
Henke (VIP)
Hi!
What actions do I have to do in order to get my objects marshaled by value?
For the moment we are using Marshal by reference, so all my object derive
from MarshalByRef.
Thanks in advance!
/Henke
Reply to this message...
Robert Jordan
Henke wrote:
[Original message clipped]
Classes must be serializable to be able to transport them by value.
Bye
Rob
Reply to this message...
Henke (VIP)
I have tried to mark them with:
[Serializable]
but when I try to connect to the object I get this exception:
An unhandled exception of type 'System.Runtime.Remoting.RemotingException'
occurred in mscorlib.dll
Additional information: Trying to create a proxy to an unbound type.
If I derive the object from MarshalByRef everything works fine, except that
I get a reference instead of the object :)
"Robert Jordan" wrote:
[Original message clipped]
Reply to this message...
Robert Jordan
Hi,
[Original message clipped]
probably because one of the fields of the classes you declared
[Serializable] is not serializable (because its type is
not declared [Serializable]).
try using this settings in your App.config. you'll get
the exact exception instead the generic
System.Runtime.Remoting.RemotingException:
<configuration>
<system.runtime.remoting>
<customErrors mode="off" />
</system.runtime.remoting>
</configuration>
[Original message clipped]
Well, it is much easier to get an object marshaled by ref
then by value. the reason: marshal by value expects
that the whole object graph of a certain object is serializable,
because the remoting infrastructure has to transfer a copy
of the data over the wire.
bye
Rob
[Original message clipped]
Reply to this message...
Henke (VIP)
Sorry, I don't get any other message. The object I try to marshal only has a
private int, a private string member and two public properties.
/Henke
"Robert Jordan" wrote:
[Original message clipped]
Reply to this message...
Sam Santiago
Do you implement the
ISerializable
interface or do you only mark your class
as [Serializable]? You might want to post your class code here.
Thanks,
Sam
--
_______________________________
Sam Santiago
Click here to reveal e-mail address
http://www.SoftiTechture.com
_______________________________
"Henke" <
Click here to reveal e-mail address
> wrote in message
news:
Click here to reveal e-mail address
...
> Sorry, I don't get any other message. The object I try to marshal only has
a
[Original message clipped]
Reply to this message...
Henke (VIP)
Hi!
Here is class code.
[Serializable]
public class Customer
{
private int id;
private string name;
public int ID
{
get{return this.id;}
set{this.id = value;}
}
public string Name
{
get{return this.name;}
set{this.name = value;}
}
public Customer()
{
this.id = int.MinValue;
this.name = "";
}
}
So as you can see I only mark it as Serializable.
/Henke
"Sam Santiago" wrote:
[Original message clipped]
Reply to this message...
System.Runtime.Remoting.RemotingException
System.Runtime.Serialization.ISerializable
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us
-
Terms of Use
-
Privacy Policy
-
www.dotnet247.com