Re: [twsocket] HttpCli with PostASync

2005-07-21 Thread KL Chin
Hi Francios, Thx for your suggestion. I think my problem was due to I set the Multithread to TRUE, hence cause high CPU usage under the thread process, (for the transaction about 20sec), due to this reason I touught by using PostAsync it can solve my problem, however another problem raised. Anyw

Re: [twsocket] [OT] elists.org new server is really fast !

2005-07-21 Thread Wilfried Mestdagh
Hello Francois, Yes !! --- Rgds, Wilfried http://www.mestdagh.biz Thursday, July 21, 2005, 20:20, Francois PIETTE wrote: > Have you noticed how fast is the new elists.org server ? > When you post a message to the list, it is distributed everywhere within a > few minutes instead of sometimes one

[twsocket] Monitor sockets components

2005-07-21 Thread Angus Robertson - Magenta Systems Ltd
I've just written two new components for monitoring ethernet packets, with a test application that displays the two different techniques: 1 - Raw sockets (W2K and later) using ICS, does not any other software installed, but may not capture send packets on W2K and XP, only W2K3, and ignores non-

[twsocket] [OT] elists.org new server is really fast !

2005-07-21 Thread Francois PIETTE
Have you noticed how fast is the new elists.org server ? When you post a message to the list, it is distributed everywhere within a few minutes instead of sometimes one hour for previous server ! -- [EMAIL PROTECTED] http://www.overbyte.be -- To unsubscribe or change your settings for TWSocket m

Re: [twsocket] HTTP client component and document encoding

2005-07-21 Thread Maurizio Lotauro
Scrive Francois PIETTE <[EMAIL PROTECTED]>: > >class function THttpContentCoding.GetCoding: String; > >const > > BASE_CLASS_NAME = 'THttpContentCoding'; > >begin > > if Pos(BASE_CLASS_NAME, ClassName) = 1 then > >Result := Copy(ClassName, Length(BASE_CLASS_NAME), MAXINT) > > else > >Res

Re: [twsocket] HTTP client component and document encoding

2005-07-21 Thread Francois PIETTE
>class function THttpContentCoding.GetCoding: String; >const > BASE_CLASS_NAME = 'THttpContentCoding'; >begin > if Pos(BASE_CLASS_NAME, ClassName) = 1 then >Result := Copy(ClassName, Length(BASE_CLASS_NAME), MAXINT) > else >Result := 'Unknown'; { Raise an exception?? } >end; Instead of

[twsocket] HTTP client component and document encoding

2005-07-21 Thread Francois PIETTE
Maurizio Lotauro is working on the HTTP client component to extend the work already done by Xavier Le Bris (gzip support). The idea is to have a general mechanism in the component to register encoding system so that adding new encoding scheme doesn't require component change. Preliminary code i

Re: [twsocket] HttpCli with PostASync

2005-07-21 Thread Francois PIETTE
> I had create GUI app, and a thread to handle THttpCli, below partial of > code. You don't need a thread. Or if you do, tell me why you think you need a thread. > What could be the probelm? > Do I need call PeekMessage? Your thread need to have a message pump so that events are triggered. Wit

Re: [twsocket] TEmulVT: Keyboard Mapping

2005-07-21 Thread Francois PIETTE
> Can I exchange "ibm_iso8859_1_G0" or "ibm_iso8859_1_G1" TXlatTables on > Unicode Table to support German special symbols (umlaute)? I have no experience with Unicode. I suspect you have more than a table to change. -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From

Re: [twsocket] TEmulVT: Keyboard Mapping

2005-07-21 Thread Artem Antonov
On Thu, 21 Jul 2005 13:43:21 +0200 "Francois PIETTE" <[EMAIL PROTECTED]> wrote: >> I have some question about TEmulVT component: >> >> 1) Does TFuncKeysTable array is implementation of Keyboard Mapping >>in >> TEmulVT component? > > Mapping for function keys. Normal keys are mapped by Windows u

[twsocket] HttpCli with PostASync

2005-07-21 Thread KL Chin
Hi, I had create GUI app, and a thread to handle THttpCli, below partial of code. My problem was, after call PostAync( ); Not connection .. nothing happend at all. If I call Post( ); everything working. What could be the probelm? Do I need call PeekMessage? Regards KL Chin void __fastcall TWeb

Re: [twsocket] TEmulVT: Keyboard Mapping

2005-07-21 Thread Francois PIETTE
> I have some question about TEmulVT component: > > 1) Does TFuncKeysTable array is implementation of Keyboard Mapping in > TEmulVT component? Mapping for function keys. Normal keys are mapped by Windows using the keyboard setting for your country. > 2) Is this Table specific for some language o

[twsocket] TEmulVT: Keyboard Mapping

2005-07-21 Thread Artem Antonov
Hello! I have some question about TEmulVT component: 1) Does TFuncKeysTable array is implementation of Keyboard Mapping in TEmulVT component? 2) Is this Table specific for some language or it will work with any languages? 3) Can I extend this Table with my own FuncKeys? Thanks! Best regards,