Well it's a simple httpwebrequest. When I try to chain proxies, the rate of this kind of exception is even 100%, even the working ones 'stop' working. This means something is wrong on my side or at least I think so.
Anyway, I decided to try my luck with sockets instead we'll see how that goes.
Hey smack, how would you join the buffers of Socket.Receive to get one big byte array? I am making a function to retrieve any resource and a string won't do without unneeded reconversion back to byte [].
Generics.AddRange is adding empty bytes if the buffer is not full.
Dim tempkey() As Byte = {1, 2, 4,...}
Dim MyKey(31) As Byte
Dim i As Integer
For Each Bitt As Byte In tempkey
MyKey.SetValue(Bitt, i)
i += 1
Next
For Each Bitt As Byte In KeyBytes
MyKey.SetValue(Bitt, i)
i += 1
Next
Well it's a simple httpwebrequest. When I try to chain proxies, the rate of this kind of exception is even 100%, even the working ones 'stop' working. This means something is wrong on my side or at least I think so.
Anyway, I decided to try my luck with sockets instead we'll see how that goes.
Hey smack, how would you join the buffers of Socket.Receive to get one big byte array? I am making a function to retrieve any resource and a string won't do without unneeded reconversion back to byte [].
Generics.AddRange is adding empty bytes if the buffer is not full.