Is there any way to access an azure table using the API from within a virtual network? The storage account was created pre-virtual network. Currently, the code works fine (a test worker role) that creates a table, but fails when I place it inside a virtual network.
It's not possible to report on the exception being thrown as nothing is shown in diagnostics
CloudTable table = tableClient.GetTableReference("test");
bool retVal = table.CreateIfNotExists();
Thanks