[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

06/12/2008 at 08:03AM PDT, ID: 23479759
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

How do i send and receive data with TCPClient (with large serialized object)

Asked by Dnx_7 in Microsoft Visual Basic.Net, .NET, .NET Framework 2.x

Tags: VB.NET

Hi experts,

I try to send custom objects (dataset/serializable object, etc...) to clients from the server
the communication works fine, and i receive data when i use short string but now, i have implemented server side to send custom objects and since this implementation, i cannot deserialize back in the clients...

what i discovered is when i use customs objects, i received twice call from the server, i'm not sure of it but it seems that the client do a "beginread" to quickly and the server has not enough time to send the object entirely so it sends data "chunked"?

can you help me?

regards


here the Server code to send data to clients :

Dim dataExch As New DataExchange(Subscription, Data)

                'serialize the dataExchange class in binary format
                ms = ClsMisc.SerializeBinary(Of DataExchange)(dataExch)

                If ms IsNot Nothing Then

                    'convert the memorystream to get a full string to be send in plain text
                    Data = System.Convert.ToBase64String(ms.ToArray)
                Else
                    Exit Sub
                End If


                SyncLock Me._subscriber.GetStream
                    If Me._subscriber.GetStream.CanWrite Then
                        Dim writer As New IO.StreamWriter(Me._subscriber.GetStream)
                        writer.Write(Data.ToString)
                        writer.Flush()
                    End If
                End SyncLock



Client code :


 Dim BytesRead As Int32
            Dim strMessage As String

            Try
                ' Finish asynchronous read into readBuffer and return number of bytes read.
                BytesRead = Me._client.GetStream.EndRead(ar)
            Catch e As Exception
                Me.Close()
                RaiseEvent onDisconnected(Me)
            End Try

            If BytesRead < 1 Then
                ' If no bytes were read server has close.  Disable input window.
                Me.Close()
                RaiseEvent onDisconnected(Me)
                Exit Sub
            End If
   Dim ms As New MemoryStream
                        Dim b() As Byte = System.Convert.FromBase64String(strMessage)
                        ms.Read(b, 0, b.Length)

'HERE I CANNOT DESERIALIZE THE DATAEXCHANGE CLASS
                        Dim ds As DataExchange = ClsMisc.DeSerializeBinary(Of DataExchange)(ms)


[+][-]06/12/08 08:17 AM, ID: 21770432

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/12/08 08:56 AM, ID: 21770840

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/12/08 10:37 AM, ID: 21771798

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/13/08 01:20 AM, ID: 21776872

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/13/08 03:15 AM, ID: 21777366

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Microsoft Visual Basic.Net, .NET, .NET Framework 2.x
Tags: VB.NET
Sign Up Now!
Solution Provided By: Dnx_7
Participating Experts: 1
Solution Grade: B
 
 
[+][-]06/13/08 07:24 AM, ID: 21779169

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]06/16/08 09:25 PM, ID: 21799565

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-91 / EE_QW_2_20070628