473,396 Members | 2,010 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.

BIG Problem - Please HELP

Hi Everyone,

i have the following problem in my client-server Application

My server take array and serialize it into the memorystream

Dim ns As NetworkStream = client.GetStream()
Dim writer As New IO.StreamWriter(ns)
Dim bf As New BinaryFormatter
Dim mem As New IO.MemoryStream
bf.Serialize(mem, myArray)

Then we are converting the memory stream into Base64String
Dim myString As String = Convert.ToBase64String(mem.ToArray())

And in the end the server write the string back to the client
writer.Write(myString)
writer.Flush()
so far so good :-)

but now in the client side i have some problem in the Deserialize row

I Have an asynchronous reading from the NetworkStream

Const READ_BUFFER_SIZE As Integer = 255
Private readBuffer(READ_BUFFER_SIZE) As Byte

client.GetStream.BeginRead(readBuffer, 0, READ_BUFFER_SIZE,
AddressOf DoRead, Nothing)

Private Sub DoRead(ByVal ar As IAsyncResult)
Dim bf As New BinaryFormatter
Dim mem As New IO.MemoryStream(readBuffer)
Dim myarray As ArrayList = DirectCast(bf.Deserialize(mem),
ArrayList)

End Sub

This Is The Error,

System.Runtime.Serialization.SerializationExceptio n: BinaryFormatter Version
incompatibility. Expected Version 1.0. Received Version
1093611311.1094795601.
at
System.Runtime.Serialization.Formatters.Binary.Ser ializationHeaderRecord.Rea
d(__BinaryParser input)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryParser.ReadSerializat
ionHeaderRecord()
at System.Runtime.Serialization.Formatters.Binary.__B inaryParser.Run()
at
System.Runtime.Serialization.Formatters.Binary.Obj ectReader.Deserialize(Head
erHandler handler, __BinaryParser serParser, Boolean fCheck,
IMethodCallMessage methodCallMessage)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S
tream serializationStream, HeaderHandler handler, Boolean fCheck,
IMethodCallMessage methodCallMessage)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S
tream serializationStream, HeaderHandler handler)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S
tream serializationStream)
at frmMain.DoRead(IAsyncResult ar) in frmMain.vb

Please Help

T:-)


Nov 21 '05 #1
2 1486
On Sat, 11 Sep 2004 14:23:07 +0200, Tiraman :-) wrote:
Hi Everyone,

i have the following problem in my client-server Application

My server take array and serialize it into the memorystream

Dim ns As NetworkStream = client.GetStream()
Dim writer As New IO.StreamWriter(ns)
Dim bf As New BinaryFormatter
Dim mem As New IO.MemoryStream
bf.Serialize(mem, myArray)

Then we are converting the memory stream into Base64String
Dim myString As String = Convert.ToBase64String(mem.ToArray())

And in the end the server write the string back to the client
writer.Write(myString)
writer.Flush()
so far so good :-)

but now in the client side i have some problem in the Deserialize row

I Have an asynchronous reading from the NetworkStream

Const READ_BUFFER_SIZE As Integer = 255
Private readBuffer(READ_BUFFER_SIZE) As Byte

client.GetStream.BeginRead(readBuffer, 0, READ_BUFFER_SIZE,
AddressOf DoRead, Nothing)

Private Sub DoRead(ByVal ar As IAsyncResult)
Dim bf As New BinaryFormatter
Dim mem As New IO.MemoryStream(readBuffer)
Dim myarray As ArrayList = DirectCast(bf.Deserialize(mem),
ArrayList)

End Sub

This Is The Error,

System.Runtime.Serialization.SerializationExceptio n: BinaryFormatter Version
incompatibility. Expected Version 1.0. Received Version
1093611311.1094795601.
at
System.Runtime.Serialization.Formatters.Binary.Ser ializationHeaderRecord.Rea
d(__BinaryParser input)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryParser.ReadSerializat
ionHeaderRecord()
at System.Runtime.Serialization.Formatters.Binary.__B inaryParser.Run()
at
System.Runtime.Serialization.Formatters.Binary.Obj ectReader.Deserialize(Head
erHandler handler, __BinaryParser serParser, Boolean fCheck,
IMethodCallMessage methodCallMessage)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S
tream serializationStream, HeaderHandler handler, Boolean fCheck,
IMethodCallMessage methodCallMessage)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S
tream serializationStream, HeaderHandler handler)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S
tream serializationStream)
at frmMain.DoRead(IAsyncResult ar) in frmMain.vb

Please Help

T:-)


Tiraman...

There are a couple of issues here. On the client side, you have to realize
that your object is not necessarily going to come over in one piece. Data
sent over TCP is broken into packets. So, you will probably want to append
a new line or some other non-printable character to the base64 encoded so
that the client will know when the data transmission is complete. You're
using async reads, so you'll need to make sure you keep state between calls
to your read method... Check the examples here for further details:

http://msdn.microsoft.com/library/de...ientSocket.asp

Now, once you have that part worked out... You'll need to make sure that
you convert your decode your string back to a byte array BEFORE
deserializing it...

' remember to remove the appended new line first...
Dim buffer() As Byte = Convert.FromBase64String (yourObjectString)

