Base solution for your next web application

Activities of "SRTMDEV"

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)

@maliming,

you solution not worked for me

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?

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

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

Hi, i already try with applying to AppService Implementation, however it still not working

Thanks

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?

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.

Showing 1 to 10 of 65 entries