Click here to Skip to main content
15,896,497 members

Comments by wawada (Top 15 by date)

wawada 27-Jul-18 14:55pm View    
Im gonna test it. it worked before to do ssl connection but i guess they changed
wawada 5-Mar-14 14:40pm View    
yes i using TcpClient and Listener Class in .Net Framework
wawada 5-Mar-14 12:41pm View    
i trying to make so i can read my packets between my server and client easier using (TCP) connections but i can get it to work and i have try to send first 1 string like this "Header:Image" and then the data but when it try to send 2 things at the same time it getting stuck and it disconnects i hope someone understand what i writing
wawada 5-Mar-14 11:56am View    
at this line of code
Public Sub New(ByVal header As packetHeader, ByVal data As Object)
_header = header
_data = data ' Says that it cannot convert to Byte
End Sub
Public Shared Function Serialize(myPacket As Packet) As Byte()
Dim fs As New MemoryStream
Dim formatter As New BinaryFormatter
formatter.Serialize(fs, myPacket) ' here is fails because it cannot Serialize for something is not specify but i can find out why ;;/
Return fs.ToArray
End Function
wawada 5-Mar-14 10:21am View    
Deleted
i getting error that the Value object cannot be converted to Byte and when i changing the value "Object" to bytes i getting error that i cannot be Serialize.