once you've done that, you can then deserialize...

Dim ms As New MemoryStream (buffer)
Dim bf As New BinaryFormatter()
Dim al As ArrayList = DirectCast (bf.Deserialize (ms), ArrayList)

HTH
--
Tom Shelton [MVP]
Nov 21 '05 #2
Hi Tom,

Now it looks good.

Thanks !

"Tom Shelton" <to*@YOUKNOWTHEDRILLmtogden.com> wrote in message
news:3b*****************************@40tude.net...
On Sat, 11 Sep 2004 14:23:07 +0200, Tiraman :-) wrote:
Hi Everyone,

i have the following problem in my client-server Application

My server take array and serialize it into the memorystream

Dim ns As NetworkStream = client.GetStream()
Dim writer As New IO.StreamWriter(ns)
Dim bf As New BinaryFormatter
Dim mem As New IO.MemoryStream
bf.Serialize(mem, myArray)

Then we are converting the memory stream into Base64String
Dim myString As String = Convert.ToBase64String(mem.ToArray())
And in the end the server write the string back to the client
writer.Write(myString)
writer.Flush()
so far so good :-)

but now in the client side i have some problem in the Deserialize row

I Have an asynchronous reading from the NetworkStream

Const READ_BUFFER_SIZE As Integer = 255
Private readBuffer(READ_BUFFER_SIZE) As Byte

client.GetStream.BeginRead(readBuffer, 0, READ_BUFFER_SIZE,
AddressOf DoRead, Nothing)

Private Sub DoRead(ByVal ar As IAsyncResult)
Dim bf As New BinaryFormatter
Dim mem As New IO.MemoryStream(readBuffer)
Dim myarray As ArrayList = DirectCast(bf.Deserialize(mem), ArrayList)

End Sub

This Is The Error,

System.Runtime.Serialization.SerializationExceptio n: BinaryFormatter Version incompatibility. Expected Version 1.0. Received Version
1093611311.1094795601.
at
System.Runtime.Serialization.Formatters.Binary.Ser ializationHeaderRecord.Rea d(__BinaryParser input)
at
System.Runtime.Serialization.Formatters.Binary.__B inaryParser.ReadSerializat ionHeaderRecord()
at System.Runtime.Serialization.Formatters.Binary.__B inaryParser.Run() at
System.Runtime.Serialization.Formatters.Binary.Obj ectReader.Deserialize(Head erHandler handler, __BinaryParser serParser, Boolean fCheck,
IMethodCallMessage methodCallMessage)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S tream serializationStream, HeaderHandler handler, Boolean fCheck,
IMethodCallMessage methodCallMessage)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S tream serializationStream, HeaderHandler handler)
at
System.Runtime.Serialization.Formatters.Binary.Bin aryFormatter.Deserialize(S tream serializationStream)
at frmMain.DoRead(IAsyncResult ar) in frmMain.vb

Please Help

T:-)
Tiraman...

There are a couple of issues here. On the client side, you have to

realize that your object is not necessarily going to come over in one piece. Data
sent over TCP is broken into packets. So, you will probably want to append a new line or some other non-printable character to the base64 encoded so
that the client will know when the data transmission is complete. You're
using async reads, so you'll need to make sure you keep state between calls to your read method... Check the examples here for further details:

http://msdn.microsoft.com/library/de...ientSocket.asp
Now, once you have that part worked out... You'll need to make sure that
you convert your decode your string back to a byte array BEFORE
deserializing it...

' remember to remove the appended new line first...
Dim buffer() As Byte = Convert.FromBase64String (yourObjectString)

once you've done that, you can then deserialize...

Dim ms As New MemoryStream (buffer)
Dim bf As New BinaryFormatter()
Dim al As ArrayList = DirectCast (bf.Deserialize (ms), ArrayList)

HTH
--
Tom Shelton [MVP]

Nov 21 '05 #3

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

Similar topics

0
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web...
7
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
7
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that...
23
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application...
13
by: Joner | last post by:
Hello, I'm having trouble with a little programme of mine where I connect to an access database. It seems to connect fine, and disconnect fine, but then after it won't reconnect, I get the error...
1
by: David Van D | last post by:
Hi there, A few weeks until I begin my journey towards a degree in Computer Science at Canterbury University in New Zealand, Anyway the course tutors are going to be teaching us JAVA wth bluej...
1
PEB
by: PEB | last post by:
POSTING GUIDELINES Please follow these guidelines when posting questions Post your question in a relevant forum Do NOT PM questions to individual experts - This is not fair on them and...
0
by: 2Barter.net | last post by:
newsmail@reuters.uk.ed10.net Fwd: Money for New Orleans, AL & GA Inbox Reply Reply to all Forward Print Add 2Barter.net to Contacts list Delete this message Report phishing Show original
6
by: jenipriya | last post by:
Hi all... its very urgent.. please........i m a beginner in oracle.... Anyone please help me wit dese codes i hv tried... and correct the errors... The table structures i hav Employee (EmpID,...
5
by: tabani | last post by:
I wrote the program and its not giving me correct answer can any one help me with that please and specify my mistake please it will be highly appreciable... The error arrives from option 'a' it asks...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.