Base solution for your next web application

Activities of "SRTMDEV"

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?

@maliming,

you solution not worked for me

Hello Team,

Thanks for immidiate reply. Your suggested solution works.

I have also checked where as it is commented that this issue has been covered in v6.8 relase. Can you let us know when we can aspect v6.8 will be release?

Thanks, Srtmdev Team (JP)

Showing 61 to 65 of 65 entries