Re: [twsocket] SmtpCli problem with OnAttachContentType

2005-03-29 Thread Arno Garrels
, SmtpProt.pas has been updated/changed/fixed since that time when InitUUEncode was renamed. Regards, Arno Garrels -- 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] FTPClient UNIX-Server - How to setup binary mode? - isthis the right way?

2005-03-29 Thread Arno Garrels
Mice Cage wrote: I know now that I have to use the Typeset-Command. I hope I placed it now at the right place: ftpclient1.cwd; {}FtpClient1.TypeSet; Yes. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo

Re: [twsocket] Question How can I setup checkboxes to seetheFTP-Status

2005-04-16 Thread Arno Garrels
Mike McGreek wrote: You understand me wrong. I do the connect-call then the other calls. I want to know what I need minimal to get the Error-Messages and the normal messages from the server. Here a example: I connect to the server. The server send me 421 back. If it is 421 my program

Re: [twsocket] Question How can I setup checkboxes toseetheFTP-Status

2005-04-16 Thread Arno Garrels
you want best performance one should use the async/none-blocking methods, however in TFtpCli each method has also a blocking (sync) counterpart that allows you to code more like the Indy way (slow). Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http

Re: [twsocket] Question How can I setup checkboxestoseetheFTP-Status

2005-04-16 Thread Arno Garrels
but that's definitely slower than having multiple instances in a single thread. Arno Garrels I use sync methods in most of my multi-tasking applications, and they work very nicely. They also make a program probably 10 times easier to develop and maintain that using async, since you don't need

Re: Re[2]: [twsocket] Multithreaded http...

2005-04-17 Thread Arno Garrels
T2 := GetTickCount; if T2 = T1 then Result := T2 - T1 else Result := MAXDWORD - T1 + T2; end; LongWord or DWord? Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our

Re: Re[4]: [twsocket] Multithreaded http...

2005-04-20 Thread Arno Garrels
smaller project before you start a multithreaded HTTP application. BTW: This is not a Delphi tutorial list. Find out such basic things by yourself. There's an online help, there's the big FAQ Google and there are examples in your Delphi directory. Arno Garrels - Original Message - From

Re: [twsocket] Reasonable timeout

2005-04-23 Thread Arno Garrels
} optval := 1; iStatus := WSocket_Synchronized_setsockopt(FHSocket, SOL_SOCKET, SO_RCVTIMEO, @optval, SizeOf(optval)); if iStatus 0 then begin SocketError('setsockopt(SO_RCVTIMEO)'); Exit; end; Arno Garrels

Re: [twsocket] Any alternatives to multithreading?

2005-04-25 Thread Arno Garrels
for critical sections or something like that, and perhaps I still won't have any race conditions). [1] P60 and 100BaseT ethernet; or even [EMAIL PROTECTED] Well, my oldest system is a bit jounger, otherwise I would take a trial to replicate to prob. here. Arno Garrels -- Piotr Hellrayzer

Re: [twsocket] FTP client and windows service problem

2005-04-26 Thread Arno Garrels
parsing a lot, but I can't find the link at the moment:( Arno Garrels -- 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] VOIP

2005-04-26 Thread Arno Garrels
) parsing and utilities. The code currently implements most of SIP, RTP. The stack can make and receive calls from/to X-Lite, linphonec. It also connects correctly with ser, the Sip Express Router. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http

Re: [twsocket] FTP client and windows service problem

2005-04-26 Thread Arno Garrels
:) Send it to my first name@my last name.net (not .com) The link is in Francois' message as well. Arno Garrels -- 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] FTP client and windows service problem

2005-04-26 Thread Arno Garrels
etc., but when I use the same unit in a Service I'm getting false when I call the DIR function. So you are not listing an empty directory here. If the windows program was crashing I would easier debug it but in the service I cannot go step by step through the component's sources. Arno Garrels

Re: [twsocket] VOIP

