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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 96,894
» Latest member: tylebongdafan
» Forum threads: 2,426
» Forum posts: 11,370

Full Statistics

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

Latest Threads
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
Today, 03:02 AM
» Replies: 0
» Views: 49
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
Yesterday, 09:03 AM
» Replies: 0
» Views: 44
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
Yesterday, 01:48 AM
» Replies: 0
» Views: 66
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 323
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 162
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 512
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 155
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,042
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 294
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 848

 
  ServerInternalFiles Access Location
Posted by: joel - 08-02-2018, 12:07 PM - Forum: IntraWeb General Discussion - Replies (3)

If I need to use the ServerInternalFiles how and where do I access them?

Print this item

  Triggering component event from raw text HTML element -- Answered
Posted by: mdomke - 08-02-2018, 03:29 AM - Forum: IntraWeb General Discussion - Replies (5)

Is there a way to trigger an IWControl event from a HTML element created in raw text?

For example, if I create a series of HTML elements, for example anchor tags <a>, using the raw text mode of an IWText component, can I hook the onClick event of that HTML element to an onClick event defined in an IWForm, or the WebApplication for that matter?

I'm trying to create a visually unique navigation and the only way I found I can do this is by using the raw text mode of the IW Text component. I need the HTML elements within the raw text to be interactive and I need that interaction to be managed by the WebApplication session, for example, navigating to another page.

I hope this makes and any insight and especially code examples would be much appreciated.

Many thanks,
Michael

Print this item

  hhtp.sys windows server 2016
Posted by: Alain - 08-01-2018, 12:20 PM - Forum: IntraWeb General Discussion - Replies (2)

I install my HTTP.sys application in standalone mode on my server, it works perfectly
TIWStartHSys.Execute (True);

When I install it as a service
TIWStartHSys.Execute (True);
The app does not respond

that's what I did:
MyApp.exe / Install
net start MyApp

I checked, the service runs, I opened port 8888

Windows Server 2016 Standard (64-bit)

merci

Print this item

  HTTP.sys deployement
Posted by: Alain - 08-01-2018, 10:14 AM - Forum: IntraWeb General Discussion - No Replies

Hello

I converted my application to HTTP.sys when I connect I have the following message (see image)

I'm using MYSQL tables that are open in the "IWUserSessionBaseCreate" event
this event is no longer called and therefore the tables are no longer open.

If I test my app with:
TIWStartHSys.Execute (True);
everything is working properly.

I may not be very well understood what I needed to deploy my application, thank you for your help

Delphi Tokyo 10.2 and update 2
intraweb 15.0.10

Alain



Attached Files Thumbnail(s)
   
Print this item

  IntraWb 15.0.10 is out
Posted by: Alexandre Machado - 07-31-2018, 10:34 PM - Forum: IntraWeb General Discussion - Replies (3)

Hi guys,

new update available: https://www.atozed.com/2018/07/15-0-10/

Enjoy!

Print this item

  Linux support ?
Posted by: denville - 07-31-2018, 05:12 PM - Forum: IntraWeb General Discussion - Replies (3)

Hi, following my amazing experience earlier this year, I now have a requirement to add a support and configuration web page to a Linux console application (Ubuntu).  There was a lot of talk about Linux, may I ask, is anything available that would allow me to design an Intranet web page and add a server to the Linux console application ?

Thanks,

Denville.

Print this item

  Dynamic creation TIWRegion
Posted by: Rassamaha78 - 07-31-2018, 02:14 PM - Forum: IntraWeb General Discussion - Replies (2)

I want to create my own analogue ListBox with custom Items. Try use TIWRegion for it:

Code:
//TBetslipItem = class( TIWRegion );

with TBetslipItem.Create( Self ) do
begin
 Parent := rgnBetslip;// rgnBetslip - primary TIWRegion
 Top    := ( rgnBetslip.IWComponentsCount - 1 ) * 120;
 Left   := 0;
 Width  := 120;
 Height := 120;
 Color  := $00303030;
 RenderInvisibleControls := True;
end;
 
  
 When I create (On Button Click) a component the first time, everything works, But if  create more components, i can see only the last one created:

   
   
   

Number in title shows current rgnBetslip.IWComponentsCount;

What could be the problem ?

P.S. If instead of TIWRegion using TIWRectangle then such a problem does not arise, but I can not place any components on TIWRectangle.

The problem is solved. I did not specify the name of the component, for example:
Name := 'BetslipItem' + IntToStr( rgnBetslip.IWComponentsCount );

Print this item

  ISAPI memory in 32 bits
Posted by: ronaldobim - 07-31-2018, 11:49 AM - Forum: IntraWeb General Discussion - Replies (5)

Hello, we know that in a standalone application 32bits in delphi supports 2GB of memory, in ISAPI applications does this limitation exist as well? or is this limit for each session?

Print this item

  Intraweb 15.0.x, Http.sys and cookies creation problem
Posted by: aimpera - 07-31-2018, 08:22 AM - Forum: IntraWeb General Discussion - Replies (2)

Hi,
Intraweb 15.0.9 on Delphi 10.2.3 (Tokyo)

Code for create a cookie:


Code:
WebApplication.Response.Cookies.AddCookie('name', 'value', IncDay(date, 30));


With Indy mode ( TIWStart.Execute(True) ) works correctly

With new Http.sys ( TIWStartHsys.Execute(True) ) the cookie is'n created.

Why?

Best Regards, Alf.

Print this item

  IWTabControl TabHeight
Posted by: Rassamaha78 - 07-29-2018, 12:57 PM - Forum: IntraWeb General Discussion - Replies (6)

Im try use Intraweb 14.2.8. How to change TabHeight ? I set TabRowHeight to 32, and TabHeight to 32:

   

has changed in design time:

   

but in browser TabHeight does not change, it remains 16-20, although the TabRowHeight has changed.

   

Print this item