[twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Bob Herbst
Hello Francois, I am doing some updating of my programs and I ask is there something that I am doing wrong? With the latest in the ICS download using: 1. HttpDmo1.pas 2. HttpGet.pas I am able to enter a URL as: http://localhost/bherbst/TimeTst.htm and it pulls the one line of text up correctl

RE: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Bjørnar Nielsen
> I have also tried the '132.163.4.102:13' fails and shows > 501 Protocol > not implemented I had some similar error. When I inserted http:// in fron of the url, the error disapeared. Regards Bjørnar -- To unsubscribe or change your settings for TWSocket mailing list please goto http:/

Re: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Maurizio Lotauro
Scrive Bob Herbst <[EMAIL PROTECTED]>: > Hello Francois, > > I am doing some updating of my programs and I ask is there something that I > am doing wrong? I tried http://132.163.4.102:13 and what I see in the browser is in the header. This is why it seems that you don't receive anything. Bye,

RE: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Darin McGee
Bob, port 13 is the Daytime protocol - the samples do not support receiving the daytime protocol. That is left for you to implement. Darin From: [EMAIL PROTECTED] on behalf of Bob Herbst Sent: Thu 5/26/2005 10:06 AM To: Twsocket@Elists.Org Subject: [twsocket]

RE: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Bob Herbst
Bjørnar, Thanks for the reply, but as noted in my original post, for my demos, adding the http:// does not fix the problem. Using text of http://www.cis.ohio-state.edu/rfc/rfc775.txt, as in the sample does work Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Beha

RE: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Bob Herbst
Maurizio, I am supposed to receive a time statement that the one line reads something like this: '53516 05-05-26 05:53:52 50 0 0 754.9 UTC(NIST)' This is a coded time statement that I parse and use to reset my computer's time. That is all that is transmitted from this site. Bob -Original

Re: [twsocket] New release published

2005-05-26 Thread Francois PIETTE
I have now added some lines in the history. You'll see it in the next refresh. -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: "Maurizio Lotauro" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Tuesday, May 24, 2005 4:14 AM Subject: Re: [twsocket] New release p

RE: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Bob Herbst
Darin, I just tested with my IE the http://132.163.4.102:13 and the http://132.163.4.102:14 and both respond with a time line. But neither of these work with the ICS demo's. Still asking 'what am I missing with the ICS?' Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PR

Re: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Francois PIETTE
The url http://132.163.4.102:13 doesn't correspond to a HTTP server. It doesn't return a valid HTTP reply, so the HTTP client component can't work correctly with that. You should use the simple TWSocket to query this server. -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message

Re: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Francois PIETTE
> I have also tried the '132.163.4.102:13' fails and shows 501 Protocol > not implemented I've found and fixed this bug. Thanks. You'll see the code in the next refresh. > http://132.163.4.102:13 and they both do not work. 0 bytes received. :( Port 13 !? -- [EMAIL PROTECTED] http://www.o

[twsocket] ICS release: two bugs fixed

2005-05-26 Thread Francois PIETTE
I've uploaded an new ICS.ZIP. Two bug have been fixed: 1) HTTP client component: url without http:// prefix work again 2) FTP client component: Md5Async fixed Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] http://www.overbyte.be -- To unsubscribe o

Re: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Francois PIETTE
> I just tested with my IE the http://132.163.4.102:13 and the > http://132.163.4.102:14 and both respond with a time line. > > But neither of these work with the ICS demo's. > > Still asking 'what am I missing with the ICS?' ICS HTTP component expect to receive a valid HTTP response. IE silentl

RE: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Bob Herbst
Francois, Wilfried and I collaborated on a TWSocket socket version in 2000, and just recently I updated to the latest ICS revisions after further conversation with Wilfried. No problem with it. It complies and runs fine. The http version that I also had back in 2000, does not now accept the lates

RE: [twsocket] ICS release: two bugs fixed

2005-05-26 Thread Bob Herbst
Francois, Thanks, will look forward to restoring my http time set program. Bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Francois PIETTE Sent: Thursday, May 26, 2005 2:57 PM To: twsocket@elists.org Subject: [twsocket] ICS release: two bugs fixed I'v

RE: [twsocket] Latest revision May, '05 entering URLs

2005-05-26 Thread Darin McGee
Bob, How right you are, I will have to give the demo a try myself. Darin From: [EMAIL PROTECTED] on behalf of Bob Herbst Sent: Thu 5/26/2005 2:24 PM To: ICS support mailing Subject: RE: [twsocket] Latest revision May, '05 entering URLs Darin, I just tested

[twsocket] Feedback for fixed version of HttpCli component

2005-05-26 Thread Maurizio Lotauro
Hello, someone has made some test with the fixed version of the HttpCli component that Francois put in his web page? Any feedback is needed (negative or positive) to evaluate if this version is reliable or not. TIA Bye, Maurizio. -- To unsubscribe or change your settings for TWSocket mailin

[twsocket] Interface used to reach a specific IP

2005-05-26 Thread Maurizio Lotauro
Hello, when a PC has more than one IP address (more than one NIC, one NIC and an active connection with the modem, ...) is it possible to detect through which local IP will be used to reach a specific IP address? In other words, which gateway will be used for a remote IP? Bye, Maurizio. -- To

RE: [twsocket] Interface used to reach a specific IP

2005-05-26 Thread Darin McGee
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. Dairn -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ma

RE: [twsocket] Interface used to reach a specific IP

2005-05-26 Thread zayin
Hi, If you are sending the command you can bind to a NIC. If you are not binding, then the address of the NIC can be a clue as to which one will be used. HTH Zayin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Maurizio Lotauro Sent: Thursday, May 26

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 >