Re: [twsocket] Can't reconnect TftpClient

2006-08-09 Thread Francois Piette
What if you try with FtpTst sample program delivered with ICS ? Are you able to reconnect after the first disconnect ? If not, then you have something broken in your ICS installtion. If yes, then there is something wrong in your own code and it is difficult to tell you what without seeing it. Cont

Re: [twsocket] Hanging TNCNX component

2006-08-09 Thread Francois Piette
> I call my DLL from a perl script, so i don't know how to debug that in XP. > But I made a Delphi test appl now, and there it works without hangings. No problem to debug from a perl script. Open your DLL project in Delphi. >From the execute menu, select parameters and enter your perl script inter

Re: [twsocket] OT; Delphi Turbo

2006-08-09 Thread Jack
However, it sounds like Borland is putting the limitations in the wrong places in the free versions. Users can not install components into the IDE? If it is what I think it is, that's taking the strength away from tools like Delphi. The MS VS Express editions' limitation is that you can not access

[twsocket] Can't reconnect TftpClient

2006-08-09 Thread A49 Consultants
My problem is essentially very simple and It has been asked a number of times before but i just don't understand the answers. If i connect an ftpclient, upload some files, and disconnect, then everything is fine If I attempt to reconnect It simply doens't work the memo output is as below < 257 "

Re: [twsocket] OT; Delphi Turbo

2006-08-09 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: > Borland seems to be making some announcements today: Looks like an answer to the Express versions of M$ VS. Anyway Borlands IDE branche seems to be alive. That's really nice news. --- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics

Re: [twsocket] Hanging TNCNX component

2006-08-09 Thread Peter Calum
Hi I call my DLL from a perl script, so i don't know how to debug that in XP. But I made a Delphi test appl now, and there it works without hangings. I have a DLL with a ICS FTP client and a DLL with a ICS Telnet Client and they both make the same hanging when called from perl scripts. My other D

Re: [twsocket] Connection SPY

2006-08-09 Thread Marcelo Grossi
Sorry about the out of topicness. Marcelo Grossi - Original Message - From: "Francois Piette" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Wednesday, August 09, 2006 10:19 AM Subject: Re: [twsocket] Connection SPY >> Do you guys know any program that traces a connection to

Re: [twsocket] Minimum Events Required

2006-08-09 Thread Allan Fernandes
Actually the memory leakage is not with the TFTPServer or the way I was using it. The Problem was with TMemoryStatus which was showing rapid depletion of memory on Win98. Please accept my apologies for wasting your time. Regards Allan ___

Re: [twsocket] Connection SPY

2006-08-09 Thread Francois Piette
> Do you guys know any program that traces a connection to see if its > blocked (firewall/proxy) and indicate where it is being blocked? To use > where "PING" is blocked (so no "TRACERT")? If I understand the question, it is quite out of topic :-( A firewall usually just drop the packet withou

Re: [twsocket] Hanging TNCNX component

2006-08-09 Thread Francois Piette
> But my calling application is still hanging. Where is it hanging ? Use the debugger to single step thru TTnCnx destructor and try to understand where (if it is this component that hangs) it hangs. While it is hanged, you may hit "Pause" in the debugger and see what it is doing at that time, prob

[twsocket] Connection SPY

2006-08-09 Thread Marcelo Grossi
Hi, Do you guys know any program that traces a connection to see if its blocked (firewall/proxy) and indicate where it is being blocked? To use where "PING" is blocked (so no "TRACERT")? Thanks in advance, Marcelo Grossi -- To unsubscribe or change your settings for TWSocket mailing list

Re: [twsocket] Hanging TNCNX component

2006-08-09 Thread calum
Hi That is also what i am doing in the DLL DETACH method DLL_PROCESS_DETACH: > > begin // unloading dll better cleanup > > Logwrite(´Kalder DLL Detach´); > > DllForm.free; Here is TNCNX placed > > end; i have tried DLL_PROCESS_DETACH: begin // unloadi

Re: [twsocket] Hanging TNCNX component

2006-08-09 Thread Francois Piette
A component dropped on a form should not be freed by hand. The form will automatically destroy it when the form itself is destroyed. If you want to free a component dropped on a form, use FreeAndNil. Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] Autho

[twsocket] Hanging TNCNX component

2006-08-09 Thread Peter Calum
Hi all I have a problem regarding how to free TNCNX component correctly. I have created a DLL which have a hidden form with a TNCNX component on. Everything works fine, connect telnet commands, disconnect and so, but when the calling application terminates, the TNCNX is not destroyed prob