SqlFilter na assinatura de tópico do ServiceBus do Azure não está sendo filtrada

Eu tenho um aplicativo WinRT com o qual estou usando o Kit de ferramentas do Windows Azure para o Windows 8. Eu tenho uma configuração em que gostaria que os clientes inscritos ignorassem as mensagens postadas em um Tópico da ServiceBus se elas fossem o originador ou se a mensagem fosse mais antiga do que quando a assinatura foi iniciada.

Nas Propriedades de minha BrokeredMessage, adicionei 2 itens para cobrir esses cenários:

message.Properties["Timestamp"] = DateTime.UtcNow.ToFileTime();
message.Properties["OriginatorId"] = clientId.ToString();

clientId é um Guid.

O lado do assinante se parece com isso:

// ti is a class that contains a Topic, Subscription and a bool as a cancel flag.

string FilterName = "NotMineNewOnly";

// Find or create the topic.
if (await Topic.ExistsAsync(DocumentId.ToString(), TokenProvider))
{
    ti.Topic = await Topic.GetAsync(DocumentId.ToString(), TokenProvider);
}
else
{
    ti.Topic = await Topic.CreateAsync(DocumentId.ToString(), TokenProvider);
}

// Find or create this client's subscription to the board.
if (await ti.Topic.Subscriptions.ExistsAsync(ClientSettings.Id.ToString()))
{
    ti.Subscription = await ti.Topic.Subscriptions.GetAsync(ClientSettings.Id.ToString());
}
else
{
    ti.Subscription = await ti.Topic.Subscriptions.AddAsync(ClientSettings.Id.ToString());
}

// Find or create the subscription filter.
if (!await ti.Subscription.Rules.ExistsAsync(FilterName))
{
    // Want to ignore messages generated by this client and ignore any that are older than Timestamp.
    await ti.Subscription.Rules.AddAsync(FilterName, sqlFilterExpression: string.Format("(OriginatorId != '{0}') AND (Timestamp > {1})", ClientSettings.Id, DateTime.UtcNow.ToFileTime()));
}

ti.CancelFlag = false;

Topics[boardId] = ti;

while (!ti.CancelFlag)
{
    BrokeredMessage message = await ti.Subscription.ReceiveAndDeleteAsync(TimeSpan.FromSeconds(30));

    if (!ti.CancelFlag && message != null)
    {
        // Everything gets here!  :(
    }

Eu recebo de volta tudo - então não tenho certeza do que estou fazendo de errado. Qual é a maneira mais fácil de solucionar problemas com filtros de inscrição?

questionAnswers(2)

yourAnswerToTheQuestion