2005-04-27 Thread Arno Garrels
Of Arno Garrels Sent: Tuesday, April 26, 2005 11:18 AM To: ICS support mailing Subject: Re: [twsocket] VOIP I've just found something interisting here: http://www.ictrnid.org.uk/downloads/SIP/SIP-0.3.zip The stack uses Indy 9.0.14 :( why not ICS? RNID SIP STACK

Re: [twsocket] Thread Attach

2005-05-04 Thread Arno Garrels
ThreadAttach in TThread.Execute. Arno Garrels -- 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] Out of the office until 09 May 2005

2005-05-06 Thread Arno Garrels
Markus Bartat wrote: Ich werde ab 06.05.2005 nicht im Büro sein. Ich kehre zurück am 09.05.2005. I'm out of the office until 09 May 2005 RemoveFromList(him); Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo

Re: [twsocket] TFTPClient upload problem

2005-05-17 Thread Arno Garrels
/TypeBinaryAsync? It is not enough to set property Binary only. Arno Garrels -- 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] Basic FTP send example

2005-05-17 Thread Arno Garrels
Tyson Treasure wrote: Could someone show me a very basic example of sending a file with TFTPCli? I can't seem to get it right, mine compiles, but doesn't do anything. ICS-Root\Delphi\Internet\FtpTst.dpr Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list

Re: [twsocket] Telnet

2005-05-20 Thread Arno Garrels
need a second application that service the client connection? Sounds complicated, is such a design really necessary? Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http

Re: [twsocket] [HELP] FTP Server possible bug ?

2005-05-20 Thread Arno Garrels
It's just a guess, sounds like your multithreading isn't designed well. Can you explain your thread design in your own words? Arno Garrels Guillaume MAISON wrote: Le 20 May 2005 à 16:31, Guillaume MAISON a écrit: Unless there's something obvious, i don't know why the ftpserver opens data

Re: [twsocket] [HELP] FTP Server possible bug ?

2005-05-21 Thread Arno Garrels
Client.DataStream.Write(PChar(aBuf)^, Length(aBuf)); Client.DataStream.Seek(0, 0); end; Arno Garrels It's just a guess, sounds like your multithreading isn't designed well. Can you explain your thread design in your own words? Arno Garrels well, in that case, the demo for the ftp server has

Re: [twsocket] [HELP] FTP Server possible bug ?

2005-05-21 Thread Arno Garrels
Client.DataStream.Write(PChar(aBuf)^, Length(aBuf)); Client.DataStream.Seek(0, 0); end; Arno Garrels yes i've seen it... and this demo works perfectly as expected. in my application, i still have that damn RetrDataSent triggered before RetrSessionConnected... Have you tried

Re: [twsocket] [HELP] FTP Server possible bug ?

2005-05-21 Thread Arno Garrels
help you. Arno Garrels -- 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] Interface used to reach a specific IP

2005-05-26 Thread Arno Garrels
Darin McGee wrote: The routing table on the PC holds this info. The problem is getting to the routing table programmatically. Anyone know how to? The routing table can be displayed via the ROUTE PRINT command line. ICS home - User Made - IP Helper API should do it. Arno Garrels Dairn

Re: [twsocket] E-Mail SmtpCli/MimeDec

2005-06-02 Thread Arno Garrels
Arno Garrels wrote: I'm having problems with the last CRLF in plain mime parts. OE as well as SmtpCli put a CRLF between part content and the closing boundary. MimeDec however reads this extra CRLF as content, so I get corrupted messages. Are there mailers running arround that do not append

Re: [twsocket] E-Mail SmtpCli/MimeDec

2005-06-02 Thread Arno Garrels
DZ-Jay wrote: On Jun 2, 2005, at 02:29, Arno Garrels wrote: [snip a lot] 1.Line --010609020500050508040002 [..] MimeDec decodes it to 1.Linecrlfcrlf I would like to know if it is save to replace the trailing crlfcrlf by crlf. [snip a lot] In essence, what that means

