server := TclSimpleHttpServer.Create(nil); try repeat server.Listen(80); request := server.AcceptRequest(); uri := server.RequestUri; server.ResponseHeader.ContentType := 'text/html'; server.KeepConnection := False; if (Pos('stop', uri) > 0) then begin server.SendResponse(200, 'OK', '<html><body>Server stopped.</body></html>'); Break; end; server.SendResponse(200, 'OK', '<html><body>Your requested the ' + uri + ' resource.</body></html>'); until False; finally server.Free(); end;
Trouble logging in? Simply enter your email address OR username in order to reset your password.
For faster and more reliable delivery, add admin@clevercomponents.com to your trusted senders list in your email software.