Skip to content

Commit 5cb7d41

Browse files
committed
Added message re: error message for beta/GA versions.
1 parent c8ca6cc commit 5cb7d41

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

articles/storage/blobs/storage-blob-object-model.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,39 @@ For more information about naming blobs, see [Naming and Referencing Containers,
6868

6969
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.
7070

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.
86+
RequestId:<REMOVED>
87+
Time:2023-05-19T17:10:34.2972651Z
88+
</Message>
89+
<HeaderName>x-ms-version</HeaderName><HeaderValue>yyyy-mm-dd</HeaderValue>
90+
</Error>
91+
```
92+
93+
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:
96+
97+
- [.NET](/dotnet/api/overview/azure/storage?view=azure-dotnet#invalidheadervalue-error-message-when-using-beta-version-of-sdk)
98+
- [Java](/java/api/overview/azure/storage?view=azure-java-stable#10-invalidheadervalue-error-message-when-using-beta-version-of-sdk)
99+
- [JS](/javascript/api/overview/azure/storage?view=azure-node-latest#known-issues)
100+
- [Python](/python/api/overview/azure/storage?view=azure-python#known-issues)
101+
102+
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+
71104
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.
72105

73106
## [.NET](#tab/dotnet)

0 commit comments

Comments
 (0)