Re: [twsocket] Looking for sample.

2005-06-06 Thread Arno Garrels
. There doesn't exist any POP3 demo in ICS that decodes an email. The only demo that decodes is MimeDec however it doesn't fetch mail but decodes an email file. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo

Re: [twsocket] S/MIME Test messages needed

2005-06-11 Thread Arno Garrels
Arno Garrels wrote: Hello, I'm writing a helper class for the ICS SSL implemention, including S/MIME support. Now I need S/MIME signed/encrypted messages produced by different mail clients and senders. I would appreciate if you could send me 4 test messages, One signed only message as well

Re: [twsocket] Help: How do I Use the asyn. methods in a D2005 serviceapp

2005-06-23 Thread Arno Garrels
each of the requests into a separate thread use the synchronous calls, or process them sequentially synchronously in the main execute function. Avoid additional worker threads unless you realy need them, it would complicate things unnecessarily. Arno Garrels Any ideas? -- To unsubscribe

Re: [twsocket] Assign event handler to manually created TStmpCli

2005-06-23 Thread Arno Garrels
. GetMessage waits for messages to be placed in the queue before it returns. Arno Garrels Not a good design but anyway the events can be triggered now when I call the function. Problem now is when I call SmtpCli-Data(), after the From, To, Subject, Content-type stuff are posted the function

Re: [twsocket] FTPClient

2005-06-27 Thread Arno Garrels
Carlos Lalín wrote: After doing Ls, the file is empty I don't think it's possible *if the remote directory was not empty. You *may get an error in OnRequestDone if it was empty and file listing was therefore not sent. Arno Garrels Carlos Lalín wrote: Hello, I use the component FTPCliente

Re: [twsocket] detecting disconnect from twsocketserver

2005-06-27 Thread Arno Garrels
could check a 'last alive' time stamp stored in your client class. Cleanup the client after a timeout has elapsed. Use a single Timer to check all clients actually in the list in intervals. Arno Garrels Greets frank -- Geschenkt: 3 Monate GMX ProMail gratis + 3 Ausgaben stern gratis

Re: [twsocket] detecting disconnect from twsocketserver

2005-06-27 Thread Arno Garrels
Frank Wunderlich wrote: You could check a 'last alive' time stamp stored in your client class. Cleanup the client after a timeout has elapsed. Use a single Timer to check all clients actually in the list in intervals. Arno Garrels sure but how can i check the clients are reachable? Only

Re: [twsocket] detecting disconnect from twsocketserver

2005-06-27 Thread Arno Garrels
Frank Wunderlich wrote: You could check a 'last alive' time stamp stored in your client class. Cleanup the client after a timeout has elapsed. Use a single Timer to check all clients actually in the list in intervals. Arno Garrels is there a procedure to send something direct to the clients

Re: [twsocket] FTPClient

2005-06-27 Thread Arno Garrels
('TypeSet to ascii mode failed'); if not FtpClient1.Ls then raise Exception.Create('LS failed'); .. Doesn't the server require a login? Arno Garrels Carlos Lalín wrote: The code is: FtpClient1.HostName := servername; FtpClient1.Port := 'ftp'; FtpClient1.Binary

Re: [twsocket] FTPClient

2005-06-27 Thread Arno Garrels
went wrong try this: if not FtpClient1.Connect then raise Exception.Create('Connect: ' + FtpClient1.LastResponse); Arno Garrels - Original Message - From: Arno Garrels [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Monday, June 27, 2005 5:00 PM Subject: Re

Re: [twsocket] Listenbacklog

2005-06-30 Thread Arno Garrels
of the listening socket. If that queue is full a connecting client gets a winsock error (I forgot the error number). Arno Garrels Paul It's the OS that get notified when a client wants to connecto to your program. If the Backlog is 1, the OS wont accept any more connections before your

Re: [twsocket] Servertimeout ... i don't get it working

2005-07-01 Thread Arno Garrels
Duration: 00:01:08Error: 10053 There is now 0 clients connected. It is exactly working as we told you. Arno Garrels -- 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] Servertimeout ... i don't get it working

