santiagoIT
santiagoIT

Reputation: 9431

Azure table storage: DataServiceClientException - "The condition specified using HTTP conditional header(s) is not met."

we have just deployed an Azure App and are getting these errors when updating an object in TableStorage?

Any ideas?

Thank you!

Upvotes: 1

Views: 852

Answers (1)

Philippe Lavoie
Philippe Lavoie

Reputation: 2593

Any code sample? Which language are you .NET?

Anyhow, you most likely didn't complete or have an error in the HTTP request header.

Possible problem:

  • Content-Length not the good value
  • Content-Type not set
  • Authentification header missing
  • If-Match:* missing in case of an update/merge/delete

Upvotes: 2

Related Questions