Very odd issue. When trying to register a new user on the server, the server will post back messages such as "OK" and "usernameTaken". Upon comparing this returned string with another string (to perform an action based on the returned value), the compare isn't working.
Dim backupX As New CBackup
backupX.startSocket("127.0.0.1", 8888)
Dim str1 As String = backupX.registerUser("user1", "testpass")
Dim str2 As String = "usernameTaken"
If String.Equals(str1, str2) Then
MsgBox("Strings are Equal() ")
Else
MsgBox("Strings are not Equal() - " & str1 & " vs " & str2)
End If
This results in:

So what this shows is that even though the strings are equal, it sais they aren't. And the MsgBox should be saying Strings are not Equal() - usernameTaken vs usernameTaken, it left the vs usernameTaken part out completely.
What's going on here?
Extra info on CBackup class:
backupX.registerUser function:
Public Function registerUser(ByVal name As String, ByVal password As String) As String
Dim md5 As New CMD5
If name.Contains(",") Then
Return "0-commaInName"
Else
Return SocketSendAndReceiveMSG("registerUser," & name & "," & md5.GenerateStringHash(password))
End If
End Function
SocketSendAndReceiveMSG function:
Private Function SocketSendAndReceiveMSG(ByVal msg As String) As String
Return socket.sendAndReceiveMSG(msg)
End Function
socket.sendAndReceiveMSG function:
Public Function sendAndReceiveMSG(ByVal msg As String) As String
Dim serverStream As NetworkStream = clientSocket.GetStream()
sendMSG(msg & "$", serverStream)
Return receiveMSG(serverStream)
End Function
receiveMSG function
Public Function receiveMSG(ByVal serverStream As NetworkStream) As String
Dim inStream(10024) As Byte
Dim buffSize As Integer = clientSocket.ReceiveBufferSize
serverStream.Read(inStream, 0, buffSize)
Dim returndata As String = System.Text.Encoding.ASCII.GetString(inStream)
Form1.msg("Data from Server : " & returndata)
Return returndata
End Function
Looks to be like the socket code is working just fine.. each Function returns the corresponding Functions' Return value (registerUser -> SocketSendAndReceiveMSG -> sendAndReceiveMSG -> receiveMSG). I don't see how this could be messing the str1 string variable up like this..
msg("Bytes Sent: " & sendBytes.Length)to the server. It reports:Bytes Sent: 13. Looks good to me. EDIT: I also added a check client side;MsgBox("str1 length: " & str1.Length & " - str2 length: " & str2.Length). It reports:str1: 10024 - str2: 13. How strange! Must have something to do withDim inStream(10024) As Bytein thereceiveMSGfunction.. checking it out now – natli Feb 20 '12 at 16:28