2005-07-01 Thread Arno Garrels
Arno Garrels wrote: Hello Frank, I've just tweaked the orginal Tcpsrv demo a bit. Dropped a timer on it and let it send something in intervals, then I pluged off the patch cable and here is the log: There is now 1 clients connected. Received from 192.168.178.200: 'who' Client

Re: [twsocket] Servertimeout ... i don't get it working

2005-07-01 Thread Arno Garrels
Arno Garrels wrote: Frank, You seem to right, for some reason this worked on the server side only. That's interesting, I will also do some more tests tomorrow. You are not lucky ;-), the other side took just a rather long time to detect disconnection from peer, so it is working as expected

Re: Re[2]: [twsocket] Servertimeout ... i don't get it working

2005-07-02 Thread Arno Garrels
Frank Wunderlich wrote: Hallo Arno, am Freitag, 1. Juli 2005, 18:52:25 hast du geschrieben: Arno Garrels wrote: Hello Frank, I've just tweaked the orginal Tcpsrv demo a bit. Dropped a timer on it and let it send something in intervals, then I pluged off the patch cable and here

Re: [twsocket] MimeDecode

2005-07-02 Thread Arno Garrels
, with previos ver. my code works normally. Message generated by Microsoft Outlook (Office 2000), with messages generated by Outlook Express all works OK. Message is too big for attachment, I can send it separetly. You could upload the file somewhere and post the URL. Arno Garrels (During

Re: [twsocket] Decoding emails

2005-07-02 Thread Arno Garrels
characters encoded such as: =24 ($ - dollar sign character) = (line wrap?) =21 (! - Exclamation character) =40 (@ - character) -Jeff Use TMimeDec to decode the mail. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org

Re: [twsocket] MimeDecode

2005-07-04 Thread Arno Garrels
are of course empty. Get PartFileName in OnPartHeaderEnd and FileName in OnHeaderEnd. BTW: Your uploaded mail worked perfectly (although I do not speak Russian). But it was created by Outlook Express ?? Arno Garrels just installed latest version of ICS, with previos ver. my code works normally. Message

[twsocket] OT - European Parliament Says No to Software Patents

2005-07-07 Thread Arno Garrels
http://swpat.ffii.org/log/05/ep0706/ Arno Garrels -- 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] Servertimeout ... i don't get it working

2005-07-07 Thread Arno Garrels
Frank Wunderlich wrote: i can send you the full source-code if you have another demo-version. OK send me the zipped TcpSvr.exe. Arno Garrels Greets frank -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit

Re: [twsocket] Servertimeout ... i don't get it working

2005-07-08 Thread Arno Garrels
No difference - very strange, my conf. was W2k-SP4, ethernet 100Mbit. Arno Garrels i have win xp (SP2) on client and server, ethernet 100MBit/s, ICS TWSocket 4.45 TWSocketServer 1.07, TCPSvr-Demo 1.04. i can send you the full source-code if you have another demo-version. I tested

Re: [twsocket] How to determine DNS settings?

2005-07-11 Thread Arno Garrels
Stanislav Korotky wrote: Hello All! Is it possible to determine current DNS address used by a system if DNS is obtained automatically, that is DNS is not written into the registry? Should be possible with IP Helper API available at the User Made page. Arno Garrels -- To unsubscribe

Re: SV: [twsocket] Decoding mail

2005-07-12 Thread Arno Garrels
Fredrik Larsson wrote: Works perfect but this doesn't work for the plain text body. Anything I have missed? Message text is encoded quoted-printable and should be decoded by MimeDec automatically. Is Content-Transfer-Encoding quoted-printable? Arno Garrels -Ursprungligt meddelande

Re: [twsocket] Monitoring TCP/IP traffic

2005-07-13 Thread Arno Garrels
in Delphi by Alfred Mirzagitov? It's in the TCPIP sub directory. http://www.thedelphimagazine.com/disks/dmag101.zip Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http

Re: [twsocket] Monitoring TCP/IP traffic

2005-07-13 Thread Arno Garrels
, in particular a Netgear router broadcasting UPD packets every second g Do you now write a logger-component based on TWSocket? Would be a 'nice to have':) Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our

