Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

angular 4 httpclient xml response

const headers = new HttpHeaders({ 'Content-Type': 'text/xml' });
headers.append('Accept', 'text/xml');
headers.append('Content-Type', 'text/xml');
this.http.get('getxmlurl', {headers: headers}).subscribe(response => {
  return '1234';
});

Hi I am using angular 4 httpclient to make a http get request from a spring controller which returns a XML response.

The problem I have is the response is ALWAYS NULL even though I can see the xml response from the chrome developer network tab.

I thought it might be something to do with the request header, angular 4 defaults to json however I am unable to change the request header with the code above. Can someone please advice.

Thanks

like image 848
user2106630 Avatar asked Jul 24 '17 08:07

user2106630


3 Answers

Set the responseType to text:

this.http.get('getXmlUrl', { responseType: 'text' }).subscribe(response => {
  console.log(response);
});

Allowed values for responseType:

  • arraybuffer
  • blob
  • json (default)
  • text

The responseType value determines how a successful response body will be parsed.

See Angular Docs:
HttpRequest # responseType
HttpClient # request()

like image 199
Martin Schneider Avatar answered Sep 21 '22 03:09

Martin Schneider


2019 Angular 7 above HttpClient Note with Code

Get Angular Response as Text or Xml NOT as Json

Some subtle changes may have occurred in Angular 7 after the other previous answers were written. This is like a detailed comment with code to MA-Maddin's answer.

@Injectable()
export class MyWidgetService 

   private myHttpClient: HttpClient;

   constructor(httpClient: HttpClient) {
      super(httpClient); // you MIGHT need this 

      this.myHttpClient = httpClient; 
      }


   getResAsObservableStr = () => { 

      // Override the JSON Default Behavior.
      // 3 special things for text from HttpClient 
      //    a: Calling the raw .get('url')  NOT get<string>('url') 
      //    b: override observe: 'body' 
      //    c: override responseType: 'text' 

      return this.myHttpClient.get('pathUrlForCall' 
                 , { observe: 'body', responseType: 'text'} );
   }


// In Calling Coponent 
export class MyWidgetComponent 
   valAsStr: string;  

  constructor(
    // more vars like Router...
    private myWidgetSvcRef: MyWidgetService) { }

  ngOnInit() {

    this.getMyStrValFromWeb();

  } // ngOnInit end

  getMyStrValFromWeb = () => {

    this.myWidgetSvcRef.getResAsObservableStr()
    .subscribe(valAsStr => {this.valAsStr = valAsStr; });  

  } // end getMyStrValFromWeb


// in your html template (one possible scenario)

    <someControl [(ngModel)]="valAsStr" > </someControl>
like image 32
Sql Surfer Avatar answered Sep 22 '22 03:09

Sql Surfer


The issue here is the HttpHeaders are immutable in angular. So instead of setting the values, you should set when you create the object. Something like

const headers = new HttpHeaders({ 'Content-Type': 'text/xml' }).set('Accept', 'text/xml');

But you are setting only request headers. If you want your response to be text/xml.

this.http.get('getxmlurl', { headers: headers, responseType: text/xml }).subscribe(response => { return response; });

You can remove headers unless you want to set request headers.

like image 21
Karthikeyan Mohan Avatar answered Sep 23 '22 03:09

Karthikeyan Mohan