473,396 Members | 1,655 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Serializing Objects Across A NetworkStream

I've got a basic "chat" infrastructure that can send objects across the wire, but I'm running into a few issues with trying to send multiple messages and things behaving differently in debug and release...

Is there anyone out there that considers themselves a threading / sockets / serialization guru? Not sure if it's appropriate to post an entire project here and the issues discussion is probably a bit too complex for newsgroup back and forth, but if someone thinks they can help, I can send the code via email.

I suspect there might be a simpler way to accomplish my goal, but I've not got enough experience in this realm...

If you're up for the challenge, please let me know.

Thanks.

Jerry
Sep 26 '06 #1
5 4201
Jerry,

I wouldn't recommend posting the whole project. I can't say that many
people would want to wander through it all.

If you can consolidate your errors into a sample program that displays
the error, that would help.

As for issues discussion about what you are doing, that's pretty much
the whole point of the newsgroups, no? I would say try us.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

<rl*****@newsgroups.nospamwrote in message
news:ey**************@TK2MSFTNGP06.phx.gbl...
I've got a basic "chat" infrastructure that can send objects across the
wire, but I'm running into a few issues with trying to send multiple
messages and things behaving differently in debug and release...

Is there anyone out there that considers themselves a threading / sockets /
serialization guru? Not sure if it's appropriate to post an entire project
here and the issues discussion is probably a bit too complex for newsgroup
back and forth, but if someone thinks they can help, I can send the code via
email.

I suspect there might be a simpler way to accomplish my goal, but I've not
got enough experience in this realm...

If you're up for the challenge, please let me know.

Thanks.

Jerry
Sep 26 '06 #2
I just figured the postings might get too hard to follow... Not a lack of
confidence in the community. :o)

I can't really consolidate the project. There's nothing else in it right
now except the communication code. I suppose I could try to explain my
thought process and post the whole deal... It's not all that big, just
totally uncommented and is quite a mess as I've been trying to figure this
out for several days and keep commenting out my old code - for reference. I
figured it's be easier to explain what I was thinking via email. If people
keep chiming in in the newsgroup, the thread gets hard to follow.

I'll try to clean it up a bit and post it...

Thanks.

Jerry
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.comwrote in
message news:u%****************@TK2MSFTNGP03.phx.gbl...
Jerry,

I wouldn't recommend posting the whole project. I can't say that many
people would want to wander through it all.

If you can consolidate your errors into a sample program that displays
the error, that would help.

As for issues discussion about what you are doing, that's pretty much
the whole point of the newsgroups, no? I would say try us.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

<rl*****@newsgroups.nospamwrote in message
news:ey**************@TK2MSFTNGP06.phx.gbl...
I've got a basic "chat" infrastructure that can send objects across the
wire, but I'm running into a few issues with trying to send multiple
messages and things behaving differently in debug and release...

Is there anyone out there that considers themselves a threading / sockets
/ serialization guru? Not sure if it's appropriate to post an entire
project here and the issues discussion is probably a bit too complex for
newsgroup back and forth, but if someone thinks they can help, I can send
the code via email.

I suspect there might be a simpler way to accomplish my goal, but I've not
got enough experience in this realm...

If you're up for the challenge, please let me know.

Thanks.

Jerry

Sep 26 '06 #3
Hi Jerry,

Based on my research, the problem seems to be relative with how you parse
the buffer and show them.

Actually TCP protocol is stream-like protocol.
We should consider it all the communication between the TCPClient is a
stream.
e.g.
if ClientA call 5 five times NetStream.Write and the TCPClient is connect
to Client B.
The Client may call 4 or 6 times NetStream.Read to get all the data sent by
Client A.
So in your scenario, we can depend on the Enqueue operation to put the
whole byte array into the queue.

Here is my test to show this scenario.

