Reputation: 7458
I am following the HelloWorld example to learn how to deploy and execute an orleans app in Azure. I was able to make it work locally. When I deployed it azure, it is timing out. I followed the azure debugging link and was able to find out what is happening in the server.This is the error I am getting at the server
w3wp.exe Error: 0 : Client.Initialize failed with exc -- One or more errors occurred.. Will try again
After some research in orleans code I found the place where this particular error is thrown. It states if the gate way is not found, this error is thrown.
I am stuck here, anyone has any pointers in how to go about trouble shoot this issue?
Thanks
Upvotes: 0
Views: 156
Reputation: 1383
Please follow that sample: https://github.com/dotnet/orleans/tree/master/Samples/AzureWebSample It has all the pieces you need for the deploying Hello World to Azure. In your case it looks like you only deployed the client and not the silos.
Upvotes: 1