I have a silverlight 5 project that invokes a method form my business logic layer (a DomainService class), this invoke method returns a string. My problem is that running this method may take couple of hours to perform and I need a way to avoid RIA timeouts. Any ideas?
It would be wiser to implement the call in two parts.
This is far superior to leaving a connection open and waiting.
Another possibility is to use something like SignalR to do the polling for you. When the server completes, you would expect to receive the result almost immediately.