HI, we solved it, thanks for the support!
Hi, sorry... try to exclude DevExpress reference; it's a thirdpart software, but isn't necessary for the test. We used it to other funcionality
Hi, try this please.
https://we.tl/t-E---
Hi, I sent the link to download the files with wetransfer. Thank you
Hi, we need to import the SignalR service to manage the messages of application. The connection run succesfully, but when I send a message, the Agular client don't show it. This is the client code:
constructor(
public readonly alarmService: MachineAlarmService,
public readonly machineCommonService: MachineCommonCommandService,
public sharedService: SharedService,
) {
this.connection = new signalR.HubConnectionBuilder()
.withUrl(`https://localhost:44351/signalr-hubs/chat`, {
accessTokenFactory: () => this.oAuthService.getAccessToken(),
})
.build();
this.connection.on('BroadcastMessage', this.handleMessage);
this.connection
.start()
.then(() => {
console.log('Connection started');
})
.catch(err => console.error(err.toString()));
}
handleMessage = (message: any) => {
this.messageList.push(message);
console.log('deneme');
console.log(message);
};
Hi, How can i log the POST API in my Database? There are some calls, but only Put or Get Thanks. Maybe I must implements anythings (interface)?
Hi.... Oh yes, and I have tried few times, but it doesn't work.
HI, I created a solution and then copied it to another folder. I opened the solution in the abp suite, and added another entity, but by clicking "Save and Generate", the angular code is not created.I only get the back and. Thanks
Hi, We need to use the application on a totem offline. Unfortunately, the framework use the link https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap to get the fonts. Where we can override this setting to get local css? Thanks
Hi Anjali_Musmade,
i solved the problem with add "optimization": false,
, and modifiy this part:
maximumWarning": "5mb",
maximumError": "8mb"
Thank you so much!