0

I want to upload files from my local machine to windows azure containers using webclient upload method

UploadFile(Uri, String)

I dont want to use any cloud or azure api's to upload, reason being i am uploading files from Sql server integration services which does not support any cloud api's, so please can i know is their any way out upload the file to azure container

mahesh
  • 3,067
  • 16
  • 69
  • 127

1 Answers1

1

Really, the only way to handle that would be to use a SAS signature. You would need to send the client that needs to upload a valid SAS signature and then that client could just upload to that location. Creating the SAS signature can be done easily using the Storage Client.

dunnry
  • 6,858
  • 1
  • 20
  • 20