[Twisted-Python] sending file but LineReceiver doesnt run

2008-11-25 Thread Aydın ŞEN
Hi, I am trying to send file which is in the client's disk, i am using LineReceiver in the server side. I am sending and receiving data like login stuff but when i start to read & send file LineReceiver method doesnt run in the server side. Sending file code part is below, what can be cause of this

Re: [Twisted-Python] sending file but LineReceiver doesnt run

2008-11-25 Thread Jean-Paul Calderone
On Tue, 25 Nov 2008 12:41:46 +0200, Aydın ŞEN <[EMAIL PROTECTED]> wrote: Hi, I am trying to send file which is in the client's disk, i am using LineReceiver in the server side. I am sending and receiving data like login stuff but when i start to read & send file LineReceiver method doesnt run in

Re: [Twisted-Python] sending file but LineReceiver doesnt run

2008-11-25 Thread Amaury Forgeot d'Arc
Hello, On Tue, Nov 25, 2008 at 15:17, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote: > On Tue, 25 Nov 2008 12:41:46 +0200, Aydın ŞEN <[EMAIL PROTECTED]> wrote: >> >> Hi, >> I am trying to send file which is in the client's disk, i am using >> LineReceiver in the server side. I am sending and recei

Re: [Twisted-Python] sending file but LineReceiver doesnt run

2008-11-25 Thread Aydın ŞEN
Thank you very much.. if i send file per 1KB does it cause lack of performance? 25 Kasım 2008 Salı 16:51 tarihinde Amaury Forgeot d'Arc <[EMAIL PROTECTED]>yazdı: > Hello, > > On Tue, Nov 25, 2008 at 15:17, Jean-Paul Calderone <[EMAIL PROTECTED]> > wrote: > > On Tue, 25 Nov 2008 12:41:46 +0200, A

Re: [Twisted-Python] sending file but LineReceiver doesnt run

2008-11-25 Thread Jean-Paul Calderone
On Tue, 25 Nov 2008 17:29:16 +0200, Aydın ŞEN <[EMAIL PROTECTED]> wrote: Thank you very much.. if i send file per 1KB does it cause lack of performance? If you try to send a file like this, then any newlines it contains will be lost. Performance doesn't matter much if your results are wrong.

Re: [Twisted-Python] sending file but LineReceiver doesnt run

2008-11-25 Thread Aydın ŞEN
> If you try to send a file like this, then any newlines it contains will > be lost. yeap, i got it what you mean.. > Performance doesn't matter much if your results are wrong. You > should not try to send a file with a line protocol. Read the "Protocol reading.. thanks again -- Aydın ŞE

[Twisted-Python] Re: Please test Twisted 8.2.0pre2 and tell me whether it works

2008-11-25 Thread Waldemar Osuch
Christopher Armstrong twistedmatrix.com> writes: > > The tarballs are at > > http://twistedmatrix.com/users/radix/8.2.0pre2/ > > If you want to test 8.2.0pre2 on Windows, Thomas Hervé may be able to > build installers some time tomorrow. > The Windows installer by Thomas assumes that Pyt

Re: [Twisted-Python] Please test Twisted 8.2.0pre2 and tell me whether it works

2008-11-25 Thread Drew Smathers
On Thu, Nov 20, 2008 at 8:11 PM, Christopher Armstrong <[EMAIL PROTECTED]> wrote: > I just uploaded 8.2.0pre2 tarballs, which include one bugfix since > 8.2.0pre1 which was deemed important enough to be backported: > > - TLS Session Tickets are now disabled by default, allowing connections to >

[Twisted-Python] SSL Client Certificates?

2008-11-25 Thread asset
Would I be right in assuming that the example echoserv_ssl.py and echoclient_ssl.py will only result in encryption from the client to server and not from the server back to the client? Im referencing these examples specifically, http://twistedmatrix.com/projects/core/documentation/examples/echoc

Re: [Twisted-Python] SSL Client Certificates?

2008-11-25 Thread Jean-Paul Calderone
On Tue, 25 Nov 2008 12:09:19 -0700, asset <[EMAIL PROTECTED]> wrote: Would I be right in assuming that the example echoserv_ssl.py and echoclient_ssl.py will only result in encryption from the client to server and not from the server back to the client? Im referencing these examples specifical

Re: [Twisted-Python] Running a GUI application based on PyQt

2008-11-25 Thread Nahuel Defossé
Thanks both quick and helpful responses! I was messing with the order, but finally it worked, though I've just tested a very basic piece of code. The non-threading nature in a pyqt app sacres me a bit, but I hope it's temporal :) Now it's time for me to merge the whole thing, sqlalchemy via sAsy