The /EnableTableEndpoint commandline parameter no longer works
A few years ago we build an application that used CosmosDB and for local integration testing we used the CosmosDB emulator. We want to make some changes to the application, but found that it now is impossible to get the Table Endpoint to run in the Emulator. We use the following command line parameters to start the emulator:
/NoExplorer /DisableRateLimiting /EnableTableEndpoint
The Emulator starts with the SQL API enabled, However the default Table API connection string (that used to work) can no longer connect to the table api endpoint since it is not running:
"DefaultEndpointsProtocol=http;AccountName=localhost;AccountKey=C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==;TableEndpoint=http://localhost:8902/;"
Both http & https urls do not work.
http://localhost:8902/
https://localhost:8902/
According to the online documentation this should still work in the newest version of the emulator.
How do we get the Table API to run again?