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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 97,113
» Latest member: Ibet88bar9
» Forum threads: 2,426
» Forum posts: 11,370

Full Statistics

Online Users
There are currently 1209 online users.
» 2 Member(s) | 1204 Guest(s)
Applebot, Bing, Google, Ibet88bar9, tylekeo247vn

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

 
  Need Guidance for Effective IntraWeb Deployment!!
Posted by: danielljose - 01-28-2025, 09:22 AM - Forum: IntraWeb General Discussion - Replies (2)

Hi everyone,

I have been working on a project using IntraWeb.., and I am encountering some challenges with deployment. I have built the application locally but when I try to deploy it to a server.., the app either fails to respond or throws random errors. I suspect I might be missing something in the configuration or handling server-specific settings incorrectly.

Here are a few things I have done so far :-

Ensured the required DLLs are uploaded.
Checked for firewall or port restrictions on the server.
Confirmed the server has the necessary runtime environment installed.

Despite these.., I am still stuck. Could someone guide me through the best practices for deploying python certification IntraWeb applications.., especially for IIS or standalone deployment: ?? Any troubleshooting tips, potential pitfalls or tools to debug would be greatly appreciated !!

Thanks in advance for your help !! Looking forward to learning from the expertise in this community.

Best regards,

Daniel Jose

Print this item

  TIdTCPServer connection limits?
Posted by: Justin Case - 01-26-2025, 08:43 PM - Forum: Indy - Replies (3)

Hello,

So my server is working with quite a complex ACL that allows user groups and permissions to be changed for users in real time without logging off and back on again. The good old 'Apply' button has it's uses but not in something where I may need to restrict something fast..

Anyhow, when running on my Win7 Pro box (2x 4core proccys at 3GHz, 16GB ram) it maxes out with 93 clients connected. After that, i can launch new clients but they fail to connect (or at least if they do connect, they do it fast and disconnect without me noticing).

At this point, the server memory according to task manager is: 137,668K - which doesn't seem a lot when some instances of chrome can use far more than that!

I'm using Delphi 6 (32bit obviously).

Any ideas where i start with this?

Thanks

Print this item

  Error in installation of Intraweb 16
Posted by: v.lasquibar@telefonica.net - 01-25-2025, 06:07 PM - Forum: IntraWeb General Discussion - Replies (7)

Hi,
I have in my computer (Win 11 24H2) 2 instances of Delphi: Delphi 10.2.3 Tokio, and Delphi 12.1 CE. I've just bought Intraweb 16. If I run installation with target Delphi = 12.1, everything works fine. However, when I select Delphi 10.2, I get error shown in attachment

I've tested in 2 computers, and I've got same error.
Any idea?

Best regards,
                 Venancio Lasquibar



Attached Files Thumbnail(s)
   
Print this item

  Server chrashs
Posted by: joergb - 01-23-2025, 10:04 AM - Forum: IntraWeb General Discussion - Replies (5)

Hello

I have a Server in IntraWeb, Application mode, with 9 Pages.

the ServerControllerBaseConfig looks like this:

Code:
void __fastcall TIWServerController::IWServerControllerBaseConfig(TObject *Sender)
{
  TmainForm::SetURL("/", "mainForm"); 
  TwakoForm::SetURL("/", "wakoForm"); 
  TadrForm::SetURL("/", "adrForm"); 
  TzahlForm::SetURL("/", "zahlForm"); 
  TpaypalForm::SetURL("/", "paypalForm");   
  TendeForm::SetURL("/", "endeForm"); 
  TbestellForm::SetURL("/", "bestellForm"); 
  TNexiForm::SetURL("/", "nexiForm"); 
  TnexiErrForm::SetURL("/", "nexiErrForm"); 

  RegisterContentType(L"application/json");   


  ...
}

and in mainform-create is the alloc of these pages like:


Code:
void setAsMainForm() {
  TmainForm::SetAsMainForm();
}
#pragma startup setAsMainForm


