.NETGURU
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




ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
Ad


Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification