| Welcome, Guest |
You have to register before you can post on our site.
|
| 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
|
|
|
| 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
|
|
|
| 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
|
|
|
| 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
|
|
|
| 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!
|
|
|
| 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
|
|
|
|