| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 91,808
» Latest member: f999ok
» Forum threads: 2,418
» Forum posts: 11,356
Full Statistics
|
| Online Users |
There are currently 797 online users. » 0 Member(s) | 792 Guest(s) Applebot, Baidu, Bing, Google, Yandex
|
| Latest Threads |
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
Yesterday, 08:01 AM
» Replies: 5
» Views: 321
|
VCL conversion
Forum: Delphi General Discussion
Last Post: marktuan
08-07-2026, 01:20 PM
» Replies: 0
» Views: 369
|
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 92
|
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 249
|
New CGDevTools build is a...
Forum: CGDevTools
Last Post: lfeliz
08-04-2026, 12:03 AM
» Replies: 2
» Views: 1,413
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: JuergenS
07-31-2026, 09:44 AM
» Replies: 6
» Views: 1,326
|
Datatables question
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-28-2026, 04:34 AM
» Replies: 2
» Views: 316
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: CharlieDunn
07-27-2026, 08:27 PM
» Replies: 1
» Views: 493
|
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-27-2026, 03:18 PM
» Replies: 3
» Views: 441
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-17-2026, 05:18 PM
» Replies: 6
» Views: 4,934
|
|
|
| SSL with WildCard certificate. |
|
Posted by: Rassamaha78 - 09-16-2020, 03:19 PM - Forum: IntraWeb General Discussion
- Replies (6)
|
 |
-
Can anyone write a step by step instruction on how to enable HTTPS. I am using Intraweb 15, in http.sys mode (TIWStartHSys.Execute (False)). I am following these setup steps:
- Configuring ServerController:
SSLOptions.Certificate.CertFileName SSLOptions.Certificate.KeyFileName SSLOptions.Certificate.RootCertFileName SSLOptions.Certificate.Password SSLOptions.Certificate.Path SSLOptions.CipherList SSLOptions.Port
- Add libeay32.dll, ssleay32.dll to programm folder.
- Configure HTTPS with HTTP.sys for self hosted web servers
But the SSL still don't work, Webbrowser reports: Unable to access the site, Site does not allow a connection: ERR_CONNECTION_REFUSED
What else needs to be done to enable HTTPS?
P.S. Server OS - Windows 2016 Server.
|
|
|
| Prevent DOS attack |
|
Posted by: PDSBILL - 09-16-2020, 02:29 PM - Forum: IntraWeb General Discussion
- Replies (9)
|
 |
I have an interesting issue.
We have built a number of Intraweb apps that are call from a customers Main Web Site on a different domain.
The customer had a Audit done and reported that the Intraweb apps were vunerable to a dos attack.
I have tried the Authbeforecreatesession with authevents component, but is uses the browser Login dialog which is not an acceptable solution.
Is there a way to present a Captcha form before session creation that when validated then creates a new session and shows the IW app main form.
|
|
|
| Image mapping |
|
Posted by: bostjan - 09-16-2020, 11:03 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Hi,
I have an image with some information that i wish to make clickable. Since picture is responsive I cannot get correct coordinations so the only solution I found is to make image map. Is there any example how to make it with Intraweb or could I get some pointers how to insert map info into html?
Kind regards,
Bostjan
|
|
|
| httpsys and nsRedirect |
|
Posted by: joelcc - 09-15-2020, 03:04 PM - Forum: IntraWeb General Discussion
- Replies (9)
|
 |
I am running a program under httpsys and would like to turn on the SSL Options->NonSSLRequest so that it will redirect from non ssl to ssl. When I set the value to nsRedirect, it does not seem to redirect.
We are using iw 15.2.15
|
|
|
| get real client IP |
|
Posted by: mazluta - 09-12-2020, 09:29 PM - Forum: Indy
- Replies (1)
|
 |
i build Mailer Server using idHTTPServer
i want to get the client IP (the best will be in commanget).
but every thing i tried give me the IP of my Router.
from on connect
from start session
from request
from response
from conext
what ever bind or peer or host - all point to MyExternal IP (the router ip at my internet provider).
i use no-ip. that direct all to my IP from the to my router. there i have forward to 192.168.1.50.
my server is there, wait for port 5555.
the request is always come to the server. but i dont know from whom.
thanks for help
|
|
|
| WebApplication.TerminateAndRedirect(WebApplication.ApplicationURL) changed |
|
Posted by: jeroen.rottink - 09-11-2020, 03:18 PM - Forum: IntraWeb General Discussion
- Replies (10)
|
 |
Hi,
WebApplication.TerminateAndRedirect(WebApplication.ApplicationURL) in IW15.1.22 works different from IW15.2.17
In the old version the current session would be terminated and a new one would be started.
In the new version the current session is terminated and a 303 status is send to the browser.
Code: procedure TIWForm1.IWButton1Click(Sender: TObject);
begin
WebApplication.TerminateAndRedirect(WebApplication.ApplicationURL);
end;
I used it to logout a user and present the logon screen again.
WebApplication.TerminateAndRedirect('logoff.html') still works as expected.
|
|
|
|