Re: [twsocket] Error Message when using TSmtpCli

2014-01-05 Thread Florian Hector
Then likely an old version of ICS is found. Make sure that the library path ( Tools | EnvironmentOptions ) does include either the path to the output directory that contains the right dcu files, this is by default icsroot\Lib\Debug\Win32\D7 *or* both the path to icsroot\Source and

[twsocket] Nagios like communication

2014-06-09 Thread Florian Hector
Hi, I would like to implement a new feature into one of my applications where I can ask for a status through a (VPN)network connection, kind of like Nagios does. Or maybe even build functionality into it so that it can be queried by Nagios. Which methods/components should I go with? Florian

Re: [twsocket] Nagios like communication

2014-06-09 Thread Florian Hector
Angus, Sorry, I should have explained better the first time. My application collects data from industrial PLC's via OPC, it is running on quite a number of clients which I cannot constantly check manually. I already have functions to detect failure conditions like no connection to the PLC or

Re: [twsocket] Nagios like communication

2014-06-25 Thread Florian Hector
which can be integrated into Nagios-compatible tools with the check_tcp plugin [1]. The OverbyteIcsTcpSrv.dpr ICS demo might be helpful as a starting point here. Tobias, which component can be used as client to talk to the above server component. Building an http server into my program

[twsocket] Error when building an answer page

2014-08-31 Thread Florian Hector
Hi, I am trying to create a virtual document where also the number and names of the tags can vary at runtime. When I build the answer page with a fixed number of tag like this: ClientCnx.AnswerPage(Flags, '', '',

Re: [twsocket] Error when building an answer page

2014-08-31 Thread Florian Hector
That tags parameters needs to have an even number of elements ([Tag,Value]) and to create that tags parameter at runtime you have to use an *array of TVarRec* variable. Would you have an example of how you assign a pair of values to this array of TVarRec. Florian -- To unsubscribe or

Re: [twsocket] Error when building an answer page

2014-08-31 Thread Florian Hector
Tags[0]=Tag1 Tags[1]=Value1 Tags[2]=Tag2 Tags[3]=Value2 No luck with all sorts of ways. When I define the tags statically at design time and step through the code, the content of the variable TAGS is much different from when it is done at runtime. Why do you need to build the tags

Re: [twsocket] FTP file download done

2017-06-26 Thread Florian Hector
Hi Angus, I downloaded magxfer and the latest ICS snapshot from your website. I replaced my older version of ICS with the newest and tested some of my programs, those seem to work properly. However, when I try to install magxfer, I can compile it but when I try to install it, Delphi (7)

Re: [twsocket] FTP file download done

2017-06-26 Thread Florian Hector
Am 26.06.2017 um 16:51 schrieb Angus Robertson - Magenta Systems Ltd: >> However, when I try to install magxfer, I can compile it but when >> I try to install it, Delphi (7) >> complains about the missing package OverbyteIcsSslDel70, of which >> I cannot find any reference within ICS. > We

Re: [twsocket] FTP file download done

2017-06-27 Thread Florian Hector
> ICS has two functions UpdateFileAge and UpdateUFileAge in > OverbyteIcsFtpSrvT.pas to set the time stamp to local or UTC time > respectively. > > Of course you need the correct time stamp to start with, which depends > on the FTP server capabilities, some are better than others. UTC is >

Re: [twsocket] FTP file download done

2017-06-27 Thread Florian Hector
Am 27.06.2017 um 18:16 schrieb Angus Robertson - Magenta Systems Ltd: >> UpdateFileAge and UpdateUFileAge seem to be for the server side, >> what I need is to set the file age of the downloaded file. > They work fine in TMagFtp which is an FTP client. > > Angus > I'd love to use TMagFtp with