| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 684 online users. » 1 Member(s) | 679 Guest(s) Applebot, Bing, Google, Yandex, franpartsertu1970
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 322
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 252
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 280
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 593
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 323
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 756
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 302
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,426
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 441
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,112
|
|
|
| E-Mail Validate?? |
|
Posted by: ShaneStump - 11-15-2019, 07:21 PM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
Howdy All!
I have an e-mail regexp that I have been using that validates most e-mail addresses.
I have tried it (and many others I have seen in stackoverflow) and none of them validate a test e-mail account I have been given by Viator. I have tried some of the online validators and they work!
So my question is does anyone have a C++ or Delphi regexp that can validate the following e-mail account and return True.
MSG-8b17fa92-7b35-4fdb-9f18-f8a69252e019+BR-999999999@expmessaging.tripadvisor.com
Thanks in advance,
Shane
|
|
|
| IW unable to server static files in folder |
|
Posted by: cprmlao@hotmail.com - 11-15-2019, 01:53 PM - Forum: IntraWeb General Discussion
- Replies (9)
|
 |
Hi I am trying create a valid SSL certificate withn zeroSSL.
To validate the CSR I choice HTTP option and zeroSSL saids I have to put some files in "{wwwroot}.well-known/acme-challenge/" folder
I am having a problem where IW is unable to server static files when I create ".well-known/acme-challenge/" into wwwroot.
IW returns an error of "Resource not found".
It seems IW has a problem com "hyphen". I was searching in the google, I can see "hyphen" is a legal char in a URL and doesn´t needs to encode it.
But if I encode it, I also have the same problem.
Code: 127.0.0.1/.well-known/acme-challenge/teste.txt // here I get resource not found
I did a test changing the names folder to the next, and it works
Code: 127.0.0.1/.well-known/acme_challenge/teste.txt // here it works
But I need to use:
Code: 127.0.0.1/.well-known/acme-challenge/teste.txt
I have tried to change hyphen with "%2D" but no look.
How could I fix it?
Is it a IW bug?
Regards, Luiz
|
|
|
| TIdTelnet Disconnect |
|
Posted by: omarreis - 11-15-2019, 01:03 PM - Forum: Indy
- Replies (4)
|
 |
I'm using telnet client in my app, to access streaming market data.
It works ok for Windows and iOS, but on Android the app hangs
for several seconds when telnet.Disconnect is called. So much that
Android detects the app is stalled and terminates it.
I understand that Connect and Disconnect can block the
execution, so they are not to be called from the UI thread.
But why Disconnect takes so long ?
One guy suggested on stackoverflow that the reader thread
was locked or not finishing, and that blocked the Disconnect call.
So I tried to create a thread dedicated to disconnect.
It seems to work
Code: procedure TForm1.ThreadedTelnetDisconnect;
var aThreadDisconnect:TThread;
begin
aThreadDisconnect := TThread.CreateAnonymousThread(
procedure begin
IdTelnet1.Disconnect;
end);
aThreadDisconnect.start();
end;
|
|
|
| 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
|
|
|
|