[twsocket] OT: Is a server service paused when windows goes to standby state?

2006-11-02 Thread Fastream Technologies
Thanks in advance, SZ -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

[twsocket] HTTP Server upload prgress bar

2006-11-03 Thread Fastream Technologies
Hello, I think this was asked before but we still do not have sufficient info: Which HTTP header combination would be used for showing a progress bar for HTTP file uploads? I mean how does it work? Best Regards, SZ -- To unsubscribe or change your settings for TWSocket mailing list please g

Re: [twsocket] HTTP Server upload prgress bar

2006-11-03 Thread Fastream Technologies
ailing" Sent: Friday, November 03, 2006 7:25 PM Subject: Re: [twsocket] HTTP Server upload prgress bar : Content-Length. : : -- : Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html : -- : [EMAIL PROTECTED] : http://www.overbyte.be : : : - Original Message - : Fr

Re: [twsocket] HTTP Server upload prgress bar

2006-11-04 Thread Fastream Technologies
I want the browser to display a upload progress bar while an HTTP file upload is taking place. Thank you, SubZero - Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, November 04, 2006 10:12 AM Subject: Re: [twsocket] HTTP Server u

Re: [twsocket] Bandwidth counter for MT HTTP Server--what'sthefastestway?

2006-11-04 Thread Fastream Technologies
Hello, I think using a single NIC, 64000 sockets could be possible for a proxy since we can define the local port of the client connections the same, right? Best Regards, SZ - Original Message - From: "Dod" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, October 28, 20

Re: [twsocket] HTTP Server upload prgress bar

2006-11-04 Thread Fastream Technologies
- Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, November 04, 2006 3:07 PM Subject: Re: [twsocket] HTTP Server upload prgress bar : >I want the browser to display a upload progress bar while : > an HTTP file upload is taking plac

Re: [twsocket] HTTP Server upload prgress bar

2006-11-04 Thread Fastream Technologies
- Original Message - From: "DZ-Jay" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, November 04, 2006 3:57 PM Subject: Re: [twsocket] HTTP Server upload prgress bar : : On Nov 4, 2006, at 05:01, Fastream Technologies wrote: : : > I want th

Re: [twsocket] HTTP Server upload prgress bar

2006-11-05 Thread Fastream Technologies
Alright thanks. - Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, November 04, 2006 8:16 PM Subject: Re: [twsocket] HTTP Server upload prgress bar :> : >I want the browser to display a upload progress bar while : > : > an HTTP fi

[twsocket] Async file I/o for THttpServer

2006-11-08 Thread Fastream Technologies
Hello, We are looking forward to implement async file I/O for a THttpServer descendent. I remember some of you have been experienced in this and wonder if you could tell what the dead-end roads are and what to avoid. If only you could point me to good sites, that would also be appreciated. Best R

Re: [twsocket] Socket not sending SYN ACK - Help?

2006-11-09 Thread Fastream Technologies
able, I guess that the problem is on the client side. > > --- > Arno Garrels [TeamICS] > http://www.overbyte.be/eng/overbyte/teamics.html > > > -- > To unsubscribe or change your settings for TWSocket mailing list > please goto http://www.elists.org/mailman/listinf

Re: [twsocket] TWSocket sync send problem within ISAPI

2006-11-21 Thread Fastream Technologies
I want to add: 1) ISAPI must have sync sockets 2) when I go through breakpoints, no -1's are returned and the sample jpg returned by the ISAPI extension works perfectly. (no corruption) Best Regards, SZ On 11/21/06, Fastream Technologies <[EMAIL PROTECTED]> wrote: > Hello, &g

[twsocket] TWSocket sync send problem within ISAPI

2006-11-21 Thread Fastream Technologies
Hello, In our ISAPI server, if the request is detected to be of a ISAPI interpreter one, we run the routine, OldDataAvailable = FOnDataAvailable; OldSendData = FOnSendData; OldDataSent = FOnDataSent; FOnDataAvailable = NULL; FOnSendData = NULL; FOnDataSent = NULL; int iMode = 0; WSocket_ioctlso

Re: [twsocket] Need example code for identifying arecordbeforeprocessing

2006-11-21 Thread Fastream Technologies
convert to/from > ascii to the binary data and the data size is somewhat larger. Most well > known TCP/IP protocols are ascii based. > > -- > Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > > --

