Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 98,729
» Latest member: Impermeabilizabcn
» Forum threads: 2,426
» Forum posts: 11,371

Full Statistics

Online Users
There are currently 808 online users.
» 0 Member(s) | 805 Guest(s)
Applebot, Bing, Google

Latest Threads
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 275
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 210
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 224
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 532
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 281
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 705
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 258
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,333
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 398
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,048

 
  ajaxCall in dedicated web worker thread
Posted by: JuergenS - 02-19-2022, 12:47 PM - Forum: IntraWeb General Discussion - Replies (7)

Hi,

when trying to use an ajaxCall in a dedicated web worker thread I get the following error:
ReferenceError: ajaxCall is not defined
The call works in the main thread.

Is this behavior correct?


Regards
Juergen

Print this item

  Missing IWBootstrap4D11.dcp,IWBootstrapD11.dcp in Intraweb latest or earlier release
Posted by: ccy - 02-18-2022, 03:19 PM - Forum: IntraWeb General Discussion - Replies (1)

Hi,

The current 15.2.50 or earlier release missing these two files: IWBootstrap4D11.dcp and IWBootstrapD11.dcp

These DCP are crucial for application built with runtime packages.

Print this item

  Bug in IWjQDBGrid
Posted by: Comograma - 02-17-2022, 12:56 PM - Forum: IntraWeb General Discussion - Replies (1)

I have this situation with a simple IWjQDBGrid that do not show anything when the application is running as a Windows service rather than an application.
I attached a simple case.
When the application is running as an application, the data in the is showed ok.
When the application is running as a Windows service, the is not showed and the message Loading stays on the screen.
There is something in here.

Also the grid has a column with a date datatype and if I set the second grid's column datatype to dtText, the dates are presented just fine, but when I change datatype to idDate, the dates are presented incorrectly. Something in here also.

v15.2.50



Attached Files
.zip   Project1.zip (Size: 746.42 KB / Downloads: 2)
Print this item

  Saving Raw Text with input controls
Posted by: davidmcevoy@outlook.com - 02-16-2022, 04:53 PM - Forum: IntraWeb General Discussion - Replies (4)

Hello.

I am having to make a questionnaire and I was wondering if it was possible by using the RawText to load an html file, the html will have input controls.  

I can get that part to work fine, but what I want to do is save the results and I was hoping I could just do a save to file but that doesn't seem to work, is this possible?  What I am finding is it just saves back the original content, ignoring anything in the input boxes.  It would certainly make this questionnaire a lot easier as it is likely to change often and so simply updating the html and then saving the results would be great.

Is this possible, and if not any other suggestions?

Regards
David.

Print this item

  Modal Window Locker
Posted by: Blanca80 - 02-15-2022, 12:36 PM - Forum: IntraWeb General Discussion - Replies (5)

Hello,

It is possible to show the locker when press button on a Window Modal Form until it's processing data before close, in order to tell user that the system is 'busy', like buttons and some other controls do in the property lockOnAsyncEvents?

Thank you very much!

Kind Regards, 

Blanca



Attached Files Thumbnail(s)
   
Print this item

  Detect change variable
Posted by: matija - 02-11-2022, 12:57 PM - Forum: IntraWeb General Discussion - Replies (2)

In template in have javascript variable 
var MyIndex=1;

Javascript change MyIndex=2;

How do intraweb I let me change the variable? Trigger! EventListener!

Print this item

  temp files & user sessions
Posted by: iwuser - 02-11-2022, 04:37 AM - Forum: IntraWeb General Discussion - Replies (3)

A lot of stuff in IW does not appear to have any documentation, or I was unable to find it. Hence I keep running into small issues and need clarifications:

I'm creating lots of tmp files with TIWAppCache.AddFileToCache(self,... calls or similar, using ctSession flag, and then serve them to client on request.

I believe it creates a new session every time the link is refreshed - I can see it in my logs. Every refresh would send me different URL parameters, this is how it works attached to my target 3rd-party system in a frame. But I think it must be resetting something in the requests for me. Because if I keep reloading the page with different parameters in a browser manually, it only loads the 1st time and completely ignores it when the parameters change, returning the same 1st page, so it apparently remembers my session and I probably need to add code to reset it on getting new parameters. How/Where can I do this?

There's also a UserSession module and I can see from the logs that it creates user sessions. But UserSession object does not know its own session name/ID. Can I get it from WebAllpication or something?

In the file system I can see temp folders created and then user session subfolders created underneath those.

But all temp files are created in the root of the temp folders, not under user session subfolders - those stay empty for me. How can I control where the temp files go to? How do ctSession/ctForm, etc. work exactly?

What is the TIWServerController.SessionOptions.LockSessionTimeout for?

Can I explicitly close my session, i.e.: on service stopping, so that it cleans up the temp files for me?

I need all these details, because it's going to be handling zillions of files a day and it has to clean it up consistently, or it will quickly run out of disk space.

Is there some doc somewhere where it's all detailed in?


It's the latest IW, in http.sys service, BTW. Delphi 10.4.1.

Print this item

  no-cache for temporary files
Posted by: iwuser - 02-11-2022, 03:44 AM - Forum: IntraWeb General Discussion - Replies (4)

I'm creating lots of tmp files with TIWAppCache.AddFileToCache(self,... calls or similar and then serve them to client on request, but the problem is that I reuse the same names (matching original file names) and the browser caching messes it up for me.

I can see IW is sending these headers ("cache-control: private"), see attached.

And no matter what I tried, this does not change. I tried extra headers in the form, as well as AllowCaching & CacheControlEnabled in the server controller, but neither makes any difference.



Attached Files Thumbnail(s)
   
Print this item

  Scan tool for IntraWeb App
Posted by: ozelaya - 02-10-2022, 04:57 PM - Forum: IntraWeb General Discussion - Replies (3)

Hi,

What tools(comercial or free) can be used to check a IntraWeb App to check for Security Vulnerabilities,DDos etc.

I'm have a customer asking for a summary of a pen testing report for my Intraweb app.

Thanks in advance,

Omar Zelaya

Print this item

  How to remove DLL name from URL in ISAPI??
Posted by: Alexandre Machado - 02-09-2022, 11:41 PM - Forum: IntraWeb General Discussion - Replies (1)

This is one of the top 10 questions that I receive from time to time. 

Here is a list of options to solve this:

1) Use a reverse proxy on top of IIS.

A reverse proxy can sit on the same machine, or another machine (it will possibly increase the security if configured correctly). One great (and free option) is Apache. Any reverse proxy can be used and any decent one will work:

http://docs.atozed.com/docs.dll/deployme...Proxy.html

2) Use URLRewrite module to remove it

URLRewrite is an optional module of IIS that can be installed on top of it. It is basically a pre-processor that you can configure to change the URL of incoming requests:

http://docs.atozed.com/docs.dll/deployme...20IIS.html

3) Not exactly the same, but it's worth mentioning: Deploy it as Http.sys instead of ISAPI

Http.sys will give you the same performance of ISAPI, great flexibility (multiple apps can share the same standard ports 80 and 443) and it's easier to deploy than ISAPI:

https://doc.atozed.com/en/iw15/develop/c...-intraweb/

Enjoy!  Big Grin

Print this item