0

I am having the function app in azure which reads the excel file of a particular column named "LoanNumber" when uploaded to Azure blob Storage and call node API with the following body, whenever an excel file has a column named "LoanNumber"

{
  status: "success"
}

, but when it didn't find the particular column name "LoanNumber" (i.e when function app reading an uploaded file from azure blog storage) it updates the node API with the request body as

{
 status: "failed"
}

the functionality is working fine when excel file as column name "LoanNumber", When I upload an invalid file it is not working, but when I monitored the logs of Function App. There is an error, which is mentioned below.

The remote certificate is invalid according to the validation procedure. when I uploaded invalid file

Due to this, the API is not calling

I have no clue about this. Please help me to solve this error.

akhil
  • 1,649
  • 3
  • 19
  • 31
  • 1
    Have you checked if the SSL certificate is invalid or expired in the TLS/SSL settings of azure function app? – Nancy May 19 '20 at 09:14

1 Answers1

0

From the error message, you may check if the SSL certificate is invalid or expired in the TLS/SSL settings of the Azure function app.

For more information, you could read this document---Use a TLS/SSL certificate in your code in Azure App Service

Nancy
  • 26,865
  • 3
  • 18
  • 34