1. Please change your code as below.
static int i = 0;
private void GetStreamObject(IAsyncResult ar)
{

Debug.WriteLine(++i);
byte[] buffer;
int bytes = 0;

//Extract state object from AsyncResult and get a local pointer to the
NetworkStream.
ObjectInfo oi = (ObjectInfo)ar.AsyncState;
NetworkStream ns = oi.networkStream;

lock(ns)
{
//Read the send buffer.
bytes = ns.EndRead(ar);
//Debug.WriteLine(bytes);

//Create a local buffer the size of the received data.
buffer = new byte[bytes];
//Copy the received data into the appropriate sized buffer.
Buffer.BlockCopy(oi.buffer, 0, buffer, 0, bytes);
StreamWriter sw = new StreamWriter(@"C:\buffer.txt",true);
sw.WriteLine("*");
foreach(byte b in buffer)
sw.Write(b);
sw.WriteLine("#");
sw.Close();
//Analyze what we have.
AnalyzeBytes(buffer);

//Create a new buffer for the next read.
//Probably don't really need this.
oi.buffer = new byte[BUFFER_SIZE];

//Start another async read.
AsyncCallback GetStreamCallback = new AsyncCallback(GetStreamObject);
tcpClient.GetStream().BeginRead(oi.buffer, 0, oi.buffer.Length,
GetStreamCallback, oi);
}
}

I Start the your program and use 5 in the for loop to send 5 objects in one
button click.

The result is that.
1. The Debug.WriteLine(++i); show that the method GetStreamObject is only
called 4 times including the time we click the connect button.
2. I write the buffer to a file as attachment.

We will find that *# include the data we get from one receive.

We will find that the data in one receive *# maybe include two and half
objects' data but not whole object.
Also you may try to find the pattern "01000255" in the result below, you
will find that it occur five times exclude the first connect message.
Which means that actually we have received all the data with you reproduce
sample.

So I think the key point in your scenario is to design another method to
parse the whole buffer stream during the connected time, but not break the
stream into the items in the Queue. Because the item(byte array) may not be
a whole complete object).

Anyway your idea that use a header to show following objects size is a good
idea and that is what we will use network programming.

e.g. We must define the size of the Header which show what is the size of
the object.
Header---Date----Header----Data....

We should define the Header Size e.g. 16 bytes.

Please note the above data may not be in the four receive operations.
Maybe just one time receive, we will got all the data.

What we should do is.
Read 16bytes from the buffer we received, and know the size of the object
and then read the size to get object. And then accordind our design here,
we should read another 16bytes to read the data....

