Base solution for your next web application

Activities of "Elevonais"

Hi Ismcagdas,

Assuming, if we are edition service proxy

Example:

getEditions(): Observable<ListResultDtoOfEditionListDto> { let url_ = this.baseUrl + "/api/services/app/Edition/GetEditions"; url_ = url_.replace(/[?&]$/, "");

    let options_ : any = {
        observe: "response",
        responseType: "blob",
        headers: new HttpHeaders({
            "Content-Type": "application/json", 
            "Accept": "application/json"
        })
    };

if we change to Custom API url. we are able to hit the API

Example:

getEditions(): Observable<ListResultDtoOfEditionListDto> { let url_ = this.baseUrl + "/api/services/app/Test/TestApi"; url_ = url_.replace(/[?&]$/, "");

    let options_ : any = {
        observe: "response",
        responseType: "blob",
        headers: new HttpHeaders({
            "Content-Type": "application/json", 
            "Accept": "application/json"
        })
    };

Hi Team,

We are working Abp framework 3.5.0. After upgrading we facing issue of AbpSession.GetUserId as null. Unfortunately it works perfectly fine on Swagger. If we move API url into exsisting proxies it works fine. If we move that in customize proxies it throws the above error.

Showing 1 to 2 of 2 entries