Re: [twsocket] SMTP FromName

2005-07-17 Thread Arno Garrels
Wilfried Mestdagh wrote: Hello Arno, So if I understeand it right, when the server is not possible to deliver the mail, then it uses that address to return an 'undeliverable' mail ? Yes, correct. Arno Garrels --- Rgds, Wilfried http://www.mestdagh.biz Sunday, July 17, 2005, 19:05

[twsocket] FTP question

2005-07-20 Thread Arno Garrels
, but not 100% sure. Thanks, Arno Garrels -- 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] FTP question

2005-07-20 Thread Arno Garrels
Francois Piette wrote: Using a sniffer, can you see the command passing on the network ? Can you recommend a certain sniffer? Or is it possible to monitor local traffic with raw sockets? Arno Garrels -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: Arno

Re: [twsocket] FTP question

2005-07-20 Thread Arno Garrels
). Is this normal? Arno Garrels -- 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] FTP question

2005-07-20 Thread Arno Garrels
with raw sockets? I don't think so. My advice was to very pertinent :-( Maybe using socketspy program (see usermade page) which is a kind of proxy, you can watch the trafic. SocketSpy did the job (thanks Wilfried!). It turned out that the command was sent correctly. Arno Garrels

Re: [twsocket] FTP question

2005-07-20 Thread Arno Garrels
address is sending them, but some MACs are replying. Has anyone any ideas what this protocol is? http://www.ethereal.com/lists/ethereal-users/200412/msg00350.html Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo

Re: [twsocket] FTP question

2005-07-20 Thread Arno Garrels
olivier-serveur wrote: Arno Garrels a écrit : I've tested some sniffers with and without WinPCap (W2K SP4), but they all are not capable to capture local traffic (at least on my box). Is this normal? Are you try : ethereal ? (www.ethereal.com/) It's the same with ethereal. Arno Garrels

Re: [twsocket] FTP question

2005-07-20 Thread Arno Garrels
it a long time ago, it's not working 100% with the latest ICS-SSL updates (verify peer triggers too often, who knows why?). I think this discussion is OT so let's close this thread before Francois gets agry ;-). Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] TPop3Cli is halted while receiving a message over 4Mb

2005-07-27 Thread Arno Garrels
for testing). Then it is most likely due to a bad line to the server/internet. You should implement a custom timeout that triggers when the server didn't send a packet/line within let's say 60 seconds. Or try a sniffer to check what's going on. Arno Garrels Now I can't investigate the matter

Re: [twsocket] TPop3Cli is halted while receiving a message over 4Mb

2005-08-11 Thread Arno Garrels
anything if the the server does not sent the end of message marker. Quoted from the RFC's: When all lines of the response have been sent, a final line is sent, consisting of a termination octet (decimal code 046, .) and a CRLF pair. Arno Garrels -- To unsubscribe or change your settings

Re: [twsocket] TPop3Cli is halted while receiving a message over 4Mb

2005-08-11 Thread Arno Garrels
Arno Garrels wrote: Stanislav Korotky wrote: I can't figure out how the log can help me to find out the reason why (as it seems now) the mail server does not finalize the RETR request - actually the entire message fetched but then the communication freezes and RequestDone notification seems

Re: [twsocket] exception handling

2005-08-15 Thread Arno Garrels
Roland Frei wrote: hi how can i globaly hanlde ftpserver execptions ? Generaly use a global exception handler for all unhandled exceptions only. You should handle exceptions locally where they are being raised. This not only applies to ICS but also generally to all Delphi applications. Arno

