| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 464 online users. » 2 Member(s) | 459 Guest(s) Bing, Google, Yandex, puppyheaven, tbhatia
|
| Latest Threads |
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 53
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Mikhael
06-18-2026, 04:58 PM
» Replies: 4
» Views: 600
|
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 70,261
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
06-04-2026, 09:14 AM
» Replies: 3
» Views: 462
|
Access Violation When Val...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-03-2026, 08:47 AM
» Replies: 2
» Views: 511
|
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: geraldtatum
06-02-2026, 06:24 AM
» Replies: 1
» Views: 408
|
weakpackageunit contains ...
Forum: IntraWeb General Discussion
Last Post: rlebeau
05-26-2026, 04:56 PM
» Replies: 4
» Views: 516
|
Custom 404 handler
Forum: IntraWeb General Discussion
Last Post: CfawesDwale
05-21-2026, 08:02 AM
» Replies: 0
» Views: 246
|
PopUp Menu
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 04:35 AM
» Replies: 4
» Views: 8,197
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 03:32 AM
» Replies: 3
» Views: 4,115
|
|
|
| How to limit the information of a Tidlog file |
|
Posted by: RCléroux - 03-24-2018, 08:21 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
https://stackoverflow.com/questions/49347189/how-not-to-include-the-information-of-the-files-appended-to-the-log-tidlog-file
The log file (Indy) of an email in SMTP format includes the information of the attached files that are not necessary for my needs.
Adding information from attached files greatly increases the log file and causes me problems reading this information. I keep this file in a "blob" field of the database. Reading this field is causing me problems. Do you have an example of a code that retains this information (other than the files attached)?
Here is the answer to this question:
The default TIdLog... components are meant to log whatever raw data is being transmitted/received over the socket connection, for purposes of debugging and replaying sessions. There are no real filtering capabilities. If you don't want portions of the emails being logged, you will have to use TIdLogEvent or TIdConnectionIntercept, or derive a custom TIdLog... or TIdConnectionIntercept... based component, to parse the raw data yourself, essentially re-implementing the SMTP and RFC822 protocols so you can choose to log only what you want
Do you have an example that would allow me to remember the information transmitted without the information of the linked files?
|
|
|
| Session specific files |
|
Posted by: mhammady - 03-24-2018, 07:08 PM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
Hello,
I have files stored in the DB. Those are confidential files, and we need to make them available ONLY to the user with a session. We don't want them to be available to other users who can track the URL traffic.
Is there is a way to store these files I a place only accessible to the genuine user with a valid session with IW 14.2.7?
Thank you
Mohamed
|
|
|
| Changing ancestor of TIWFrame |
|
Posted by: davenovo - 03-23-2018, 03:05 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
If I create a new intrawb frame the class looks as follows:
Code: TIWFrame1 = class(TFrame)
IWFrameRegion: TIWRegion;
private
{ Private declarations }
public
{ Public declarations }
end;
if I made a small change
Code: TMyFrame=class(TFrame)
end;
TIWFrame1 = class(TMyFrame)
IWFrameRegion: TIWRegion;
private
{ Private declarations }
public
{ Public declarations }
end;
When I close and reopen my program, the IDE complains that "property TabOrder cannot be found". This also happens if I create a new delphi frame in another unit, and then try to inherit the IW frame from that.
I have a regular TFrame that has some base functionality that I want to inherit in my IWFrame. Is there a way to change the ancestor of the TIWFrame1 to some other TFrame ?
|
|
|
| Reinstall Delphi 10.2.2 & IntraWeb ... |
|
Posted by: jorgo2018 - 03-21-2018, 02:47 PM - Forum: IntraWeb General Discussion
- Replies (7)
|
 |
Hallo,
we have Delphi XE8 + (IW, TMS) and Delphi 10.1 + (IW, TMS, cgDEVTools) installed on a machine.
Now we want to parallel install Delphi 10.2.2 + (IW, TMS, cgDEVTools).
Questions:
- Is it ok to just uninstall Delphi 10.1?
- Do we need an extra IntraWeb removal tool before uninstalling Delphi 10.1?
- Do you expect problems with TMS and cgDEVTools components?
Best regards
|
|
|
| Intraweb as windows service |
|
Posted by: davenovo - 03-20-2018, 10:00 PM - Forum: IntraWeb General Discussion
- Replies (33)
|
 |
Hello. 2 questions.
I know that you do not recommend deploying the Intraweb standalone server. There is also a web page here that describes deploying as a windows service.
I have 2 questions.
1. Is the window service as described above ok for production use? If not, what are the limitation I should be aware of?
2. Does this take exclusive control over the port to which its bound. i.e. I have a webserver using http.sys directly. It only handles requests if the request matches the URL it is serving. Otherwise, it passes the request along to anyone else listening to the same port. Does the webserver built into the Intraweb windows service described above behave in the same way?
|
|
|
|