Brent Pabst
Brent Pabst

Reputation: 1176

How do I configure an Azure role to connect to Windows Azure Storage Emulator using custom ports?

I needed to customize my storage emulator ports to deal with a system process that uses the same default ports. That all works fine.

Now, how do I update my Azure service role's configuration to use the updated ports?

Upvotes: 3

Views: 789

Answers (1)

user94559
user94559

Reputation: 60133

Untested, but would something like this work? From http://msdn.microsoft.com/en-us/library/ee758697.aspx:

BlobEndpoint=myBlobEndpoint;QueueEndpoint=myQueueEndpoint;TableEndpoint=myTableEndpoint;AccountName=myAccountName;AccountKey=myAccountKey

Upvotes: 1

Related Questions