- Posts: 11
- Thank you received: 1
Question Routes broken?
- Javier
- Topic Author
- Offline
- New Member
-
Simply:
New Project/Brook Framework->Embedded server (Runtime or designtime)->Run raise exception "TBrookRoute: No router service registered. "
Some workaround?
Regards.
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
we will check this
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Md. Shariful Alam Khan
- Offline
- Junior Member
-
- Posts: 110
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
I hope my team to solve the problem
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Md. Shariful Alam Khan
- Offline
- Junior Member
-
- Posts: 110
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Md. Shariful Alam Khan
- Offline
- Junior Member
-
- Posts: 110
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- Md. Shariful Alam Khan
- Offline
- Junior Member
-
- Posts: 110
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
I start now

PilotLogic Architect and Core Programmer
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
use this patch for unit Brokers of your project
unit Brokers;
{$mode objfpc}{$H+}
interface
uses
BrookFCLHttpAppBroker, BrookUtils,
BrookRouter, BrookApplication; // <=====
implementation
initialization
TBrookRouter.RegisterService; // <=====
BrookRegisterApp(BrookFCLHttpAppBroker.TBrookApplication.Create); // <=====
BrookSettings.Port := 8080;
finalization // <=====
TBrookRouter.UnregisterService; // <=====
end.
please report here if the code work OK
screen from Typhon64 on Win7-64
PilotLogic Architect and Core Programmer
Attachments:
Please Log in or Create an account to join the conversation.
- Md. Shariful Alam Khan
- Offline
- Junior Member
-
- Posts: 110
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
because static link of packages in Typhon IDE give errors
and we forgot to add code in BrookIDEIntf.pas to start-up Brook application correct

Now we fix and BrookFCLHttpDaemonBroker applications
Please report any other problem
PS: pl_Brook 5.4.1
PilotLogic Architect and Core Programmer
Attachments:
Please Log in or Create an account to join the conversation.
- Md. Shariful Alam Khan
- Offline
- Junior Member
-
- Posts: 110
- Thank you received: 0
Attachments:
Please Log in or Create an account to join the conversation.
- Sternas Stefanos
-
- Offline
- Moderator
-
- Ex Pilot, M.Sc, Ph.D
and add -h to start application parameters
now you must write and code for this Embeded daemon server
more info at brook web page silvioprog.github.io/brookframework/
PilotLogic Architect and Core Programmer
Attachments:
Please Log in or Create an account to join the conversation.