*
40100010002552552552551000000012200074771011151159 71031016710897115115443286
10111411510511111061494648465052544946514956505644 32671171081161171141016111
01011171161149710844328011798108105997510112184111 10710111061110117108108510
00176797109101108849710810746771011151159710310130 00137710111511597103101781
17109981011141377101115115971031018311611410511010 31177101115115971031018412
11121010148306797109101108849710810746771011151159 71031014377101115115971031
01841211121011152000200000006300020671111101101019 91161011003211611132115101
11411810111446525225525525530679710910110884971081 07467710111511597103101437
71011151159710310184121112101115100071189710811710 19595082000000011#
*
21100#
*
01000255255255255100000001220007477101115115971031 01671089711511544328610111
41151051111106149464846505254494651495650564432671 17108116117114101611101011
17116114971084432801179810810599751011218411110710 11106111011710810851000176
79710910110884971081074677101115115971031013000137 71011151159710310178117109
98101114137710111511597103101831161141051101031177 10111511597103101841211121
01014830679710910110884971081074677101115115971031 01437710111511597103101841
21112101115200020001000630001975252255255255306797 10910110884971081074677101
11511597103101437710111511597103101841211121011151 00071189710811710195950820
00100011211000100025525525525510000000122000747710 11151159710310167108971151
15443286101114115105111110614946484650525449465149 56505644326711710811611711
41016111010111711611497108443280117981081059975101 12184111107101110611101171
08108510001767971091011088497108107467710111511597 10310130001377101115115971
03101781171099810111413771011151159710310183116114 10511010311771011151159710
31018412111210101483067971091011088497108107467710 11151159710310143771011151
15971031018412111210111520002000100063000197525225 52552553067971091011088497
10810746771011151159710310143771011151159710310184 12111210111510007118971081
17101959508200010001121100010002552552552551000000 01220007477101115115971031
01671089711511544328610111411510511111061494648465 05254494651495650564432671
17108116117114101611101011171161149710844328011798 10810599751011218411110710
11106111011710810851000176797109101108849710810746 77101115115971031013000137
71011151159710310178117109981011141377101115115971 03101831161141051101031177
10111511597103101841211121010148306797109101108849 71081074677101115115971031
01437710111511597103101841211121011152000200010006 30001975252255255255306797
10910110884971081074677101115115971031014377101115 11597103101841211121011151
00071189710811710195950820001000112110001000255255 25525510000000122000747710
11151159710310167108971151154432861011141151051111 10614946484650525449465149
56505644326711710811611711410161110101117116114971 08443280117981081059975101
12184111107101110611101171081085100017679710910110 88497108107467710111511597
10310130001377101115115971031017811710998101114137 71011151159710310183116114
10511010311771011151159710310184121112101014830679 71091011088497108107467710
1#
*
11511597103101437710111511597103101841211121011152 00020001000630001975252255
25525530679710910110884971081074677101115115971031 01437710111511597103101841
21112101115100071189710811710195950820001000112110 00100025525525525510000000
12200074771011151159710310167108971151154432861011 14115105111110614946484650
52544946514956505644326711710811611711410161110101 11711611497108443280117981
08105997510112184111107101110611101171081085100017 67971091011088497108107467
71011151159710310130001377101115115971031017811710 99810111413771011151159710
31018311611410511010311771011151159710310184121112 10101483067971091011088497
10810746771011151159710310143771011151159710310184 12111210111520002000100063
00019752522552552553067971091011088497108107467710 11151159710310143771011151
15971031018412111210111510007118971081171019595082 000100011#

Best regards,

Peter Huang

Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Sep 27 '06 #4
Peter - You're brilliant. Simple debugging technique of writing out the
bytes, etc. made the whole process more apparent to me. At one point or
another I had counters and such everywhere but in the right places. You're
insight is very much appreciated.

So my next question is would it be considered an appropriate solution to
just create thread that loops continuously looking at the byte queue and
raising an event everytim eit receives a full object? They seem to do that
in all the TcpListener examples, but I don't know if that's really the best
way to go about it.

And when I raise an event, is the thread that raises the event blocked until
the event recipeint is done processing it?

Thanks, again.

Jerry

""Peter Huang" [MSFT]" <v-******@online.microsoft.comwrote in message
news:60**************@TK2MSFTNGXA01.phx.gbl...
Hi Jerry,

Based on my research, the problem seems to be relative with how you parse
the buffer and show them.

Actually TCP protocol is stream-like protocol.
We should consider it all the communication between the TCPClient is a
stream.
e.g.
if ClientA call 5 five times NetStream.Write and the TCPClient is connect
to Client B.
The Client may call 4 or 6 times NetStream.Read to get all the data sent
by
Client A.
So in your scenario, we can depend on the Enqueue operation to put the
whole byte array into the queue.

Here is my test to show this scenario.

