Re: [twsocket] ICS V7 and the missing ''DesignIntf.dcu''

2008-03-16 Thread Arno Garrels
Kris Schoofs wrote: > Hi, > > I'm attempting to install ICS V7 using Codegear C++ Builder 2007. > However, I run into following error: > > [DCC Error] OverByteIcsWSocketE.pas(87): F1026 File not found: ' > DesignIntf.dcu' > > A search for a solution gave me this: >> You need to add -LUDesigneIde

Re: [twsocket] Reverse Proxy NTLM-on-web-server problem

2008-03-16 Thread Arno Garrels
BTW: Connection: Keep-Alive is the default value in HTTP/1.1! -- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html Fastream Technologies wrote: > Yes I realized that after sending the message. Then I sent the below > message, have you received it?: > > Let me report more

Re: [twsocket] ICS V7 and the missing ''DesignIntf.dcu''

2008-03-16 Thread Kris Schoofs
On Sun, Mar 16, 2008 at 9:02 AM, Arno Garrels <[EMAIL PROTECTED]> wrote: > I added "DesignIDE" to Delphi Compiler | Other Options | Use these > packages when compiling, > which did the trick. > This indeed did the trick. Thanks. Kris -- To unsubscribe or change your settings for TWSocket mailing

Re: [twsocket] Reverse Proxy NTLM-on-web-server problem

2008-03-16 Thread Fastream Technologies
Here: https://issues.apache.org/bugzilla/show_bug.cgi?id=39673 it mentions about connection pooling as the cause. We pool socket objects as well but not sure if it is the same thing. The same connection is used as the first request for keep-alive requests in our case. I also checked with sniffer a

[twsocket] httpserver memoryleak

2008-03-16 Thread George
Hello, I'm using ICS HttpServer and I have a code: ClientCnx.DocStream := TMemoryStream.Create; ClientCnx.DocStream.Write(Header[1], Length(Header)); ClientCnx.DocStream.CopyFrom(MS2, MS2.Size); MS2.Free; ClientCnx.SendStream; Some times the FastMM memory leak tool reports memory leak

Re: [twsocket] httpserver memoryleak

2008-03-16 Thread Francois PIETTE
> Why? do I have to release this stream? Of course you have ! > Where is the place to do it? When it has been sent and you don't need it anymore. For example from the OnRequestDone event handler. -- [EMAIL PROTECTED] The author of the freeware multi-tier middleware MidWare The author of the f

Re: [twsocket] httpserver memoryleak

2008-03-16 Thread George
Hello, and how can I know which memorystream is that? I'm sending many requests at the same time!! Thanks - Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Sunday, March 16, 2008 10:18 PM Subject: Re: [twsocket] httpserver memoryleak >>

Re: [twsocket] httpserver memoryleak

2008-03-16 Thread George
I tried: ClientCnx := TMyHttpConnection(Client); if Assigned(ClientCnx.DocStream) then ClientCnx.DocStream.Free; and FastMM complains: FastMM has detected an attempt to call a virtual method on a freed object. An access violation will now be raised in order to abort the current operati

Re: [twsocket] httpserver memoryleak

2008-03-16 Thread RTT
You have to nil the stream object if Assigned(ClientCnx.DocStream) then begin ClientCnx.DocStream.Free; ClientCnx.DocStream:=nil; end; of just Uses SysUtils; if Assigned(ClientCnx.DocStream) then freeandnil(ClientCnx.DocStream) > I tried: > > ClientCnx := TMyHttpConnection(Client)

Re: [twsocket] ICS V7 and the missing ''DesignIntf.dcu''

2008-03-16 Thread Éric Fleming Bonilha
When do ICS V7 was released?? Where can I download Éric - Original Message - From: "Kris Schoofs" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Saturday, March 15, 2008 4:23 PM Subject: [twsocket] ICS V7 and the missing ''DesignIntf.dcu'' > Hi, > > I'm attempting to install ICS V