| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 86,247
» Latest member: geoweb5nl
» Forum threads: 2,413
» Forum posts: 11,329
Full Statistics
|
| Online Users |
There are currently 363 online users. » 1 Member(s) | 357 Guest(s) Applebot, Baidu, Bing, Google, Yandex, khaleejhow
|
| Latest Threads |
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
07-14-2026, 06:27 AM
» Replies: 6
» Views: 779
|
Need Help Integrating Mic...
Forum: IntraWeb General Discussion
Last Post: capheny
07-07-2026, 06:43 AM
» Replies: 0
» Views: 135
|
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 453
|
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: vonirpereira
07-03-2026, 06:51 PM
» Replies: 0
» Views: 182
|
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 113
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-01-2026, 12:19 AM
» Replies: 4
» Views: 4,378
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Gustave
06-30-2026, 09:00 PM
» Replies: 0
» Views: 154
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 937
|
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 171
|
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 71,358
|
|
|
| GStack.LocalAddress returns empty only with Delphi 10 |
|
Posted by: processeur_fou - 11-14-2019, 05:15 PM - Forum: Indy
- Replies (8)
|
 |
Hello,
I use UDP to send a video stream to VLC, it works very well when I have a local network active (Wifi or Ethernet).
But if I have no Wifi and no Ethernet card activated, it works if I compile my source code using Delphi2010 ( using 127.0.0.1 IP address) but doesn’t work if I compile my source code using Delphi 10.
After searching, I discover that my procedure to find local IP can find 127.0.0.1 ( Nbr of local IP =1) using Delphi 2010 but find no local IP using Delphi 10 (Nbr of local IP = 0)
Code: TIdStack.IncUsage; LocalIPasked := '0.0.0.0';
try //**************************************************************
NbLocalIP := GStack.LocalAddresses.Count;
Memo1.Lines.Add(Format('nbr of local IP= %d ', [NbLocalIP]));
for i := 0 to NbLocalIP-1 do
begin
Memo1.Lines.Add(Format('IP n° %d = %s', [i + 1, GStack.LocalAddresses[i]]));
end;
finally
TIdStack.DecUsage;
end;
Why do I have this difference between Delphi2010 and Delphi_10 ? Have I miss something or compiler setup when I change my Delphi 2010 to Delphi 10?
Rem: I have tested also a second way to find the number of local IP but same result (0) using Delphi 10
Code: ...
LList := TIdStackLocalAddressList.Create;
try
GStack.GetLocalAddressList(LList);
Memo1.Lines.Add(Format('nbr of local IP found: %d ', [LList.Count]));
...
Result is 0 using Delphi 10
Can someone tell me where I miss something?
Thank you.
|
|
|
| TMS Intraweb Components with IW15 ? |
|
Posted by: SorenJensen - 11-14-2019, 12:32 PM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hi all,
I'm considering investing in the TMS Intraweb Component Pro Pack, mainly due to requirements for listing SQL table data in grid form, with options for paging and for on-screen viewing / searching and with options for printing grid contents directly, or at least export to both Excel and PDF file formats.
Do anyone in here have any experience with that ? Any pros and cons ?
Regards
Soren
|
|
|
| Tooltip Button |
|
Posted by: matija - 11-14-2019, 06:33 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
I have in template define IWButton {%IWButton1%}.
My JS: $("[data-toggle=tooltip]").tooltip();
My Atribute: data-toggle="tooltip" data-placement="top" data-html="true" title="text <br/>text"
Where insert Tooltip atribute?
|
|
|
| Protect against ddos |
|
Posted by: tlang@bst-gmbh.com - 11-13-2019, 09:03 AM - Forum: IntraWeb General Discussion
- Replies (19)
|
 |
Hello,
i have an intraweb application running as ISAPI.DLL in IIS.
How can i protect against ddos attacks.
I have testet, everyone on this world knowing my hostname und Name of the dll can crash my side with a simple stress tool.
It takes just 5 to 10 minutes to crash the side and also all other websides running in iis.
How can i protect against it.
Thanks
Theo
|
|
|
| Purchased cert Need help |
|
Posted by: tinygoldwing - 11-09-2019, 06:13 AM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
I purchased a certificate and have a couple questions. I don't have IIS or any other tool other than openssl
1. I'm not sure which format to download it from. The choices are:
Certificate download by platform
Microsoft IIS (*.p7b)
WHM/cpanel
Apache
Amazon
Nginx
V8+Node.js
Java/Tomcat
Other platforms
I tried Nginx and it downloaded: www_gotrecovery_org.chained.crt which isn't in binary. I renamed it but my app didn't work. I know I'm missing a few steps. Does work with the sample pem files that come with intraweb other than saying it's not secure.
Which one do I rename it to: key.pem, root.pem or cert.pem
And how do I create the other files. When I created the certificate it didn't ask me anything about a password.
I appreciate the help.
Thank You,
Ed
|
|
|
|