Marshal..marshaling.. 
Author Message
 Marshal..marshaling..

Hello.

During I read some documents about process,thread,apartment, I found some
vocabulary "marshal","marshaling"..something like that...
Even if I look at the dictonary, I coundn't get the meaning of them.

What does mean marshal(marshaling something like that) in terms of computer?

I am waiting for your answer.

Please write answer as soon as possible.

Thanks.
Take care..

p.s : If you can send a email to me, I really appreciate you about that.

................................................TJ.



Sun, 12 Oct 2003 11:16:47 GMT  
 Marshal..marshaling..
by definition marshaling is the process by which arguments are sent across
apartment, process, or machine boundaries.

Steven Szelei


Hello.

During I read some documents about process,thread,apartment, I found some
vocabulary "marshal","marshaling"..something like that...
Even if I look at the dictonary, I coundn't get the meaning of them.

What does mean marshal(marshaling something like that) in terms of computer?

I am waiting for your answer.

Please write answer as soon as possible.

Thanks.
Take care..

p.s : If you can send a email to me, I really appreciate you about that.

................................................TJ.



Sun, 12 Oct 2003 20:32:35 GMT  
 Marshal..marshaling..
This term is introduced in RPC (Remote Procedutre Calls). It is the
process of packing the arguments of a method in a network packet
for sending them over the wire. Unmarshaling is the proces of
unpacking them at the other end and invoking the actual method.
Then the return value (and any output arguments) are again
marshaled in a network packet and sent back to the caller. There
they are unmarshaled and returned to the caller. Since COM sits
on top of RPC, the terms apply there as well.

When talking about interface pointers, COM provides methods
for manually creating a marshal packet for an interface pointer.
You can use this packet (stored in a stream object) to be
unmarshaled in another COM apartment to let that apartment
access the object the interface pointer points to.

--
=====================================
Alexander Nickolov
Microsoft MVP [VC], MCSD

MVP VC FAQ: http://www.mvps.org/vcfaq
=====================================


Hello.

During I read some documents about process,thread,apartment, I found some
vocabulary "marshal","marshaling"..something like that...
Even if I look at the dictonary, I coundn't get the meaning of them.

What does mean marshal(marshaling something like that) in terms of computer?

I am waiting for your answer.

Please write answer as soon as possible.

Thanks.
Take care..

p.s : If you can send a email to me, I really appreciate you about that.

................................................TJ.



Mon, 13 Oct 2003 02:31:45 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. A good translation of 'to marshal', 'marshal', 'marshalling' to German ?

2. Converting byte[] to structure without Marshal?

3. Marshal structs

4. System.Runtime.InteropServices.Marshal.StringToHGlobalAuto

5. Marshal::StringToHGlobalAnsi corrupts output after 256 chars

6. IJW Marshaling arrays and matrices

7. Marshaling Object Reference

8. Marshaling struct

9. Conversion / marshaling problem

10. Marshaling structures with arrays

11. Conversion/marshaling problem

12. Marshal.GetObjectForIUnknown

 

 
Powered by phpBB® Forum Software