1. Please change your code as below.
static int i = 0;
private void GetStreamObject(IAsyncResult ar)
{

Debug.WriteLine(++i);
byte[] buffer;
int bytes = 0;

//Extract state object from AsyncResult and get a local pointer to the
NetworkStream.
ObjectInfo oi = (ObjectInfo)ar.AsyncState;
NetworkStream ns = oi.networkStream;

lock(ns)
{
//Read the send buffer.
bytes = ns.EndRead(ar);
//Debug.WriteLine(bytes);

//Create a local buffer the size of the received data.
buffer = new byte[bytes];
//Copy the received data into the appropriate sized buffer.
Buffer.BlockCopy(oi.buffer, 0, buffer, 0, bytes);
StreamWriter sw = new StreamWriter(@"C:\buffer.txt",true);
sw.WriteLine("*");
foreach(byte b in buffer)
sw.Write(b);
sw.WriteLine("#");
sw.Close();
//Analyze what we have.
AnalyzeBytes(buffer);

//Create a new buffer for the next read.
//Probably don't really need this.
oi.buffer = new byte[BUFFER_SIZE];

//Start another async read.
AsyncCallback GetStreamCallback = new AsyncCallback(GetStreamObject);
tcpClient.GetStream().BeginRead(oi.buffer, 0, oi.buffer.Length,
GetStreamCallback, oi);
}
}

I Start the your program and use 5 in the for loop to send 5 objects in
one
button click.

The result is that.
1. The Debug.WriteLine(++i); show that the method GetStreamObject is only
called 4 times including the time we click the connect button.
2. I write the buffer to a file as attachment.

We will find that *# include the data we get from one receive.

We will find that the data in one receive *# maybe include two and half
objects' data but not whole object.
Also you may try to find the pattern "01000255" in the result below, you
will find that it occur five times exclude the first connect message.
Which means that actually we have received all the data with you reproduce
sample.

So I think the key point in your scenario is to design another method to
parse the whole buffer stream during the connected time, but not break the
stream into the items in the Queue. Because the item(byte array) may not
be
a whole complete object).

Anyway your idea that use a header to show following objects size is a
good
idea and that is what we will use network programming.

e.g. We must define the size of the Header which show what is the size of
the object.
Header---Date----Header----Data....

We should define the Header Size e.g. 16 bytes.

Please note the above data may not be in the four receive operations.
Maybe just one time receive, we will got all the data.

What we should do is.
Read 16bytes from the buffer we received, and know the size of the object
and then read the size to get object. And then accordind our design here,
we should read another 16bytes to read the data....

*
40100010002552552552551000000012200074771011151159 71031016710897115115443286
10111411510511111061494648465052544946514956505644 32671171081161171141016111
01011171161149710844328011798108105997510112184111 10710111061110117108108510
00176797109101108849710810746771011151159710310130 00137710111511597103101781
17109981011141377101115115971031018311611410511010 31177101115115971031018412
11121010148306797109101108849710810746771011151159 71031014377101115115971031
01841211121011152000200000006300020671111101101019 91161011003211611132115101
11411810111446525225525525530679710910110884971081 07467710111511597103101437
71011151159710310184121112101115100071189710811710 19595082000000011#
*
21100#
*
01000255255255255100000001220007477101115115971031 01671089711511544328610111
41151051111106149464846505254494651495650564432671 17108116117114101611101011
17116114971084432801179810810599751011218411110710 11106111011710810851000176
79710910110884971081074677101115115971031013000137 71011151159710310178117109
98101114137710111511597103101831161141051101031177 10111511597103101841211121
01014830679710910110884971081074677101115115971031 01437710111511597103101841
21112101115200020001000630001975252255255255306797 10910110884971081074677101
11511597103101437710111511597103101841211121011151 00071189710811710195950820
00100011211000100025525525525510000000122000747710 11151159710310167108971151
15443286101114115105111110614946484650525449465149 56505644326711710811611711
41016111010111711611497108443280117981081059975101 12184111107101110611101171
08108510001767971091011088497108107467710111511597 10310130001377101115115971
03101781171099810111413771011151159710310183116114 10511010311771011151159710
31018412111210101483067971091011088497108107467710 11151159710310143771011151
15971031018412111210111520002000100063000197525225 52552553067971091011088497
10810746771011151159710310143771011151159710310184 12111210111510007118971081
17101959508200010001121100010002552552552551000000 01220007477101115115971031
01671089711511544328610111411510511111061494648465 05254494651495650564432671
17108116117114101611101011171161149710844328011798 10810599751011218411110710
11106111011710810851000176797109101108849710810746 77101115115971031013000137
71011151159710310178117109981011141377101115115971 03101831161141051101031177
10111511597103101841211121010148306797109101108849 71081074677101115115971031
01437710111511597103101841211121011152000200010006 30001975252255255255306797
10910110884971081074677101115115971031014377101115 11597103101841211121011151
00071189710811710195950820001000112110001000255255 25525510000000122000747710
11151159710310167108971151154432861011141151051111 10614946484650525449465149
56505644326711710811611711410161110101117116114971 08443280117981081059975101
12184111107101110611101171081085100017679710910110 88497108107467710111511597
10310130001377101115115971031017811710998101114137 71011151159710310183116114
10511010311771011151159710310184121112101014830679 71091011088497108107467710
1#
*
11511597103101437710111511597103101841211121011152 00020001000630001975252255
25525530679710910110884971081074677101115115971031 01437710111511597103101841
21112101115100071189710811710195950820001000112110 00100025525525525510000000
12200074771011151159710310167108971151154432861011 14115105111110614946484650
52544946514956505644326711710811611711410161110101 11711611497108443280117981
08105997510112184111107101110611101171081085100017 67971091011088497108107467
71011151159710310130001377101115115971031017811710 99810111413771011151159710
31018311611410511010311771011151159710310184121112 10101483067971091011088497
10810746771011151159710310143771011151159710310184 12111210111520002000100063
00019752522552552553067971091011088497108107467710 11151159710310143771011151
15971031018412111210111510007118971081171019595082 000100011#