Re: [twsocket] big file transfer

2005-08-16 Thread Arno Garrels
...} FReadCount := FReadCount + Result; end; Arno Garrels thanks for any idea. roland -- 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] FTPClient speeds

2005-08-30 Thread Arno Garrels
Dod wrote: Also remember that if you use xDSL connection your upload bandwidth much smaller than download one. Yes I know, I was just wondering whether file caching can make such a big difference. BTW: I already suggested last year to write/implement a tiny buffered stream class, that would

Re: [twsocket] Download time

2005-09-02 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: I am unfamiliar with GetTickCount. Is that an API or something? it also wraps after 49 days, so some care is needed for applications that run longer without a reboot. For calculating ticks elapsed I use this function: function

Re: [twsocket] 64-bit FTP support

2005-09-06 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: Testing was probably a lengthy story with such large files ;-) Around five to six minutes for 4.6 gig download across my LAN, it's supposed to be gigabyte speed but it's only Netgear components and I don't really see the speed I'd expect. Uploads

Re: [twsocket] 64-bit FTP support

2005-09-06 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: I would bet that a buffered stream class would boost performance dramatically. I do recall a recent discussion about buffered class, but can not find it. Note sure how easy it would be to add, due to some of the 64-bit issues. I never got

Re: [twsocket] [FTPCli] - 421 No Transfer Timeout (300 seconds)

2005-09-13 Thread Arno Garrels
closed, error 0. What should I do to fix it? You could try a directory listing. Arno Garrels -- 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] [FTPCli] - 421 No Transfer Timeout (300 seconds)

2005-09-13 Thread Arno Garrels
Artem Antonov wrote: On Tue, 13 Sep 2005 11:15:34 +0200 Arno Garrels [EMAIL PROTECTED] wrote: Artem Antonov wrote: Hello! I had such a problem. To prevent of FTP server disconnection on timeout I use Pwd command: ExecuteCmd(FtpClient.Pwd, FtpClient.PwdAsync); But after five minutes I

Re: [twsocket] Receive function in ClientDataAvailable procedure

2005-09-13 Thread Arno Garrels
would block). Arno Garrels -- 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] Voice over IP

2005-09-13 Thread Arno Garrels
2005. Arno Garrels -- 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] Voice over IP

2005-09-13 Thread Arno Garrels
as well as server. I think basically it can be designed as some kind of chat program. There should exist freeware components for the audio stuff. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our

Re: [twsocket] [tsyncsmtpcli] Problem sending email toExchange 2000server

2005-09-19 Thread Arno Garrels
. I think it also can be any SPAM/content-filtering on the server-side, hard to debug anyway, make sure to send the same context, using the same encoding type as with OE, if that failes as well, it's probably something in the headers. Arno Garrels -- To unsubscribe or change your settings

Re: [twsocket] Using WSocket to get ip of domain

2005-09-21 Thread Arno Garrels
Don't wait in a loop. Event OnDnsLookupDone is fired after the lookup has finished. Arno Garrels Nick wrote: But if you enter an invalid domain, or if you are not connected to the internet, no error is raised. I even wrote my own timer function to abort the process after 10 seconds

Re: [twsocket] Using WSocket to get ip of domain

2005-09-22 Thread Arno Garrels
then MyHostList.Delete(0); if MyHostList.Count 0 then WSocket1.DnsLookup(MyHostList[0]); end; Message: 3 Date: Wed, 21 Sep 2005 15:56:42 +0200 From: Arno Garrels [EMAIL PROTECTED] Subject: Re: [twsocket] Using WSocket to get ip of domain To: ICS support mailing twsocket@elists.org Message-ID

[twsocket] HttpTst demo problem (BandwidthControl)

