Updated specific locations to be searchable, take a look at Las Vegas as an example.

This post has been de-listed

It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.

1
httpService timeout isn't doing quite what I expected - can anyone help?
Post Flair (click to view more posts with a particular flair)
Post Body

I am testing against a 3rd party endpoint for timeouts when consuming their data, I've set my timeout to 5000 but my httpSertvice.post continues way past that time, am I doing something wrong?

My module setup;

imports: [
HttpModule,
HttpModule.registerAsync({
useFactory: () => ({
timeout: 5000,
maxRedirects: 5,
}),
}),

]

My httpService.post;

async sendHttp(xmlToSend): Promise<AxiosResponse\> {
xmlToSend = xmlToSend.replace(/>\s*/g, '>'); // Remove space after >
xmlToSend = xmlToSend.replace(/\s*</g, '<'); // Remove space before <
xmlToSend = xmlToSend.replace(new RegExp("\\n", "g"), '');
const headersRequest = {
'Accept': '*/*',
'Content-Type': 'text/xml'
};
return await this.httpService.post(
'https://blahblah/webservices/onlineflow.asp',
xmlToSend,
{
headers: headersRequest,
responseType: 'text'
},
).toPromise();
// return response;
}

Author
Account Strength
90%
Account Age
7 years
Verified Email
Yes
Verified Flair
No
Total Karma
691
Link Karma
293
Comment Karma
398
Profile updated: 2 days ago
Posts updated: 3 weeks ago

Subreddit

Post Details

We try to extract some basic information from the post title. This is not always successful or accurate, please use your best judgement and compare these values to the post title and body for confirmation.
Posted
2 years ago