spongessuck

Results 20 comments of spongessuck

Here's what the properties look like in SBE: ![image](https://user-images.githubusercontent.com/6370382/172247287-3877c52a-36d6-4f39-9c38-7018d05d568a.png) You can see the 3 empty properties have been assigned the Boolean type. The values are null when sent to Azure...

No, the original message came from a c# client, and no values assigned to the properties dictionary were boolean types. On Mon, Jun 6, 2022, 23:57 Sean Feldman ***@***.***> wrote:...

SDK is from NuGet package "Microsoft.Azure.ServiceBus" version 5.0.8 or 5.2.0, depending on the client app. The code creating the message looks like this: ``` protected Message ToServiceBusMessage(object message, TimeSpan? timeToLive...

It's also worth noting that this problem doesn't happen when selecting and resubmitting multiple messages - SBE passes those along without issue. It only happens when resubmitting a single message...

I've just been downloading libraries with npm and adding filesystem references to files in node_modules. On Mon, Dec 24, 2018, 11:04 freemstr As of recent this problem became worse >...

Here's a snippet from the OWIN middleware that ensures tokens for each downstream API can be fetched silently: ```cs public override async Task Invoke(IOwinContext context) { var request = new...

@bgavrilMS I've attached verbose logs. I've also attached an example token cache value with 2 users' token info under a single user's key. This was while pointing IDistributedCache to a...

I am using Microsoft.Identity.Web.TokenCache, I left the defaults in terms of settings. Here is how it's set up: ```cs instance.RegisterSelf(() => { var openIdConnectAuthConfig = oidcConfigGetter(); var clientApp = ConfidentialClientApplicationBuilder...

Is there a better way for me to configure the cache? Would this issue make more sense in the microsoft-identity-web repo?

Authorization code flow. It's a web app that requests tokens for downstream APIs.