[twsocket] Anybody know a good web-based admin unit example for THttpServer?

2008-11-24 Thread Fastream Technologies
Hello, I want to make a web-based controller interface for one of our projects. Is there a starting point you know? I know I need to prepare HTML and then input it to web server and then extract variables in POST but is there a ready-made unit/component to start with? I am experienced with CGI/ISA

Re: [twsocket] Anybody know a good web-based admin unit example forTHttpServer?

2008-11-24 Thread Arno Garrels
Fastream Technologies wrote: > Hello, > > I want to make a web-based controller interface for one of our > projects. Is there a starting point you know? I know I need to > prepare HTML and then input it to web server and then extract > variables in POST but is there a ready-made unit/component to

Re: [twsocket] Anybody know a good web-based admin unit example for THttpServer?

2008-11-24 Thread Dod
Hi, I have some experience with such project (I personnaly have a project for house automation witih HA7Net 1-Wire Web interface embbeded module) and I/O controls. The way to do it is to use ICS for HTTP get/put/post and RegExp unit like TPerlRegexp (or DOM inspector unit) for parsi

Re: [twsocket] Anybody know a good web-based admin unit example forTHttpServer?

2008-11-24 Thread Dod
Hello, Sorry, I missunderstood your needs, you don't want to access embedded web server I/O controller but you want to make the web interface itself. >> I want to make a web-based controller interface for one of our >> projects. Is there a starting point you know? I know I need to >> prepare HTM

Re: [twsocket] Anybody know a good web-based admin unit example forTHttpServer?

2008-11-24 Thread Fastream Technologies
Hello Arno, I woN'T be using CGI/ISAPI. I wrote it because I want to state that I am familiar with HTTP headers, cookies, etc... so that you know me well before answering. I will check out the demo right now. Regards, SZ On Mon, Nov 24, 2008 at 12:13 PM, Arno Garrels <[EMAIL PROTECTED]> wrote:

Re: [twsocket] Anybody know a good web-based admin unit example forTHttpServer?

2008-11-24 Thread Francois Piette
> I want to make a web-based controller interface for one of our projects. Is > there a starting point you know? I know I need to prepare HTML and then > input it to web server and then extract variables in POST Just use the WebServ demo included with ICS. It has dynamic pages from templates, data

Re: [twsocket] Anybody know a good web-based admin unit example forTHttpServer?

2008-11-24 Thread Fastream Technologies
Hello guys, In the https server demo I see the function: function URLDecode(S : String) : String; var I : Integer; Ch : Char; begin Result := ''; I := 1; while (I <= Length(S)) and (S[I] <> '&') do begin Ch := S[I]; if Ch = '%' then begin Ch := chr

Re: [twsocket] Anybody know a good web-based admin unit example forTHttpServer?

2008-11-24 Thread Fastream Technologies
Hi, I have tried to do what you said but in the OverbyteIcsWebServerDemo, when I set the template folder and then try to browse the contents of the demo html links, I get 404 errors! Could it be because the demo is outdated?? Have you noticed the ssl http server demo does not support templates/vir

Re: [twsocket] Anybody know a good web-based admin unit exampleforTHttpServer?

2008-11-24 Thread Arno Garrels
Fastream Technologies wrote: > Hello guys, > > In the https server demo I see the function: > [..] > > Is this up to date with UTF-8? IIRC, Arno fixed a bug in html/http/url > decode/encode for ICSv7/Unicode. Is this that function? No, it is not up to date. Take look at the OverbyteIcsWebServ d

Re: [twsocket] Anybody know a good web-based admin unit example forTHttpServer?

2008-11-24 Thread Fastream Technologies
FYI, namely data entry and showdata links return 404! Others work well but they are not what I am looking for... On Mon, Nov 24, 2008 at 2:32 PM, Fastream Technologies <[EMAIL PROTECTED]>wrote: > Hi, > > I have tried to do what you said but in the OverbyteIcsWebServerDemo, when > I set the templa

Re: [twsocket] Anybody know a good web-based admin unit exampleforTHttpServer?

2008-11-24 Thread Arno Garrels
Fastream Technologies wrote: > Hi, > > I have tried to do what you said but in the OverbyteIcsWebServerDemo, > when I set the template folder and then try to browse the contents of > the demo html links, I get 404 errors! Could it be because the demo > is outdated?? It works perfectly with all D

[twsocket] Which version of OpenSSL v7 uses and where can one get the DLLs if it is not 0.9.8g?

2008-11-24 Thread Fastream Technologies
Thanks in advance, SZ -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be

Re: [twsocket] Which version of OpenSSL v7 uses and where can one getthe DLLs if it is not 0.9.8g?

2008-11-24 Thread Arno Garrels
Fastream Technologies wrote: > Thanks in advance, It's easy to build OpenSSL with MinGW, the steps are described in IcsSslHowTo.txt. Or download Subversion, which includes 0.9.8h. v0.9.8i is latest stable OpenSSL version which works with ICS as well. -- Arno Garrels [TeamICS] http://www.overbyt

Re: [twsocket] Which version of OpenSSL v7 uses and where can one getthe DLLs if it is not 0.9.8g?

2008-11-24 Thread Fastream Technologies
Is it because of export restriction or something similar why Overbyte cannot supply this v0.9.8i as compiled binary?? Are we guys who include the DLLs in their products at legal risk??? On Mon, Nov 24, 2008 at 8:00 PM, Arno Garrels <[EMAIL PROTECTED]> wrote: > Fastream Technologies wrote: > > Tha

Re: [twsocket] Which version of OpenSSL v7 uses and where can onegetthe DLLs if it is not 0.9.8g?

2008-11-24 Thread Arno Garrels
Fastream Technologies wrote: > Is it because of export restriction or something similar why Overbyte > cannot supply this v0.9.8i as compiled binary?? No, in Europe the export restrictions are rather low. As I wrote before, it's very easy to compile OpenSSL with the free C++ compiler MinGW. >

Re: [twsocket] Which version of OpenSSL v7 uses and where canonegetthe DLLs if it is not 0.9.8g?

2008-11-24 Thread Arno Garrels
Arno Garrels wrote: > Fastream Technologies wrote: >> Is it because of export restriction or something similar why Overbyte >> cannot supply this v0.9.8i as compiled binary?? > > No, in Europe the export restrictions are rather low. > As I wrote before, it's very easy to compile OpenSSL with the f

Re: [twsocket] Which version of OpenSSL v7 uses and where canonegetthe DLLs if it is not 0.9.8g?

2008-11-24 Thread Fastream Technologies
On Mon, Nov 24, 2008 at 8:51 PM, Arno Garrels <[EMAIL PROTECTED]> wrote: > Arno Garrels wrote: > > Fastream Technologies wrote: > >> Is it because of export restriction or something similar why Overbyte > >> cannot supply this v0.9.8i as compiled binary?? > > > > No, in Europe the export restricti