Hello Team,
It mean do we nned to manage 64 edition and if later on introduce any new feature then we need to changes in 64 edition? There is no any alternative solution you can suggest which can set in current platform?
Thanks, SS Team
Helllo Team,
I found this link on https://docs.aspnetzero.com/en/aspnet-core-angular/latest/Getting-Started-Angular Also same you can find on https://docs.aspnetzero.com/en/aspnet-core-angular/v8.6.0/Getting-Started-Angular
Thanks, SRTMDEV
In provided solution how can provide credential as you know that Azure Function just execute job without user interface. Is there any solution in which we can create special scope for specific resource and provide client id, secret id etc. We don't want to pass username and password.
Hi, any update on this context?
Hi, any update on this context? https://github.com/aspnetzero/aspnet-zero-core/issues/3190
Hi, any update on this context?
Hi, i already try with applying to AppService Implementation, however it still not working
Thanks
Hi,
Can we get all the third party libraries used in aspnet-core like you provide for angular?
https://docs.aspnetzero.com/en/aspnet-core-angular/latest/Infrastructure-Angular-Used-Libraries-Frameworks
Thanks
Hello,
It will be good for everyone if ASPNETZERO provide the third party licence notice, which also need to updated from yourside wheneever new libraries added/removed and the last update date.
This is aspnetcore provide the third party notice, https://github.com/dotnet/aspnetcore/blob/master/THIRD-PARTY-NOTICES.txt
Thanks
Hello maliming ,
Thanks for your response. I am able to check tenant if not available and redirect if not available but i am getting error in angular side when tenant is not available. see below screenshot.
It may be because of if tenant not available system not return any json and in frontend side system parsing the result in XHR request. I am able to solve it by try catch. Check below code and Please suggest if any better way to solve it.
xhr.onreadystatechange = () => {
if (xhr.readyState === XMLHttpRequest.DONE) {
if (xhr.status === 200) {
let result;
try {
result=JSON.parse(xhr.responseText);
} catch (e) {
window.location.href = xhr.responseURL;
}
success(result);
}else if (xhr.status !== 0) {
alert(abp.localization.localize('InternalServerError', 'AbpWeb'));
}
}
};
Any other suggestion to sove it?