IW 14.2.13 includes RAD Studio 10..4 Sydney support. This version was built from the same code base from version 14.2.12. So, IW 14 users should only update if you are also moving your project to RAD Studio 10.4.
it's look the that the region list or containers list not maintained well
unit IWBaseRenderContext;
line 216 - the fix not help
function TIWContainerContext.GetComponentContext(const AName: string): TIWBaseComponentContext;
var
idx: Integer;
p: Integer;
LContainerName: string;
LContainer: TComponent;
LBaseContainer: IIWBaseContainer;
//yossi
goAhead : Boolean;
begin
Result := nil;
if Not Assigned(FAliasContextList) then // yossi
exit;
goAhead := True; //yossi
Try //yoosi
idx := FAliasContextList.IndexOf(AName);
Except; // yossi
goAhead := False;
End;
// yossi
// if not goAhead then
// Exit;
//yossi if idx >= 0 then begin
if (idx >= 0) and goAhead then begin
Result := FAliasContextList.Objects[idx] as TIWBaseComponentContext;
end else begin
p := Pos('.', AName);
if p > 0 then begin
LContainerName := Copy(AName, 1, p - 1);
LContainer := GetControlInstance(LContainerName);
LBaseContainer := BaseContainerInterface(LContainer);
if Assigned(LBaseContainer) then begin
Result := LBaseContainer.ContainerContext.GetComponentContext(Copy(AName, Length(LContainerName) + 2, Length(AName)));
end;
end;
end;
end;
if i will do something like that in the VCL framework it would work....
any body have idea? is it always like this in intraweb?
is there any full documentation for any new components?
dose the demos are relevant to version 15.xxx ++
dose the demo for madexception working? in version 15.xxx
dose atozed have to respect some one how bought there components?
==========================
this is the same project with VCL ehlib components
==========================
Can anyone recommend a stable and safe solution for implementing WebRTC in IntraWeb applications ?
It is important that the IntraWeb application authorizes connections and manages WebRTC server connections.
Seems simple:
First machine has an public IP address (Computer in the company):
Server WWW (IntraWeb) + Server WebRTC + Client WebRTC
It can be as one application. It will be much easier and safer to communicate inside the application.
Second machine inside the NAT network (Employee's computer):
Only client WebRTC (Web browser)
Maybe there are some solution WebRTC server/client components ?