Best regards,

Peter Huang

Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Sep 28 '06 #5
Hi,

I think you may try to use a new thread per TCP client and use Read block
call.
e.g.
Header 16bytes
Object data

This is the pseudocode
while(true)
{
//Use Read in a loop, but not beginread, until we get 16bytes from the
networkstream.

//new a byte array of size of the value in the 16bytes header.

//Use Read in a loop, until we get data of the size of object.
//Now we can parse it now, because one whole object is ready.
//We can raise an event to notify one object is ready
//or temporality put the object(we have already deserialized it into a
Queue and the client UI should have mechanism to Monitor the queue.
}


Best regards,

Peter Huang

Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

Sep 29 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Martin Zeigler | last post by:
I have been using Weblogic 5.1 for a couple of years. I currently pass an object as a parameter to my ejbCreate method. The data in the object could be modified by my bean and the caller needs to...
1
by: Bluetears76 | last post by:
Hi I have a hirachy of classes which are Message(base), then FileMessage and ChatMessage (extended) I want to serialize the objects and when i am deserizaling i dont know if i am getting...
1
by: Ivo Bronsveld | last post by:
All, I have quite a challenging task ahead of me. I need to write an object model (for code access) based on a schema, which cannot be made into a dataset because of it's complexity. So I...
1
by: cjmumford | last post by:
I have a couple of C# objects like this: class Foo { } class Bar { Foo m_foo; Foo foo {
2
by: Tobias Zimmergren | last post by:
Hi, just wondering what serializing really is, and howto use it? Thanks. Tobias __________________________________________________________________ Tobias ICQ#: 55986339 Current ICQ status: +...
4
by: Dave Veeneman | last post by:
When does serializing objects make more sense than persisting them to a database? I'm new to object serialization, and I'm trying to get a feel for when to use it. Here is an example: I'm...
4
by: John J. Hughes II | last post by:
I am serializing a dataset and sending it across a slow socket connection using the following code. I know I can send binary data across a socket but when I serialize the dataset it ends up being...
2
by: Eric Cathell | last post by:
I am creating a custom TCPDatagram object. I am using : mTcp() as tcpClient mNetstream() as NetworkStream below is the actual code with my questions at the end. Public Class TCPDatagram ...
47
by: Max | last post by:
Due to the behaviour of a particular COM object, I need to ensure that a request for a particular ASP page is finalized before another request for the page is processed. Does IIS have a way to...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.