2005-10-05 Thread Arno Garrels
By default UseBandwidthControl is defined in the project options. However the D7 compiler complains on these lines: {$IFDEF UseBandwidthControl} HttpCli1.BandwidthLimit := StrToInt(BandwidthEdit.Text); HttpCli1.BandwidthSampling:= 1000;// mS sampling interval HttpCli1.Options

[twsocket] New outfit for ICS

2005-10-09 Thread Arno Garrels
Hello, I've developed and uploaded a complete new set of icons for ICS. Download: http://www.duodata.de/misc/Ics_New_Icons_Dcr.zip Extract the package to your ICS\Delphi\Vc32 directory and rebuild the package. Of course it's a question of taste, so your comments are welcome. Arno Garrels

[twsocket] New outfit for ICS

2005-10-09 Thread Arno Garrels
Hello, I've developed and uploaded a complete new set of icons for ICS. Download: http://www.duodata.de/misc/Ics_New_Icons_Dcr.zip Extract the package to your ICS\Delphi\Vc32 directory and rebuild the package. Of course it's a question of taste, so your comments are welcome. Arno Garrels

Re: [twsocket] New outfit for ICS

2005-10-09 Thread Arno Garrels
Arno Garrels wrote: Francois PIETTE wrote: I've developed and uploaded a complete new set of icons for ICS. Download: http://www.duodata.de/misc/Ics_New_Icons_Dcr.zip Extract the package to your ICS\Delphi\Vc32 directory and rebuild the package. For D2K5 and BDS2006 (DeXter), I need

Re: [twsocket] New outfit for ICS

2005-10-10 Thread Arno Garrels
://www.overbyte.be - Original Message - From: Arno Garrels [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Sunday, October 09, 2005 6:23 PM Subject: Re: [twsocket] New outfit for ICS Arno Garrels wrote: Francois PIETTE wrote: I've developed and uploaded

Re: [twsocket] Fw: Sync THttpConnection derivative

2005-10-11 Thread Arno Garrels
Fastream Technologies wrote: The problem seems to be in kernel32.dll. Could it be related to the NexusMM that we are only using with the service? It is still strange because the error is given before quiting, ISAPI code is run... It is (mostly) impossible for mailing list users to debug other

[twsocket] HttpCli - autorization - proxy - bugs

2005-10-13 Thread Arno Garrels
-authorization does not work. However basic authorization in combination with NTLM proxy-authorization DOES. SSL is disabled!! I havn't tried authorization w/o a proxy. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo

Re: [twsocket] HttpCli - autorization - proxy - bugs

2005-10-13 Thread Arno Garrels
Maurizio Lotauro wrote: Scrive Arno Garrels [EMAIL PROTECTED]: Hello, It's the first time I use the HttpCli component (I'm disappointed). Basic authorization after basic proxy-authorization does not work (infinite loop). NTLM authorization in combination with basic proxy-authorization

Re: [twsocket] HttpCli - autorization - proxy - bugs

2005-10-13 Thread Arno Garrels
PM Subject: Re: [twsocket] HttpCli - autorization - proxy - bugs Scrive Arno Garrels [EMAIL PROTECTED]: Hello, It's the first time I use the HttpCli component (I'm disappointed). Basic authorization after basic proxy-authorization does not work (infinite loop). NTLM authorization

Re: [twsocket] HttpCli - autorization - proxy - bugs

2005-10-14 Thread Arno Garrels
Maurizio Lotauro wrote: On 13-Oct-05 15:33:39 Arno Garrels wrote: Maurizio Lotauro wrote: [...] It is a know issue. I already fix it and a corrected version of httpcli is on the ics site as beta. Good to know, I was going to waste my time fixing it myself (not easy). Don't remaind

Re: [twsocket] Problem with FTPClient

2005-10-14 Thread Arno Garrels
Hello Marcus, Please, show us some more code also from your RequestDone handler. Arno Garrels Markus Humm wrote: Hello, I'm trying to use the FTP client to upload a file onto my local ftp server (ip 127.0.0.1). My browser can connect to it and your demo program seems to work well

