S
Steve
I'm working on a program that talks to the Yahoo chat servers. But I have
run into a small problem and I'm not sure what to do next. After I
successfully log into yahoo and receive my cookies I think login to their
chat servers. It's at this point I am having the problem. When the following
code executes:
networkstream.Read(bytes, 0, CInt(tcpClient2.ReceiveBufferSize))
Dim returndata As String = Encoding.ASCII.GetString(bytes)
txtReturndata.Text = txtReturndata.Text & returndata
returndata = "YCHT
There is no closing quote either which I find odd since return data is
clearly a string. I believe that there is some character or something being
received after YCHT that is causing the Encoding.ASCII.GetString to choke.
Any suggestions for a method that might work better? Thanks in advance.
run into a small problem and I'm not sure what to do next. After I
successfully log into yahoo and receive my cookies I think login to their
chat servers. It's at this point I am having the problem. When the following
code executes:
networkstream.Read(bytes, 0, CInt(tcpClient2.ReceiveBufferSize))
Dim returndata As String = Encoding.ASCII.GetString(bytes)
txtReturndata.Text = txtReturndata.Text & returndata
returndata = "YCHT
There is no closing quote either which I find odd since return data is
clearly a string. I believe that there is some character or something being
received after YCHT that is causing the Encoding.ASCII.GetString to choke.
Any suggestions for a method that might work better? Thanks in advance.