void __fastcall TmainForm::IWAppFormCreate(TObject *Sender)
{
try {
        wakoForm = new TwakoForm(this);
        adrForm  = new TadrForm(this);
        bestellForm = new TbestellForm(this);
        zahlForm = new TzahlForm(this);
        endeForm = new TendeForm(this);
        paypalForm  = new TpaypalForm(this);
        nexiForm  = new TNexiForm(this);
        nexiErrForm  = new TnexiErrForm(this);
    }
catch(Exception &ex)
    {
      CreErrTxt = "Exception creating Forms : " + ex.Message;
      isCreErr = true;
    }
...



if (isCreErr)
 throw Exception(CreErrTxt)

most times , it works.
but if an error occurs, I throw an exception to end this session.
This may happen, if something goes wrong in wakoForm->Create or other constructor calls.

If I throw a Exception like described, these Session dies and thats ok.
But now, other sessions can no longer get created. Every new one comes with an access violation when created by "new" .

I can't find out, why
I solved it by notice the exception but throwing it in onShow, instead of onCreate. Now it works.

I looked for hours to find a reason, but it seems , that an Exception in mainForm.create prevent the server from creating new sessions .

CBuider 10.2.3   IW 15.6.7




greetings from germany
  jörg

Print this item

  TIWFileUploader em uma aplicação com múltiplos forms
Posted by: CantuStange - 01-21-2025, 05:47 PM - Forum: IntraWeb Dúvidas Gerais - Replies (2)

Olá,
Estou ajustando uma aplicação para utilizar múltiplos forms, de forma similar ao projeto MultiPageApp do Git da Atozed. 
Entretanto, encontrei uma situação em que não sei como progredir. Conforme alguns testes com o componente TIWFileUploader o evento OnAsyncUploadCompleted não é chamado quando o form pai não é o form ativo, esse é o comportamento correto da aplicação?

Anexei um projeto de exemplo para simular a situação, conforme os seguintes passos:
1. Abra o segundo form em uma nova aba e teste o file uploader verificando se o componente IWImage é atualizado ao fazer o upload de uma imagem.
2. Recarregue a página da aba anterior para torná-la o form ativo.
3. Teste novamente o upload do file uploader do segundo form. Agora o componente IWImage não é atualizado.

Estou usando o IntraWeb 15.6.0.

Há algo de errado na forma que estou utilizando o componente?



Attached Files
.zip   FileUploaderTest.zip (Size: 81.81 KB / Downloads: 1)
Print this item

  IWServerSession was compiled with a different version...
Posted by: Peter Home - 01-21-2025, 01:19 AM - Forum: IntraWeb General Discussion - No Replies

I've just upgraded from Standard to Ultimate to gain access to the source code to aid in debugging. I have downloaded the latest version (iw15.6.7.exe) and the latest sources (IWSource15.6.7_20240916.zip). I have added the relevant paths to the Library.

When trying to compile it returns the error:

IWServerSession was compiled with a different version of IWIpAccessTable.TIWIpAccessTable

I note that there is no source for IWServerSession but there is for IWIpAccessTable.

Should the source for IWServerSession be included in the Ultimate edition? If not, how do I get around this issue?

Thanks

Print this item

  Flowcharts / software design
Posted by: Justin Case - 01-17-2025, 10:36 PM - Forum: Delphi General Discussion - Replies (1)

Any tips for a software designer / flowchart thingy?

I'm working on a server, it's getting complicated now and I am struggling drawing out objects, their properties and logic flowcharts on A4 bits of paper. It's just not a strength I have.

Any freeware out there that I can use? - It needs to let me design objects with their properties and then basic flowcharts - preferably with events..

I am really struggling to keep it all in my head!

Print this item

  IWModalWindow com posicionamento errado
Posted by: Eduardo Flaeschen - 01-10-2025, 06:24 PM - Forum: IntraWeb Dúvidas Gerais - No Replies

Estou com um problema no IWModalWindow e preciso de uma ajuda: Se meu Datatable está mostrando a lista com 10 registros fica tudo bem, ao acionar o botão meu relatório é mostrado corretamente na posição no topo dá página. Agora, se reconfiguro para mostrar 25, 50  ou 100 registros e navego rolando para baixo e chamo o relatório, o modal já abre na metade da tela. E quanto mais baixo estiver o registro na grid, mais baixo é aberto o modal. Já tentei alterar as configurações do IWModalWindow1 mas nada muda.
Minha versão é 15.6.1 e o Delphi é 10.2 Upd 3.



Attached Files Thumbnail(s)
   
Print this item

  Another NewB problem
Posted by: Sugarloafer - 01-09-2025, 06:09 PM - Forum: CrossTalk General Discussion - Replies (1)

I just installed 2.035. Running Delphi 12.3

When I try to load a user assembly, I get the following error:

Unable to load assembly:
[ReflectionTypeLoadException]
Could not load type
'System.Runtime.InteropServices.ICustomMarshaler' from assembly
'System.Runtime.InteropServices, Verson 4.0.0.0, Culture=neutral,
PublicKeyToken=bb03f7f11d503a'.


I have loaded GAC assemblies mscorlib and System.Runtime.InteropServices.


System Info

RAD Studio 12 Version 29.0.53571.9782
Windows 10 (Version 22H2, OS Build 19045.5247, 64 bit Edition)

.NET 9.0.101
16GB Ram

Print this item

  IntraWeb Lazarus AsyncRender
Posted by: almsoares - 12-30-2024, 02:17 PM - Forum: IntraWeb General Discussion - Replies (5)

Hi

I'm a Pascal (Lazarus/Delphi) and C# developer and I'm starting to use IntraWeb.
I recently purchased IntraWeb Ultimate Edition and the summary is that in 2025 I want to migrate my company's systems to IntraWeb Lazarus.

Studying the tool, I manually migrated the AsyncRender example from Delphi to Lazarus 3.6. When executing the commands listed below, the same "ACCESS VIOLATION" error occurs

Code:
FRegion := TIWRegion.Create(Self);
FRegion1 := TIWRegion.Create(Self);
FTabControl := TIWTabControl.Create(Self);
FAccordion := TIWjQAccordion.Create(Self);
FjQPageControl := TIWjQPageControl.Create(Self);

Do I need to make some corrections to my code or is it an IW error?

   

   



Attached Files
.zip   AsyncRender.zip (Size: 146.12 KB / Downloads: 0)
Print this item