Re: [twsocket] finding a local domain

2005-10-15 Thread Arno Garrels
Wilfried Mestdagh wrote: Hello, You missed the point, or I explained bad :( I try again: Is it possible for a mail server (like Microsoft Echange) to find another mail server on LAN for a certain domain only, if there is no local DNS server? What kind of domains are you talking about,

Re: [twsocket] finding a local domain

2005-10-15 Thread Arno Garrels
Francois PIETTE wrote: Maybe the only workaround is write a DNS server ? I would say: install a DNS server. There are free one. Of course you may write one using ICS. Probably a lot of work. Or can you specify in windows several DNS servers? Yes, you can specify several. Go to your

Re: [twsocket] finding a local domain

2005-10-15 Thread Arno Garrels
Wilfried Mestdagh wrote: Hello Arno, Forget it, it is shareware. Could not find a freeware one also. I really thought this would be a sooo simple to solve problem :( Probably overkill for your customers? http://posadis.sourceforge.net/posadis/ -- To unsubscribe or change your

Re: [twsocket] HttpCli - autorization - proxy - bugs

2005-10-16 Thread Arno Garrels
Maurizio Lotauro wrote: Can you explain what happen? Because you get the loop problem I imagine that your situation is: - the client request an URI - the proxy answer with a 407 code - the client authenticate to the proxy and start the SSL - the remote server answer with a 401 code and

Re: [twsocket] OT: Open source model

2005-10-19 Thread Arno Garrels
Fastream Technologies wrote: Hello Francois, I wonder how your open-source business model is going? At first ICS is not open source. I mean financially is it satisfying? If I can convince me and my partner, we may consider releasing the source code of our web/ftp server as well

Re: [twsocket] 64-bit FTP support

2005-10-24 Thread Arno Garrels
overloaded Seek seemed to be linked rather than int64 version, so I had to code my own Seek64 function. I think it can be simplified, without an own Seek64-function just by a new custom integer type that would be of Type Int64 in D6 and above. Arno Garrels -- To unsubscribe or change your

Re: [twsocket] 64-bit FTP support

2005-10-24 Thread Arno Garrels
- and I still use Delphi 6 for production code. So Delphi 5 is obsolete? I don't believe that, there are many people still using it. In this certain case support for older compilers is no problem. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto http

[twsocket] Speed and buffered file stream

2005-10-26 Thread Arno Garrels
using the class with TSmtpCli (reading), and great success over one year now, write mode, seeking, and 64 bit support was added, these new features are not yet tested in an application, so your feedback is welcome. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list

Re: [twsocket] Bug in SmtpProt.pas

2005-10-26 Thread Arno Garrels
for correct line length, so it is not so important. Arno Garrels -- 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] Bug in SmtpProt.pas

2005-10-26 Thread Arno Garrels
, with sometimes very strange results. Also some MTA's would drop the connection on receiving very long lines since they assume a buffer overrun attack. One note on OE 6, it truncates the subject line at 266 chars silently. Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list

Re: [twsocket] Speed and buffered file stream

2005-10-26 Thread Arno Garrels
Angus Robertson - Magenta Systems Ltd wrote: I've uploaded a tiny buffered file stream class as well as a simple test program. It is amazing fast when small chunks are read/written. Seeking is slower than TFileStream :( I'll try in one of my applications, but it won't be until next week.

Re: [twsocket] Bug in SmtpProt.pas

2005-10-26 Thread Arno Garrels
properly? Arno Garrels -- 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] TeamICS web page

2005-10-27 Thread Arno Garrels
Francois PIETTE wrote: Ever wanted to know who are the ICS experts taking time to answer your questions ? Just have a look at this page: http://www.overbyte.be/eng/overbyte/teamics.html It's nice, however unfortunately I don't speak French. Arno Garrels -- To unsubscribe or change your

  1   2   3   4   5   6   7   8   9   10   >