| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 92,171
» Latest member: hadavis
» Forum threads: 2,418
» Forum posts: 11,356
Full Statistics
|
| Online Users |
There are currently 1697 online users. » 1 Member(s) | 1692 Guest(s) Applebot, Bing, Google, Yandex, hadavis
|
| Latest Threads |
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 351
|
VCL conversion
Forum: Delphi General Discussion
Last Post: marktuan
08-07-2026, 01:20 PM
» Replies: 0
» Views: 377
|
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 97
|
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 266
|
New CGDevTools build is a...
Forum: CGDevTools
Last Post: lfeliz
08-04-2026, 12:03 AM
» Replies: 2
» Views: 1,423
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: JuergenS
07-31-2026, 09:44 AM
» Replies: 6
» Views: 1,356
|
Datatables question
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-28-2026, 04:34 AM
» Replies: 2
» Views: 330
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: CharlieDunn
07-27-2026, 08:27 PM
» Replies: 1
» Views: 510
|
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-27-2026, 03:18 PM
» Replies: 3
» Views: 452
|
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,956
|
|
|
| Could not load SSL library |
|
Posted by: alpires2000 - 11-10-2020, 11:46 PM - Forum: Indy
- Replies (9)
|
 |
Hi, when I try to access a url with https the following error occurs: Could not load SSL library. But this error only occurs when I compile my app for android 64-bit, 32-bit works well.
I am using delphi 10.3.3 and AndroidOpenssl1.0.2h
Some idea?
Thanks
|
|
|
| OnBrowserCheck in IW15.2.20 |
|
Posted by: jeroen.rottink - 11-09-2020, 02:54 PM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
Hi Alexandre,
I use following code to disable unsupported browsers but keep support for some apps using a rest api
Code: // Step 1. OnBrowserCheck
procedure TIWServerController.IWServerControllerBaseBrowserCheck(
aSession: TIWApplication; var rBrowser: TBrowser);
begin
// REST method is often called from a non-browser. change this so the call is accepted
if (rBrowser is TOther) and aSession.Request.PathInfo.StartsWith('/restapi/')
then begin
rBrowser.Free;
// accept the unknown browser as Firefox (probably the best idea)
rBrowser := TFireFox.Create(TFireFox.MIN_VERSION);
end
// handle unknown and non-supported browsers, they don't belong there (often script kiddies)
else if not rBrowser.IsSupported
then begin
rBrowser.Free; // free current browser object because it will throw an exception otherways
rBrowser := TFireFox.Create(TFireFox.MIN_VERSION);
TerminateSession(aSession, 403, 'Forbidden');
end;
end;
In IW15.2.20 requesting the restapi gives a AV because aSession is nil like stated in the release notes.
Can I test the request in this function in another way?
|
|
|
| Chart.js + Template |
|
Posted by: matija - 11-06-2020, 12:13 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
I use intraweb with a HTML template (Bootstrap).
Does anyone have experience with this component chartjs.org?
How to fill chart.js with label and data?
Something from code:
Code: datasets: [{
label: '# Years',
data: [2020, 2019, 2018],
|
|
|
| tiwjqdbgrid issue |
|
Posted by: Blanca80 - 11-04-2020, 10:32 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hello,
I'd like to report an uncaught sintax error unexpected token in JSON related to tiwjqdbgrid
it indicates an error on a.JSON.parse(b+"") related to this line:
{"rows":[{"id":"1","cell":[2,"","","04\/11\/2020","173NUEVOS.PDF","nuevo modificado\r\npara el web\r\n","1","04\/11\/2020","SGA","SGA","ASUNTO"]}
it is produced from a tiwmemo when it has double line with a carriage return character (\r) or feed line character (\n).
and the grid shows loading... but never shows the data.
is there any solution i can do or it will be solved on the next update?
thank you very much
|
|
|
|