Blob container naming rules
// Create blob container for imagesblobstorage = storageaccount. createcloudblobclient (); cloudblobcontainer Container = blobstorage. getcontainerreference ("file_upload_folder"); container. createifnotexist ();
When you execute the precedingCodeWhen running, it will throw a very strange problem: One of the request inputs is out of range.
It is blobstorage. getcontainerreference ("file_upload_folder"); this location is incorrect.
The folder name string is generally the same as that for Windows. Windows Azure is so strange that Google has encountered the same problem.
Reference posts from Foreign Forums
The recommended rules are as follows:
A: Only lowercase letters are allowed.
B: numbers allowed
C: allows the font size of a single internal connection.
D: No space can be protected.
E: cannot contain any punctuation marks (except for hyphens)
Change "file_upload_folder" to "fileuploadfolder" OK!
Is the underline invalid? If the problem is solved, try again later.