Asynchronous HttpClientRequest: Authentication Error Handling Issue | Community
Skip to main content
Level 2
July 24, 2019
Solved

Asynchronous HttpClientRequest: Authentication Error Handling Issue

  • July 24, 2019
  • 6 replies
  • 4674 views

Hi,

I am invoking HttpCleintRequest asynchronously from the JavaScript within the workflow.

“compete” function is working fine in all scenarios the except following –

  • In case of invalid authorization token (due to validity expiration) it’s not invoking the complete handler. So, HttpClientRequest.wait activity is indefinitely waiting for the complete action to be performed for this request. I have waited till 1 hour for the completion, but still it’s not invoked (thought that it will set status as timeout in complete action)

  My question is how to handle this, which function need to implement to handle this scenario?

 

Getting below error in the log– 

Below is the sample code. Complete part is not invoking whenever there is any error in the Authorization value (highlighted)

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Jonathon_wodnicki

Hi,

A cleaner workaround would be to forgo the buggy HTTPClientRequest() and instead use shell scripting with curl:

Is this a single call though?

Thanks,

-Jon

6 replies

Jonathon_wodnicki
Community Advisor
Community Advisor
July 24, 2019

Hi,

You have the params out of order in that execute() call, swap the last two.

Thanks,

-Jon

ADB407207Author
Level 2
July 25, 2019

Hi,

Tried to swap last 2 params. but in this case, valid scenarios (i.e. when token is valid) are also not working, always getting following error –

Thanks

Jonathon_wodnicki
Community Advisor
Community Advisor
July 25, 2019

Hi,

Make sure your URL is whitelisted in instance conf, or turn off URL security in instance conf.

Thanks,

-Jon

ADB407207Author
Level 2
July 26, 2019

Thanks for the reply Jon. However probably I was unable to explain the exact scenario, my code is working as expected for all scenarios. Only when somehow authorization fails, it was unable to invoke the complete operation. As a result the workflow was getting stuck (more specifically the JS activity), as HttpClientRequest.wait activity was waiting for the complete operation to be performed.
     For the workaround, created a separate monitoring workflow, which will monitor the process and it will kill and restart the main workflow during this scenario.

Thanks,

Sitangshu

pablo_rosero1
Level 9
July 30, 2019

Thanks for your help so far wodnicki​!

Any on why authorization fails getting the workflow stuck?

Jonathon_wodnicki
Community Advisor
Jonathon_wodnickiCommunity AdvisorAccepted solution
Community Advisor
July 31, 2019

Hi,

A cleaner workaround would be to forgo the buggy HTTPClientRequest() and instead use shell scripting with curl:

Is this a single call though?

Thanks,

-Jon