Hi,
I developed a protocol that receives a message from an automation script and returns a list of data. I'm using the InterApp resource to perform this task and I see that the automation sends the request and the protocol returns the response perfectly, but, for some reason, the script goes into timeout. I am displaying the request and response parameters and I see that communication between them is correct.
Hi Robin, I\'ve found the error.
The executor\'s request and response classes (AlarmFetcherRequestMessage and AlarmFetcherResponseMessage) were in the same namespace, as they should be (I created a dll library). However, the AlarmFetcherResponseMessage class has a property that contains a list of objects of type \"Alarm\", which was not declared in the same namespace.
I put them all in the same namespace and it worked!
Thank you!