sql azure - Saving file to blob storage and associated metadata to table storage using one HTTP Post -


i want upload file azure blob storage , save associated metadata relating file table storage. best way accomplish this? blob storage uri needs saved in table storage model data first need upload file blob storage before can save metadata.

would practice on 1 form? has got examples or tutorials point me towards

first of technically impossible achieve uris different , apis dealing azure blobs , table storage.

you have few options though. first blob api allows associating metadata blob. put blob rest api call has option x-ms-meta name:value. way single http request store both blob contents , metadata. if want strictly store metadata table storage , in one-shot, can route http request through web-server, post content , metadata server-side app, handles storing blob , table storage relevant content.


Comments