I had this kind of errors when I tried to upload files greater than 32kb.
I changed the packet size to 16kb and I already can upload al size files.
I have changed the Channel.cs file:
internal virtual void setRemotePacketSize(int foo) { this.rmpsize==foo; }
by
internal virtual void setRemotePacketSize(int foo) { this.rmpsize=16*1024; }//=foo; }