An Azure real-time data ingestion service.
Hello Verschinin Valentin,
Sorry for the confusion. You are correct.
You need to specify the message key using the REST API to include the PartitionKey in the HTTP header, not in the body.
Also, the API-version is correct as 2014-01
POST https://your-namespace.servicebus.windows.net/your-event-hub/messages?timeout=60&api-version=2014-01 HTTP/1.1
Authorization: SharedAccessSignature sr=your-namespace.servicebus.windows.net&sig=your-sas-key&se=1403736877&skn=RootManageSharedAccessKey
Content-Type: application/atom+xml;type=entry;charset=utf-8
Host: your-namespace.servicebus.windows.net
BrokerProperties: {"PartitionKey":"key1"}
{
"Body" : "event payload message"
}
Please let me know if you are still having issues with this.