Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

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"
        })
    };
Showing 1 to 1 of 1 entries