I have a service callout that should make a post for a azure function. In a sample Edge project, the call works normal, however, in another that is not edge, the call does not work and the following error:
{
"fault": {
"faultstring": "Execution of ServiceCallout ServiceCalloutLog failed. Reason: timeout occurred in ServiceCalloutLog",
"detail": {
"errorcode": "steps.servicecallout.ExecutionFailed"
}
}
}
Here is my ServiceCallout:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ServiceCallout async="true" continueOnError="false" enabled="true" name="ServiceCalloutLog">
<DisplayName>ServiceCalloutLog</DisplayName>
<Properties/>
<Request clearPayload="false" variable="myRequest">
<Set>
<Headers>
<Header name="Accept">application/json</Header>
</Headers>
<Verb>POST</Verb>
<Payload contentType="application/json" variablePrefix="@" variableSuffix="#">
{
"a":"a"
}
</Payload>
</Set>
<IgnoreUnresolvedVariables>false</IgnoreUnresolvedVariables>
</Request>
<Response>calloutResponse</Response>
<Timeout>500000</Timeout>
<HTTPTargetConnection>
<Properties/>
<URL>https://ayrton-function.azurewebsites.net/api/HttpTriggerCSharp1?code=3TDNxVDdxmfXtzgABmaMvzyms1MNyWP4KxROq2Lcv7IBMrRg04I3xQ==</URL>
</HTTPTargetConnection>
</ServiceCallout>
Someone can help me?