Re: [twsocket] TWSocket sync send problem within ISAPI

2006-11-21 Thread Fastream Technologies
S (Internet Component Suite, freeware) > Author of MidWare (Multi-tier framework, freeware) > http://www.overbyte.be > > - Original Message - > From: "Fastream Technologies" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Tuesday, Novembe

Re: [twsocket] TWSocket sync send problem within ISAPI

2006-11-21 Thread Fastream Technologies
I do not think the issue understood the same here and there. Why is the Count = -1 then? What should one do to have the sync method work? (I have changed the mode to sync, I hope you noticed. See the code I posted in my __first__ email.) Regards, SZ On 11/21/06, Francois PIETTE <[EMAIL PROTECTED

Re: [twsocket] TWSocket sync send problem within ISAPI

2006-11-22 Thread Fastream Technologies
Hello, Could you look at the new code below: procedure TWebConnection.ConnectionDataSentISAPI(Sender : TObject; Error : WORD); begin sendError := Error; sendComplete := true; end; function TWebConnection.SendSync(Data: String): boolean; begin Result := SendSync(PChar(Data

Re: [twsocket] TWSocket sync send problem within ISAPI

2006-11-22 Thread Fastream Technologies
Also, function TWebConnection.SendSync(Data: String): boolean; is never called from the modified DXISAPI. It is just for I believe the HEAD command. (I know Length(Data) can return wrong info.) Best Regards, SZ On 11/22/06, Fastream Technologies <[EMAIL PROTECTED]> wrote: > Hello,

Re: [twsocket] TWSocket sync send problem within ISAPI

2006-11-22 Thread Fastream Technologies
ED] > http://www.overbyte.be > > - Original Message - > From: "Fastream Technologies" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Wednesday, November 22, 2006 9:24 AM > Subject: Re: [twsocket] TWSocket sync send problem within ISAPI >

Re: [twsocket] TWSocket sync send problem within ISAPI

2006-11-22 Thread Fastream Technologies
Alright, found the bug myself and fixed now. It is the result := sendError <> 0; line. It should have been the opposite way... THANKS! SZ On 11/22/06, Fastream Technologies <[EMAIL PROTECTED]> wrote: > As I wrote before, the downloaded picture (from the php5ISAPI.dll) is > co

[twsocket] Idea about forming a new mailing list

2006-11-24 Thread Fastream Technologies
Hello, I propose to create a new ICS yahoo group (which has the web viewing option) similar to Borland's thirdpartytools newsgroup where all ICS developers could announce their software and more trade could be conducted among community members. Best Regards, SubZero -- To unsubscribe or change

Re: [twsocket] Idea about forming a new mailing list

2006-11-24 Thread Fastream Technologies
org/mailman/listinfo/twsocket > Visit our website at http://www.overbyte.be > -- CSA, Fastream Technologies Software IQ: Innovation & Quality www.fastream.com | Email: [EMAIL PROTECTED] | Tel: +90-312-223-2830 -- To unsubscribe or change your settings for TWSocket mailing list

[twsocket] Procedure for using ThreadAttach/Detach

2006-11-26 Thread Fastream Technologies
Hello, I am trying to implement a THttpConnection derivative pooling for a multi-threaded web server, which was already working with thread pooling well. It works fine now except that when there are many threads, the ThreadAttach's give the error "Cannot attach..." exception (there is only one exc

Re: [twsocket] Idea about forming a new mailing list

2006-11-27 Thread Fastream Technologies
: : Just my six peneth worth Keep to the KISS principle. : : Dave B. : : : : : : > -Original Message- : > From: Fastream Technologies [mailto:[EMAIL PROTECTED] : > Sent: Friday, November 24, 2006 6:08 PM : > To: ICS support mailing : > Subject: Re: [twsocket] Idea about formi

Re: [twsocket] Idea about forming a new mailing list

2006-11-27 Thread Fastream Technologies
iginal Message --- > >From: Fastream > Technologies[mailto:[EMAIL PROTECTED] > >Sent: 11/27/2006 10:32:42 AM > >To : twsocket@elists.org > >Cc : > >Subject : RE: Re: [twsocket] Idea about forming a > new mailing list > > > >Hello, >

Re: [twsocket] Httpserver and multithreading

2006-11-30 Thread Fastream Technologies
Hello Bjørnar, We do multi-threading by modifying WSocketS.pas and on top of it, HttpSrv.pas. There is no easy way to do it otherwise. I remember I uploaded my HTTPMTServer pascal code to http://www.fastream.com/ics sometime ago.. Basically what it does is to move the creation of TWSocket insta

[twsocket] Strange service folder mapping problem for ICS web server

2006-12-06 Thread Fastream Technologies
Hello, When I use the UNC name as "\\server\sharedFolder" it works in FindFirst but not "z:\" where Z:\ is actually mapped to sharedfolder under the same admin account in Windows. This happens with Win2003, XP. Any ideas? Best Regards, SZ -- To unsubscribe or change your settings for TWSocket

Re: [twsocket] TWSocket support for HTTP proxy

2006-12-09 Thread Fastream Technologies
What does TCustomSslWSocket derive from? On 12/9/06, Jack <[EMAIL PROTECTED]> wrote: > Hello Arno, > > If you have tested it, I could be wrong. I didn't actually test it. > I just looked at the code below and it seems that SSL and Socks are > mutually exclusive. I didn't dig it further. > > {$IFDE

[twsocket] FastCGI project proposal (with permission from Francois)

2006-12-12 Thread Fastream Technologies
Dear ICS Colleagues, We (Fastream Technologies) are looking for a developer who will be in charge of developing a FastCGI extension (See the the specs at http://www.fastcgi.com) based on our custom CGI component for our existing server based on ICS. If you are interested as, please email us from

[twsocket] Service dependency problem re-occurred.

2006-12-12 Thread Fastream Technologies
Hello, Our clients using Windows 2003 complain that the lastest beta is causing hangs during boot up and then reboots and goes into a loop. This is a HTTP/FTP server installed as system service and running with administrative rights. It depends only to Tcpip. I noticed that when it is trying to ru

Re: [twsocket] Service dependency problem re-occurred.

2006-12-13 Thread Fastream Technologies
-- It simply got the service hanging during system boot if service type was auto. Just FYI. BTW, the function is useful in adding the description but it should be called after install or a few mins. Best Regards, SZ On 12/13/06, Arno Garrels <[EMAIL PROTECTED]> wrote:

[twsocket] OT: How to implement a yearly subscription system for ICS server

2006-12-16 Thread Fastream Technologies
Hello, Since the release of our software in the midst of 2003, we have not reasked for money from customers--they have been using it with just one payment and that's something we did not promise. I want to have them charged every year beginning from 2008 and to do that, we need to get the code rol

Re: [twsocket] Service dependency problem re-occurred.

2006-12-16 Thread Fastream Technologies
Also, depending on RPCss sometimes fail on some Windows configs which can run Winsock software! FYI... On 12/13/06, Arno Garrels <[EMAIL PROTECTED]> wrote: > Fastream Technologies wrote: > > Hello, > > > > Our clients using Windows 2003 complain that the lastest beta

[twsocket] Need help with THttpCli

2006-12-21 Thread Fastream Technologies
Hello, We want to reuse THttpCli after a request ends (either aborted or normal) in a MR HTTP reverse proxy. We also want to reuse non-aborted sockets so as to keep the socket open in another repository thread. Here is my logic: I first override, void __fastcall httpClient::StateChange(THttpStat

Re: [twsocket] Fw: TFtpCli

2006-12-22 Thread Fastream Technologies
Hello, This is a bug in BCB: make sure you/he deletes the references to BCBSMP in the project file using Notepad and he must save the file using ANSI encoding not Turkish/Russian/Chinese Best Regards, SZ On 12/21/06, Arno Garrels <[EMAIL PROTECTED]> wrote: > > - Original Message - >

[twsocket] Problem in Java compatibility in HTTP digest auth

2007-01-03 Thread Fastream Technologies
Hello, We received some reports that Java applets do not work with ICS THttpServer digest auth. I debugged the code and it seems that Java does not pass "nc=" and "qop=" arguments. What should they be assumed as? Is this a bug in Java? Yet still, shouldn't we be compatible with such a widely us

Re: [twsocket] Problem in Java compatibility in HTTP digest auth

2007-01-04 Thread Fastream Technologies
Hello Arno, - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, January 04, 2007 9:25 PM Subject: Re: [twsocket] Problem in Java compatibility in HTTP digest auth > Fastream Technologies wrote: >

[twsocket] Fw: Need help with Nov 11 V6 Beta installation under bcb 2006

2007-01-10 Thread Fastream Technologies
Resending... - Original Message - From: "Fastream Technologies" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Tuesday, January 09, 2007 10:38 AM Subject: Need help with Nov 11 V6 Beta installation under bcb 2006 > Hello Francois, > > Now I dow

Re: [twsocket] Fw: Need help with Nov 11 V6 Beta installation underbcb2006

2007-01-10 Thread Fastream Technologies
upport for HTTP-proxy was added to TWSocket. Have you added > OverbyteIcsWinsock2.pas to your custom package? > > --- > Arno Garrels [TeamICS] > http://www.overbyte.be/eng/overbyte/teamics.html > > > Fastream Technologies wrote: >> Resending... >> >> - Or

[twsocket] Need help with Nov 11 V6 Beta installation under bcb 2006

2007-01-10 Thread Fastream Technologies
Hello Francois, Now I downloaded directly from your web site, I have the component package not compiling: Build [Pascal Error] OverbyteIcsWinsock2.pas(159): E2003 Undeclared identifier: 'TListNotification' [Pascal Error] OverbyteIcsWinsock2.pas(252): E2003 Undeclared identifier: 'lnDeleted'

Re: [twsocket] Fw: Need help with Nov 11 V6 Beta installation underbcb2006

2007-01-10 Thread Fastream Technologies
to your custom package? > > --- > Arno Garrels [TeamICS] > http://www.overbyte.be/eng/overbyte/teamics.html > > > Fastream Technologies wrote: >> Resending... >> >> - Original Message - >> From: "Fastream Technologies" <[EMAIL PROTECTED]&g

Re: [twsocket] Fw: Need help with Nov 11 V6Betainstallationunderbcb2006

2007-01-12 Thread Fastream Technologies
p://www.overbyte.be > > > > - Original Message - > From: "Arno Garrels" <[EMAIL PROTECTED]> > To: "ICS support mailing" ; "Fastream Technologies" > <[EMAIL PROTECTED]> > Sent: Thursday, January 11, 2007 7:48 PM > Subject: R

Re: [twsocket] HTTP/1.1 Digest auth bug was: Need help with Nov11V6Betainstallationunderbcb2006

2007-01-12 Thread Fastream Technologies
/www.overbyte.be > > - Original Message - > From: "Fastream Technologies" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Friday, January 12, 2007 12:38 PM > Subject: Re: [twsocket] Fw: Need help with Nov > 11V6Betainstallationunderbcb2006 &

Re: [twsocket] Throughput problem with TWSocket over a "long line"

2007-01-16 Thread Fastream Technologies
I think your problem should be in the message pump. What do you use for that in your thread? When I switched to GetMessage from PeekMessage, I was WOW! Regards, SZ - Original Message - From: "Tobias Rapp" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Tuesday, January 16, 2007 12

Re: [twsocket] Throughput problem with TWSocket over a "long line"

2007-01-16 Thread Fastream Technologies
Ok I think the problem is in sliding windows then. Make sure the receiving client/server has a large sliding window. There is a way to calculate it but I am not sure of the exact formula. Something related with the round trip times and bandwidth. Sliding windows _should_ be explained in wikipedi

[twsocket] Crash (hang) under heavy load after 1 hour problem for server service

2007-01-27 Thread Fastream Technologies
Hello, IQRP 1.3.5beta has a serious problem: when a client in Russia who has up to 200 concurrent users all the time leaves the server for 1-2 hours, it hangs with 0% CPU usage in such a way that he cannot stop the service OR kill the process from task manager (it says "Access denied"). I wonde

Re: [twsocket] Crash (hang) under heavy load after 1 hour problem forserver service

2007-01-27 Thread Fastream Technologies
Thanks for the reply. This is a service application, not a service. I wonder why Eurekalog cannot produce any error report for this--it has an option for "freeze". On 1/27/07, Arno Garrels <[EMAIL PROTECTED]> wrote: > Fastream Technologies wrote: > > Hello, > > &

Re: [twsocket] Crash (hang) under heavy load after 1 hourproblemforserver service

2007-01-27 Thread Fastream Technologies
- Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, January 27, 2007 9:12 PM Subject: Re: [twsocket] Crash (hang) under heavy load after 1 hourproblemforserver service > Fastream Technologies wrote: >&

Re: [twsocket] Crash (hang) under heavy load after1hourproblemforserver service

2007-01-27 Thread Fastream Technologies
service by rebooting!!! Best Regards, SZ - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, January 27, 2007 9:50 PM Subject: Re: [twsocket] Crash (hang) under heavy load after1hourproblemforserver service &

Re: [twsocket] Crash (hang) under heavyloadafter1hourproblemforserver service

2007-01-28 Thread Fastream Technologies
- Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Sunday, January 28, 2007 11:01 AM Subject: Re: [twsocket] Crash (hang) under heavyloadafter1hourproblemforserver service > Fastream Technologies wrote: >>

Re: [twsocket] Crash (hang) under heavyloadafter1hourproblemforserver service

2007-01-28 Thread Fastream Technologies
disconnected very well (so they are sent back to pool and everything is clear, it can shut down) but when I test on Windows XP Pro x64 Eval, it cannot detect the clients get disconnected so does not shut down. Still it is killable by task manager. Best Regards, SZ On 1/28/07, Fastream Technologies <[EM

[twsocket] How does a paused socket determine disconnection?

2007-01-29 Thread Fastream Technologies
Hello, Is it when it resumed or immediately? I thought I knew the answer but I feel confused after 10 hours. Best Regards, SZ -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overby

[twsocket] Strange exception that could only be seen in release mode due to the need for stress testing to reproduce it

2007-01-30 Thread Fastream Technologies
Hello, As the title says, in my WSocketMT/HTTPMT class which I also uploaded to http://www.fastream.com/ics, the latest version includes code such as, {* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *} function TCustomWSocketMTServer.AfterClientCreated( Client : T

[twsocket] THttpMTServer problem with Dup

2007-02-01 Thread Fastream Technologies
Hello, I have the following function called from worker thread context (NewHSocket passed with a message): function TCustomWSocketMTServer.AfterClientCreated( Client : TWSocketMTClient; Error: Word; NewHSocket: integer) : boolean; var currentClientCount: integer; currentMaxClients: i

Re: [twsocket] THttpMTServer problem with Dup

2007-02-01 Thread Fastream Technologies
zed_closesocket(FHSocket); >FHSocket := INVALID_SOCKET; >if iStatus <> 0 then begin >SocketError('Dup (closesocket)'); >Exit; >end; > > ChangeState(wsClosed); >end; >FHsocket := NewHSocket; > .. >

Re: [twsocket] THttpMTServer problem with Dup

2007-02-01 Thread Fastream Technologies
ket] THttpMTServer problem with Dup > Fastream Technologies wrote: > >>> I don't know this exception message, do you mean "List index out of >>> bounds()"? >> >> Yes, exactly. > > So most likely you hit a synchronization bug in your code, ha

Re: [twsocket] THttpMTServer problem with Dup

2007-02-01 Thread Fastream Technologies
February 01, 2007 6:42 PM Subject: Re: [twsocket] THttpMTServer problem with Dup > Fastream Technologies wrote: >> Q: Do one need to protect Terminated variable of TThread and >> Terminate() as well? > > No, read/write of property Terminated should be atomic, so you >

Re: [twsocket] THttpMTServer problem with Dup

2007-02-02 Thread Fastream Technologies
MadExcept did not help. :(( - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, February 02, 2007 10:47 AM Subject: Re: [twsocket] THttpMTServer problem with Dup > Fastream Technologies wrote: >> The

Re: [twsocket] TPing with Windows Vista?

2007-02-04 Thread Fastream Technologies
It worked fine under Vista Ultimate. Regards, SZ - Original Message - From: "Dennis Powering" <[EMAIL PROTECTED]> To: Sent: Sunday, February 04, 2007 4:58 PM Subject: [twsocket] TPing with Windows Vista? > Hello, > > as far as I know, the ICS TPing uses icmp.dll to send an ping. That

[twsocket] Possible bug and solution in TWndControl

2007-02-05 Thread Fastream Technologies
Hello, When I use the following thread code: void __fastcall ReverseProxyClientThread::Execute() { // Place thread code here FreeOnTerminate = true; ... TIcsWndHandler *windowHandler = new TIcsWndHandler(); windowHandler->MsgLow = WM_APP + 100; while(!Terminated) messagePump();

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-05 Thread Fastream Technologies
Hello Arno, - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Monday, February 05, 2007 1:24 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies wrote: >> Hello, &g

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-05 Thread Fastream Technologies
message, receiver is a window > > --- > Arno Garrels [TeamICS] > http://www.overbyte.be/eng/overbyte/teamics.html > > > > > > Fastream Technologies wrote: >> Hello Arno, >> >> - Original Message - >> From: "Arno Garrels" <[EMAIL PROTECTED]

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-05 Thread Fastream Technologies
it be 800 instead of 100?? Regards, SZ - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Monday, February 05, 2007 3:47 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-05 Thread Fastream Technologies
uot; Sent: Monday, February 05, 2007 5:57 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies wrote: >> Yoiu also missed that this is a service application thread with no >> other component than ICS! Even no GUI. I am unable to find the bug

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-06 Thread Fastream Technologies
Despite all have been said, I still think that 100 messages/thread is low. It should be at least 400-600. Regards, SZ - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Tuesday, February 06, 2007 2:39 PM Subject: Re: [twsocket] Possible bug a

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-06 Thread Fastream Technologies
; Sent: Tuesday, February 06, 2007 5:20 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl Fastream Technologies wrote: > Despite all have been said, I still think that 100 messages/thread is > low. > It should be at least 400-600. WH_MAX_MSG does not specify the maxim

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-06 Thread Fastream Technologies
Ok. Then there is a bug in ThreadAttach/Detach which Arno said he did not test against. Because my code is so simple! It just has three custom messages in WM_USER + 100-103 and the ICS messages are in WM_APP + 100. The only possibility is that my init code in the client thread is bad (see the f

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-07 Thread Fastream Technologies
Hello, I traced the bug to here: function TIcsWndHandlerPool.GetWndHandler( HandlerCount : UINT; ThreadID : THandle) : TIcsWndHandler; var I : Integer; L : TIcsWndHandlerList; begin // Search the list which has same thread ID I := FList.Count - 1; while (I >= 0) an

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-07 Thread Fastream Technologies
- Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, February 07, 2007 10:51 AM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies wrote: >> Ok. Then there is

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-07 Thread Fastream Technologies
Arno, - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, February 07, 2007 2:43 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies wrote: > >> I did not

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-07 Thread Fastream Technologies
Hello, - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, February 07, 2007 3:11 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies wrote: >> Arno, >>

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-07 Thread Fastream Technologies
nt: Wednesday, February 07, 2007 3:11 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies wrote: >> Arno, >> >> - Original Message - >> From: "Arno Garrels" <[EMAIL PROTECTED]> >> To: "IC

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-07 Thread Fastream Technologies
riginal Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, February 07, 2007 3:11 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies wrote: >> Arno, >> >> - Original M

Re: [twsocket] Possible bug and solution in TWndControl

2007-02-07 Thread Fastream Technologies
gards, SZ - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, February 07, 2007 3:11 PM Subject: Re: [twsocket] Possible bug and solution in TWndControl > Fastream Technologies wrote: >> Arno, &g

Re: [twsocket] TFtpClient retrieve file size for progress bar

2007-02-15 Thread Fastream Technologies
Hello, Some old FTP servers do not support the SIZE command as it is not mandatory in RFC959. Yuo will need to use a parser and parse LS response. Regards, SZ - Original Message - From: "Michael Fritz" <[EMAIL PROTECTED]> To: Sent: Thursday, February 15, 2007 12:20 PM Subject: [twsoc

Re: [twsocket] SSL ErrCode 3

2007-02-21 Thread Fastream Technologies
There is an SSL mailing list dedicated to those components. Regards, SZ - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Wednesday, February 21, 2007 4:20 PM Subject: [twsocket] SSL ErrCode 3 > Hello, > > I have a problem using TSslHttpCli + TSslContext components. > I establ

Re: [twsocket] Performance on the latest ICS V6

2007-02-23 Thread Fastream Technologies
Hello Bjornar, We use multi-threaded v6 with NOFORMS;USE_SSL;NO_DEBUG_LOG;SECURITY_WIN32 in defines and it shows ~15% faster performance. Then we do THttpConnection-descendent object and thread pooling and get 3500 connections/sec on Core 2 Duo 2.4GHz 2GB DDR2. Apache makes a mere 2600 connect

Re: [twsocket] FReadCount and overflows

2007-02-23 Thread Fastream Technologies
Hello, We do reset ReadCount while sending the objects to pool because otherwise sometimes garbage is served. I know that this is a workaround not a fix. Best Regards, SZ - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, February 23

Re: [twsocket] FReadCount and overflows

2007-02-23 Thread Fastream Technologies
- Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, February 23, 2007 10:29 PM Subject: Re: [twsocket] FReadCount and overflows > Fastream Technologies wrote: >> Hello, >> >> We do re

[twsocket] Slightly OT: How many of you agree that 2GB memory limit of 32-bit BDS code is insufficient?

2007-02-25 Thread Fastream Technologies
Hello, Just trying to learn how other Borland coders building ICS servers are feeling about it. Best Regards, SZ -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] Slightly OT: How many of you agree that 2GB memorylimitof 32-bit BDS code is insufficient?

2007-02-25 Thread Fastream Technologies
general question into delphi@elists.org mailing list, > or > on non-tech newsgroup at borland. > > -- > [EMAIL PROTECTED] > The author for the freeware multi-tier middleware MidWare > The author of the freeware Internet Component Suite (ICS) > http://www.overbyte.b

[twsocket] Project proposal

2007-02-27 Thread Fastream Technologies
Dear Francois, Before detailing the project, I want to learn if principally you can do the following and when can you start: - We plan to port our reverse proxy/HTTP/FTP servers to Linux 2.6 Kernel. It is specifically 2.6 because according to my research it includes advanced async I/O similar

Re: [twsocket] Project proposal

2007-02-27 Thread Fastream Technologies
ment. > > -- > Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > > > - Original Message - > From: "Fastream Technologies" <[EMAIL PROTECTED]> > To: "ICS

Re: [twsocket] FTP Client specifying a port and getting a 10060 error...

2007-02-27 Thread Fastream Technologies
This is a question we as a producer of a FTP server come accross every day. You need to use PASV mode on the client side and manual PASV mode on the server-side (defined/forwarded PASV ports. This feature was added in 2006). Regards, SZ - Original Message - From: "[EMAIL PROTECTED]" <

Re: [twsocket] Don't trust routers!

2007-03-02 Thread Fastream Technologies
We -in our code- implement/interpret a connection timeout as "idle timeout". Could this be the case in Lancom as well? Best Regards, SZ - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Friday, March 02, 2007 2:31 PM Subject: [twsocket] Don'

Re: [twsocket] Don't trust routers!

2007-03-02 Thread Fastream Technologies
Subject: Re: [twsocket] Don't trust routers! > It's an idle time-out yes. > > Fastream Technologies wrote: >> We -in our code- implement/interpret a connection timeout as "idle >> timeout". Could this be the case in Lancom as well? >> >>

Re: [twsocket] Project proposal

2007-03-02 Thread Fastream Technologies
Unix machine. Agreed. None of the boxed servers' software is Windows on the market. Best Regards, SZ > > > /Tobias > > Fastream Technologies wrote: >> Dear Francois, >> >> Before detailing the project, I want to learn if principally you can do >> the >

Re: [twsocket] TWSocket not connecting for me

2007-03-08 Thread Fastream Technologies
Do you have a message pump in the thread.execute? Regards, SZ - Original Message - From: "info2004" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, March 08, 2007 6:46 PM Subject: [twsocket] TWSocket not connecting for me > Hi, > > I have a problem with TWSocket.State

Re: [twsocket] TWSocket not connecting for me

2007-03-08 Thread Fastream Technologies
ct: Re: [twsocket] TWSocket not connecting for me > SZ, > > Erm, I guess not. What do I need for that or where do I go to find out? > > Regards, > > Andy > Fastream Technologies wrote: >> Do you have a message pump in the thread.execute? >> >> Regards, >>

Re: [twsocket] TWSocket not connecting for me

2007-03-08 Thread Fastream Technologies
source and decided to use TWSocket.ProcessMessages > in my Thread.Execute loop. > > This seemed to work. The socket connects and I send my data.Are there > going to be any pitfalls in doing this? > > Thanks for the help. > > regards, > > Andy > Fastream Technologies

Re: [twsocket] TWSocket not connecting for me

2007-03-08 Thread Fastream Technologies
I do not think TWSocketServer is thread-safe! Am I wrong? Regards, SZ - Original Message - From: "info2004" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Thursday, March 08, 2007 9:45 PM Subject: Re: [twsocket] TWSocket not connecting for me > Francois, > Francois PIETTE wrote

[twsocket] Problem with web server socket closing after erroneous send

2007-03-09 Thread Fastream Technologies
Hello, I have the following scenario: 1) Send() called 2) 10054 returned 3) Immediately by ICS OnClientClosed called 4) I detect the error in socket What should I do now? Should I call shutdown? Will the onclosed be called again if I do so? Which event will it call if not? Meanwhile, when error

Re: [twsocket] Problem with web server socket closing aftererroneous send

2007-03-09 Thread Fastream Technologies
[TeamICS] > http://www.overbyte.be/eng/overbyte/teamics.html > http://www.mestdagh.biz > > Friday, March 9, 2007, 11:10, Fastream Technologies wrote: > >> Hello, > >> I have the following scenario: > >> 1) Send() called >> 2) 10054 returned >> 3) Imm

Re: [twsocket] How to handle a Keep-Alive connection withoutContent-Length in a header?

2007-03-10 Thread Fastream Technologies
AFAIK, unless there is content-length header or chunked encoding, the connection is "close" and cannot be keep-alive since the browser understands the end of data when the socket is closed. Best Regards, SZ - Original Message - From: "S.Korotky" <[EMAIL PROTECTED]> To: "ICS support ma

Re: [twsocket] Problem with web server socket closingaftererroneoussend

2007-03-12 Thread Fastream Technologies
PM Subject: Re: [twsocket] Problem with web server socket closingaftererroneoussend > Fastream Technologies wrote: >> Do I need to call shutdown on an errenous socket? > > Not needed. 10054 Connection reset by peer doesn't mean > an error, the peer simply hung up the line. > &

[twsocket] Bug in MT THttpConnection close logic

2007-03-13 Thread Fastream Technologies
Hello, I have a modified THttpServer called THttpMTServer. In thic component, there are worker threads which are pooled and connection objects (THttpMTConnection) which are also pooled. I have the following code called from ConnectionDataSent: void __fastcall httpServerClientClass::ConnectionD

Re: [twsocket] Bug in MT THttpConnection close logic

2007-03-14 Thread Fastream Technologies
gracefully within some time, then you should > abort the connection. > > -- > [EMAIL PROTECTED] > Author of ICS (Internet Component Suite, freeware) > Author of MidWare (Multi-tier framework, freeware) > http://www.overbyte.be > > - Original Message - > From:

Re: [twsocket] Bug in MT THttpConnection close logic

2007-03-14 Thread Fastream Technologies
e sessionc closed gracefully within some time, then you should > abort the connection. > > -- > [EMAIL PROTECTED] > Author of ICS (Internet Component Suite, freeware) > Author of MidWare (Multi-tier framework, freeware) > http://www.overbyte.be > > - Original Message - &g

Re: [twsocket] Bug in MT THttpConnection close logic

2007-03-14 Thread Fastream Technologies
tDown(1) and subsequently > close the socket handle as well as triggers SessionClosed > as needed. So far I had no problems with calling Close given > all data has been sent before (that is calling it from event > DataSent). > > -- > Arno Garrels [TeamICS] > http://www.overbyte.b

Re: [twsocket] Threads

2007-03-15 Thread Fastream Technologies
Hello, - Original Message - From: "Angus Robertson - Magenta Systems Ltd" <[EMAIL PROTECTED]> To: Sent: Thursday, March 15, 2007 7:04 PM Subject: [twsocket] Threads > While I avoid threads in server applications, I'm writing a new tool that > will > be contacting up to 100 remote serv

[twsocket] Free tool for Web Stress Testing

2007-03-17 Thread Fastream Technologies
Hello, After two days of somehow-hard work, I coded http://www.fastream.com/ics/WebStressTester.zip. It can generate 4000 hits/sec on local-to-local against IQ Web Server. I may give up the source as well but it is in C++ and I do not want to harm anybody's network with this tool as it could b

  1   2   3   4   5   6   7   8   9   10   >