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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 99,727
» Latest member: febetgold
» Forum threads: 2,426
» Forum posts: 11,373

Full Statistics

Online Users
There are currently 839 online users.
» 2 Member(s) | 831 Guest(s)
Applebot, Bing, DuckDuckGo, Facebook, Google, Yandex, febetgold, Raja88lat

Latest Threads
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-21-2026, 05:33 PM
» Replies: 1
» Views: 375
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-21-2026, 05:31 PM
» Replies: 2
» Views: 410
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 313
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 657
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 382
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 826
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 337
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,531
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 507
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,230

 
  bug in FillRealTabOrders
Posted by: mazluta - 07-16-2020, 12:02 PM - Forum: IntraWeb General Discussion - Replies (6)

hi think there is bug in - the list is not maintained correctly and some of the obj in the list don't exists 
so - the render crash

------------------------------------  this is my bypass

procedure TIWForm.FillRealTabOrders;

  procedure FillList(AContainer: TIWContainer; AList: TIWListBase);
  var
    i: Integer;
    LCurrent: TObject;
    LTabOrderInterface: IIWTabOrder;
  begin
    for i := 0 to AContainer.TabOrderList.Count - 1 do
    begin
      Try //Yossi
        LCurrent := TObject(AContainer.TabOrderList[i]);
        if Assigned(LCurrent) then //yossi
        begin
        if LCurrent is TIWContainer then
        begin
          FillList(TIWContainer(LCurrent), AList);
        end
        else
        begin
          LTabOrderInterface := TabOrderInterface(LCurrent);
          if LTabOrderInterface <> nil then begin
            if LTabOrderInterface.HasTabOrder then begin
            AList.Add(LCurrent);
            end;
          end;
        end;
        end;
      Except //yossi
        on e: exception do
        begin
          Try
            logFileAppend('Error on  TabOrder FillList : I= ' + IntToStr(I) + ' Message= ' + e.Message);
          Except;
          End;
        end;
      End;
    end;
  end;

begin
  FRealTabOrderList := TIWListBase.Create;
  FillList(Self, FRealTabOrderList);
end;

Print this item

  not working in iframe
Posted by: fatersoft - 07-16-2020, 05:04 AM - Forum: IntraWeb General Discussion - Replies (2)

hi
The program built with Intraweb does not work properly in iframe
in 15.2
but in 15.1 is true

Print this item

  Allow only active sessions access to a THandlers?
Posted by: ioan - 07-15-2020, 09:12 PM - Forum: IntraWeb General Discussion - Replies (4)

I'm trying to implement Server-side datatables.  
In my template I have something like this:

Code:
<script type="text/javascript" class="init">
$(document).ready(function() {
$('#UTCDRTABLE').DataTable( {
                    "serverSide": true,
                    "processing": true,
                    "ajax": "GetSomeData",
                    "order": [[ 1, "desc" ]]
                });
} );
</script>

... and in the ServerController I registered a THandlers like this:

Code:
with THandlers.Add('', 'GetSomeData', TContentGetSomeData.Create) do
begin
  CanStartSession := true
  RequiresSessionStart := false;
end;

... and I want only users that already have an active session (logged in) to access https://myip/GetSomeData and if the user is not logged in, to be redirected to the login page (main page). 
The way is set up now, as in the code above, everyone can try to GetSomeData and any combinations of true of false I tried for CanStartSession,  RequiresSessionStart doesn't get me the result I need. Actually, if I change anything on how I declare the THandlers.Add, I never get to TContentGetSomeData.Execute

What am I doing wrong and is this the way to do it?

Print this item

  in jQGrid Demo Project
Posted by: mazluta - 07-15-2020, 09:05 PM - Forum: IntraWeb General Discussion - Replies (5)

from where exactly the grid take the Theme to use?

how come the header title become red?

much more - if i use select * from big table (large record) and use just one field - the iwjqDbgrid - crash

if i use 2 or more dbgrid on the form - all the form crash. and we are talking on 1 form in one project....

it's look IWjQDbGrid have some bugs....

