I have received same issue . Any suggestions and troubleshooting steps
What is causing Error code 11402 The value of the property '' is invalid: 'Value does not fall within the expected range.'. Value does not fall within the expected range.?
I am trying to connect to an API that I have validated works via Postman from the virtual machine. Whenever I create the linked service in Azure Data Factory, it returns the error below;
Error code11402
DetailsThe value of the property '' is invalid: 'Value does not fall within the expected range.'. Value does not fall within the expected range.
However, the message does not specify which property is causing the error nor indicate what needs to be corrected. Below is the JSON code for the connection.
Any help diagnosing and correcting this would be greatly appreciated.
{
"name": "<Removed for security purposes>",
"type": "Microsoft.DataFactory/factories/linkedservices",
"properties": {
"type": "RestService",
"typeProperties": {
"url": "<Removed for security purposes>",
"enableServerCertificateValidation": true,
"authenticationType": "Basic",
"userName": <Removed for security purposes>,
"encryptedCredential": <Removed for security purposes>,
"requestBody": "{\n \"matnr_low\": \"000000000050000000\",\n \"matnr_high\": \"000000000050000009\"}"
},
"annotations": []
}
}
Azure Data Factory
3 answers
Sort by: Most helpful
-
-
George, Thomas 0 Reputation points
2024-08-02T18:25:47.46+00:00 I also have the same issue for my data factory which use service principal authentication to managed instance. Please advise if you have any suggestion
-
George, Thomas 0 Reputation points
2024-08-02T18:55:39.9233333+00:00 I have resolved the issue. In my data factory i was using autoresolve IR which has been replaced with selfhosted IR and that resolved the issue. Below link helped me to resolve the issue