[twsocket] Fw: Two lines of same ?? (SmtpProt.pas)

2006-10-30 Thread Arno Garrels
- Original Message - From: "Ilkka Ericsson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 31, 2006 5:45 AM Subject: Two lines of same ?? Hej! I am new on the list and mail directly to this address is my bee the wrong way but I can´t find any other way for the moment

Re: [twsocket] DNSLookup

2006-10-30 Thread Rob Ashburn
>> Which leads to the obvious question of how to make a whois query >> programatically. Michael, Angus, many thanks for the info - much appreciated! I'll take a look at it tomorrow and see what I can come up with. Rob Ashburn. -- To unsubscribe or change your settings for TWSocket mailing lis

Re: [twsocket] DNSLookup

2006-10-30 Thread Angus Robertson - Magenta Systems Ltd
> Which leads to the obvious question of how to make a whois query > programatically. I did an ICS Whois component a few years ago: http://www.magsys.co.uk/download/software/whois.zip For COM domains, it does a double lookup to return Whois from the actual registrar. But you do have to choos

Re: [twsocket] Having a ICS TServiceApplication server survive a standby (sligh

2006-10-30 Thread Angus Robertson - Magenta Systems Ltd
> In applications you can handle the WM_POWERBROADCAST message but > I'm not sure if it works with a service. Yes, services receive power broadcast messages and can use them to reset things. But the only issue I've ever found is with TAPI modem monitoring, the modems get powered off during stan

Re: [twsocket] DNSLookup

2006-10-30 Thread Michael Preslar
> I've done a little (so far) poking around in the relevant RFCs, and making > the actual query looks relatively straight forward. What I'm not sure about > is what server(s) to query? To date I've only every used web based services > like samspade or whois services hosted by domain registrars,

Re: [twsocket] DNSLookup

2006-10-30 Thread Rob Ashburn
> WHOIS shows the reserved domains owners perfectly. But some ICANN approved > comanies such as Dotster and Godaddy offer "privacy" option which prevents > the display of owner data such as name, address, and email. That sounds ideal for my purposes. I don't need to know who the domain is registe

Re: [twsocket] Having a ICS TServiceApplication server survive a standby (slightly OT)

2006-10-30 Thread Jack
In applications you can handle the WM_POWERBROADCAST message but I'm not sure if it works with a service. -- Best regards, Jack Monday, October 30, 2006, 1:30:21 PM, you wrote: > Hello Fastream, > Could be XP bugs. I have done a few times a standby on XP and dont do it > again as some services

Re: [twsocket] Having a ICS TServiceApplication server survive a standby (slightly OT)

2006-10-30 Thread Wilfried Mestdagh
Hello Fastream, Could be XP bugs. I have done a few times a standby on XP and dont do it again as some services seems to stop working. --- Rgds, Wilfried [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html http://www.mestdagh.biz Monday, October 30, 2006, 16:17, Fastream Technologies wrot

Re: [twsocket] TWSocket - OnDataSent and ReadCount

2006-10-30 Thread Wilfried Mestdagh
Hello John, > I seem to get the OnDataSent event when I initially connect to a socket and > before sending any data - is this correct? Yes this is correct. There is data deliverd to initiate the connection, so winsock generates this event. > I am confused as to what the ReadCount is Where is th

Re: [twsocket] SmtpProt memory leak

2006-10-30 Thread Arno Garrels
Arno Garrels wrote: > > I fixed this bug in October in both V5 and V6. Sorry, not in October but in August. > http://www.duodata.de/misc/delphi/SmtpProt_08132006.zip > > The problem is that TStrings.Text is not available in Delph1, > that's why Francois exchanged my line "if Length(FMailMessage

Re: [twsocket] SmtpProt memory leak

2006-10-30 Thread Arno Garrels
Efird Jr, Carl R (O7K) wrote: > I found that SmtpProt (v5, v5 beta, and v6 beta) has a memory leak in > TSmtpCli.PrepareEMail. I fixed this bug in October in both V5 and V6. http://www.duodata.de/misc/delphi/SmtpProt_08132006.zip The problem is that TStrings.Text is not available in Delph1, that

[twsocket] SmtpProt memory leak

2006-10-30 Thread Efird Jr, Carl R (O7K)
I found that SmtpProt (v5, v5 beta, and v6 beta) has a memory leak in TSmtpCli.PrepareEMail. Memory is allocated but not released for each email Sent: unencoded: slightly larger than the body of the email, encoded: slightly larger than twice the body of the email. The current source is: {*

Re: [twsocket] TWSocket - OnDataSent and ReadCount

2006-10-30 Thread Francois PIETTE
>I seem to get the OnDataSent event when I initially connect to a socket and > before sending any data - is this correct? Yes. OnDataSent is triggered when all data has been sent /and/ at the start of connection when the component is ready to send something. > I am confused as to what the ReadCo

Re: [twsocket] Thread Opinion

2006-10-30 Thread Michael Preslar
Angus Robertson - Magenta Systems Ltd wrote: >> Do you mind if I reply via private email? > > No problem. Email sent.. I wrote it last night while the thoughts were fresh in my mind.. Sorry for it being so long! >> I'm afraid this particular topic may quickly run away from the ICS >> mailing

Re: [twsocket] DNSLookup

2006-10-30 Thread Fastream Technologies
WHOIS shows the reserved domains owners perfectly. But some ICANN approved comanies such as Dotster and Godaddy offer "privacy" option which prevents the display of owner data such as name, address, and email. Best Regards, SZ - Original Message - From: "Francois PIETTE" <[EMAIL PROTE

Re: [twsocket] DNSLookup

2006-10-30 Thread Francois PIETTE
There can be a lot of "reserved" domain names. Companies reserve the domain name (that is pay for it but do not really use it) either to avoid someone else using it or like an investment (that is for selling it later). I'm not sure whois return anything for such "reserved" domain name. -- [EMAI

[twsocket] TWSocket - OnDataSent and ReadCount

2006-10-30 Thread John Barrat
I seem to get the OnDataSent event when I initially connect to a socket and before sending any data - is this correct? I am confused as to what the ReadCount is. Is it simply a sum of all the bytes which have been read by the Received method since the session was started or is the number of byte

Re: [twsocket] DNSLookup

2006-10-30 Thread Rob Ashburn
>A domain name can't be used if there is no DNS server delivering IP > addresses for it. > Of course it can exists on paper but it is of no use to access any > service. Hi Fancois, I suspected as much. However, in this case, the existence of the domain on paper is also important - the purpose o

[twsocket] Very slow attachment after then last ver. of ICS

2006-10-30 Thread Ilkka Ericsson
In erlier versions of ICS it vas a normal time to send attachments. But now !! I use OverbyteIcsMailsend-demo as mall for my programs. It take 100 times longer time sänd. Whats wrong ? Ilkka -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mai

[twsocket] Having a ICS TServiceApplication server survive a standby (slightly OT)

2006-10-30 Thread Fastream Technologies
Hello, I wonder why this behavior occurs: - I have a service that runs in its own process - It works fine until I standby my WinXP Pro x64 Build 2003 - When returns, it simply does not respond and could not be shut down using "net stop ..."--only task manager works. Any idea? Best Regards, SZ

Re: [twsocket] DNSLookup

2006-10-30 Thread Francois Piette
A domain name can't be used if there is no DNS server delivering IP addresses for it. Of course it can exists on paper but it is of no use to access any service. Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] Author of ICS (Internet Component Suite, fr

Re: [twsocket] DNSLookup

2006-10-30 Thread Rob Ashburn
>A domain name exists on the internet only when a DNS server is able to give > an IP address. Hi Francois, Thanks for that, but what about detagged domains? The domain exists, but doesn't have a registrar / DNS server associated with it. Is there any way to tell the difference between a domain

Re: [twsocket] Thread Opinion

2006-10-30 Thread Angus Robertson - Magenta Systems Ltd
> Do you mind if I reply via private email? No problem. > I'm afraid this particular topic may quickly run away from the ICS > mailing list topic(s) It is a question asked probably once a month, albeit some people may get bored by the same answers each month. Angus -- To unsubscribe or ch