Print this item

  runtime build iwjqDbGrid columns
Posted by: mazluta - 07-15-2020, 03:21 PM - Forum: IntraWeb General Discussion - Replies (4)

hi
i tried buid columns in a grid at run time.

begin
  IWjQDBGrid2.ClearGridData;
  IWjQDBGrid2.Columns.Clear;
  with IWjQDBGrid2.Columns do
  begin
    Add;
    TjQGridDBColumn(IWjQDBGrid2.Columns[0]).FieldName := 'Client_Code';
    TjQGridDBColumn(IWjQDBGrid2.Columns[0]).Title    := 'Code';
    TjQGridDBColumn(IWjQDBGrid2.Columns[0]).Visible  := True;
  end;

  with IWjQDBGrid2.Columns do
  begin
    Add;
    TjQGridDBColumn(IWjQDBGrid2.Columns[1]).FieldName := 'Client_Name';
    TjQGridDBColumn(IWjQDBGrid2.Columns[1]).Title    := 'Name';
    TjQGridDBColumn(IWjQDBGrid2.Columns[1]).Visible  := True;
  end;
  FDQuery1.Open;

  IWjQDBGrid2.RefreshData;
  IWjQDBGrid2.ShowColumn('Column0');
  IWjQDBGrid2.ShowColumn('Column1');


i see there are 2 columns in the grid.
but idont see the data...

any idea?

Print this item

Question is Intraweb Application safe
Posted by: amit.walters - 07-14-2020, 05:14 PM - Forum: IntraWeb General Discussion - Replies (3)

Sir
I develop Application for My University in Intraweb 15. One of my programmer friend said to me that your application uses too much java script and because of these java script your application is not safe. is it ture? I am not using any java script of my own. Every thing is created by Intraweb.

Print this item

  Problem with IWDBGrid Async refresh
Posted by: Comograma - 07-14-2020, 10:25 AM - Forum: IntraWeb General Discussion - Replies (32)

Until v15.2, when I did a IWDBGrid.Refresh, the grid would refresh properly and the regions where the IWDBGrid resides in would refresh and resize properly.
From v15.2 and even with v15.2.6, this isn't update correctly.
I attatched 2 images to explain what's happening.
What has changed that is provoque this behaviour and how to achieve the correct result like before?

Print this item

  Where to place dbxmss.dll
Posted by: oliver - 07-13-2020, 08:04 PM - Forum: IntraWeb General Discussion - Replies (10)

I am using a TSQLConnection component to access SQLServer 2014 with Delphi 10.2 and Intraweb 14.2.7. 

Its a 32 bits app. It works fine with IIS on my development server.

However, when installed on a production server (IIS 10.0. xxx and Windows Server 2019), i get the message "Impossible to load dbxmss.dll (ErrorCode 126)." 

Where should i place dbxmss.dll on the production server to make it work ? 

Thanks for your support.

Print this item

  Intraweb ISAPI.dll, déploiement sur IIS avec SSL. fonctionnement standalone avec SSL
Posted by: siekoua - 07-13-2020, 03:56 PM - Forum: IntraWeb General Discussion - Replies (4)

Depuis plus de deux semaines j'essaie de déployer intraweb ISAPI dll sur IIS avec SSL. Je n'y parviens malgré toutes les configurations faite mon application démarre uniquement en local sur le serveur IIS. dès que je lance via le https. j'ai le message ressources not found.


Depuis plus de deux semaines, j'essaie de déployer la DLL intraweb ISAPI sur IIS avec SSL. Je ne réussis pas malgré toutes les configurations effectuées mon application ne démarre que localement sur le serveur IIS. dès que je lance via https. J'ai le message ressources introuvable

Help please. I need your help for deploy INTRAWEB ISAPI DLL On port 443
SSL 

Print this item

  connect css file to IWImage
Posted by: mazluta - 07-13-2020, 08:59 AM - Forum: IntraWeb General Discussion - Replies (6)

how can i connect the css file to the IWImage

how the IW will generate the connection between the css file and the image - by name? by id?

Print this item