You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-blob-object-model.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,39 @@ For more information about naming blobs, see [Naming and Referencing Containers,
68
68
69
69
The Azure SDKs contain libraries that build on top of the Azure REST API, allowing you to interact with REST API operations through familiar programming language paradigms. The SDKs are designed to simplify interactions between your application and Azure resources.
70
70
71
+
In rare scenarios, applications that have upgraded to the latest beta or generally available version of the SDK can receive an `InvalidHeaderValue` error message. This issue can occur when using any of the Storage libraries. The error message looks similar to the following sample:
72
+
73
+
```Console
74
+
HTTP/1.1 400 The value for one of the HTTP headers is not in the correct format.
75
+
Content-Length: 328
76
+
Content-Type: application/xml
77
+
Server: Microsoft-HTTPAPI/2.0
78
+
x-ms-request-id: <REMOVED>
79
+
Date: Fri, 19 May 2023 17:10:33 GMT
80
+
81
+
<?xml version="1.0" encoding="utf-8"?>
82
+
<Error>
83
+
<Code>InvalidHeaderValue</Code>
84
+
<Message>
85
+
The value for one of the HTTP headers is not in the correct format.
If you've upgraded to the latest beta or generally available version of the SDK and you experience this error, it's recommended that you downgrade to the previous generally available version of the SDK to see if the issue resolves.
94
+
95
+
You can view SDK-specific details at the following locations:
If the issue persists, or if the recommendation is not feasible, [open a support ticket](https://ms.portal.azure.com/#create/Microsoft.Support) to explore further options.
103
+
71
104
In the Azure Blob Storage client libraries, each resource type is represented by one or more associated classes. These classes provide operations to work with an Azure Storage resource.
0 commit comments