Recommended Posts

OK guys, fresh from format havnt even installed graphics drivers... and i still cant download above 20k ( avg of 10-14k) - this annoys me greatly cos im on 1MB Broadband.. i should be getting 120k like i used to.

Im currently doing a speed test thing atm while dealing with crappy tech support people ''have you checked to see if the modems plugged in'' HAVE YOU CHECKED TO SEE IF YOUR BRAINS PLUGGED IN *chain saw noises*

I also out why huge contacts lists arent working, and because i have enough time to explain :

MSN contacts lists are sent like this

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

However... with big contact lists this seems to be happening :

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.co

m Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20G

oes%20Here

LST blah@blah.com Name%20Goes%20Here

LS

T blah@blah.com Name%20Goes%20Here

Which is incredibly strange :s.. it wont work this way... i think its something to do with the socket im using or something like that, maybe the buffer length, like its cutting off and not putting all the info through my parser routine.

Anyway when i get my pc working again the only thing i can think of to do is create a sign in in VB6 ( using winsocks ) and see if the data still comes all jumbled up :(

If anyone knows why this is happening please lemme know...

back to the tech supports....

:(

maybe.... if i can get past this contacts list problem

585482851[/snapback]

Hey Dayle.............I hope you are able to get past this problem!

Can't wait to test out and Alpha or bneta if possible & good luck to you You will defo beat Msn Messenger with this as it looks sooooo cool :D

OK guys, fresh from format havnt even installed graphics drivers... and i still cant download above 20k ( avg of 10-14k) - this annoys me greatly cos im on 1MB Broadband.. i should be getting 120k like i used to.

Im currently doing a speed test thing atm while dealing with crappy tech support people ''have you checked to see if the modems plugged in'' HAVE YOU CHECKED TO SEE IF YOUR BRAINS PLUGGED IN *chain saw noises*

I also out why huge contacts lists arent working, and because i have enough time to explain :

MSN contacts lists are sent like this

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

However... with big contact lists this seems to be happening :

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.co

m Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20G

oes%20Here

LST blah@blah.com Name%20Goes%20Here

LS

T blah@blah.com Name%20Goes%20Here

Which is incredibly strange :s.. it wont work this way... i think its something to do with the socket im using or something like that, maybe the buffer length, like its cutting off and not putting all the info through my parser routine.

Anyway when i get my pc working again the only thing i can think of to do is create a sign in in VB6 ( using winsocks ) and see if the data still comes all jumbled up :(

If anyone knows why this is happening please lemme know...

back to the tech supports....

:(

585482597[/snapback]

i also had that problem in an irc client i made, so try this code

Private Sub sock_DataArrival(ByVal sender As Object, ByVal e As System.EventArgs) Handles Sock.DataArrival

Static bufferDat As String

Dim dat As String = Sock.GetArrivedText(True)

If Right(dat, 1) <> vbLf OrElse dat.Trim.IndexOf(" ") = -1 Then

bufferDat = bufferDat & dat

Else

Interpret(bufferDat & dat)

bufferDat = ""

End If

End Sub

it basically checks if there is a line feed at the end of the data and that it contains at least a space char, dunno if msn protocol requires the line feed char though

XML if you dont mind can I ask what kind of socket your using? Having just moved up from VB to VB.net i'm using a downloadable winsock control for .net.

IRC and MSN of course use the same protocol so this might help a little.

I'll send msn screename if youd rather talk that way.

Thank You.

OK guys, fresh from format havnt even installed graphics drivers... and i still cant download above 20k ( avg of 10-14k) - this annoys me greatly cos im on 1MB Broadband.. i should be getting 120k like i used to.

Im currently doing a speed test thing atm while dealing with crappy tech support people ''have you checked to see if the modems plugged in'' HAVE YOU CHECKED TO SEE IF YOUR BRAINS PLUGGED IN *chain saw noises*

I also out why huge contacts lists arent working, and because i have enough time to explain :

MSN contacts lists are sent like this

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

However... with big contact lists this seems to be happening :

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.co

m Name%20Goes%20Here

LST blah@blah.com Name%20Goes%20Here

LST blah@blah.com Name%20G

oes%20Here

LST blah@blah.com Name%20Goes%20Here

LS

T blah@blah.com Name%20Goes%20Here

Which is incredibly strange :s.. it wont work this way... i think its something to do with the socket im using or something like that, maybe the buffer length, like its cutting off and not putting all the info through my parser routine.

Anyway when i get my pc working again the only thing i can think of to do is create a sign in in VB6 ( using winsocks ) and see if the data still comes all jumbled up :(

If anyone knows why this is happening please lemme know...

back to the tech supports....

:(

585482597[/snapback]

Aaaaah the wonderfull world of sockets.

Just to make one thing clear. NEVER expect a socket to deliver you the data in the right order. most of the time it goes fine, but it happens you get certain messages later then you might expect.

So you have to program your logic to handle this problem. I've made some multiplayer network games with some friends and this was always a problem we encountered.

nah not unless its a direct rip.

Schmoove thanks for the info bro but order doesnt matter too much here, its just that im splitting the data by lines (vbcrlf ) and FOR every line splitting by words (" "), to catch the commands... so naturaly its a bit annoying when the line breaks in the middle... i dont think its just my ISP connection issues at the moment , as KoL was unable to load his contact list, ill think of something.

nah not unless its a direct rip.

Schmoove thanks for the info bro but order doesnt matter too much here, its just that im splitting the data by lines (vbcrlf ) and FOR every line splitting by words (" "), to catch the commands... so naturaly its a bit annoying when the line breaks in the middle... i dont think its just my ISP connection issues at the moment , as KoL was unable to load his contact list, ill think of something.

585483476[/snapback]

Ohh ok I get it. Thanks!

XML if you dont mind can I ask what kind of socket your using? Having just moved up from VB to VB.net i'm using a downloadable winsock control for .net.

IRC and MSN of course use the same protocol so this might help a little.

I'll send msn screename if youd rather talk that way.

Thank You.

585483313[/snapback]

they do?!

I was at Dayles today and to say the least this LST problem has gotta be one of the worst so far (exept for his SSL which hes kind of got a cheesy way round).

The LST comes in the same order everytime and for some reason its the same contacts which are also cut off, not all the online contacts are there either.

We had a Jab at messing with the buffer sizes etc which was interesting but no Goal. Could either be the Socket or the server :no: ( could be the server ramming too much info down the socket at one time, either way will be intersting to see how he solves that one).

I was at Dayles today

585483820[/snapback]

you were??!1 get out of my house. nah just kiddin man

yeh i hope u guys understand that i honestly cant work on it at the moment, i can only just load neowin... hell even google is a challenge... i havnt actually logged into my hotmail account yet.. it just crashes.

My isp were being *holes too because they said call back in 2 hours... and surprise surprise they were closed. me --> :trout: <-- pipex

I cant even download drivers... sometimes i get less than 1k.... this is real fun :s

and for you that know i like music.... lets just say this in a err... subtle way... an album has come out that i have wanted for ages... and i have a means of getting it... if not for my predicament :pinch: grrrrrr die pipex die.... and die shaqueel the guy on the phone who talks to himself while he works, lies to me, and acts like a *hole :crazy:

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.