Dave Syer
Dave Syer
/remove-lifecycle stale Please
/remove-lifecycle rotten
Agree, but I have no idea how to achieve it. All I know is bulk assignment works with an actual list of bytes, and `wasmtime._memory.Memory .data_ptr()` is masquerading as a...
This seems to work: ```python >>> import ctypes >>> data = (ctypes.c_ubyte*memory.data_len(store)).from_address(ctypes.addressof(memory.data_ptr(store).contents)) >>> data[0:10] = "helloworld".encode('utf-8') >>> data[0:10] [104, 101, 108, 108, 111, 119, 111, 114, 108, 100] >>> memory.data_ptr(store)[0:10]...
Can you explain how this relates to the existing `AuthenticationHeaderFilter`? Does it replace it, or enhance it? Also, please don't use lombok for new code (we are trying to get...
I'm not really comfortable with this yet. Isn't it duplicating features in Spring Security?
> There is no such configuration in Spring Security that I have found. It looks a lot like `HttpSecurity.authorizeRequests()` to me (standard stuff you add to a `WebSecurityConfigurer`), possibly with...
I think you misunderstood my comment. I'm not saying the feature is uninteresting, just that the implementation is not ideal - for security we would prefer to use Spring Security,...
I agree that might be cool, when the auth server is a registered service. Contributions gladly accepted. Note (for anyone attempting a pull request): the `userAuthorizationUri` is passed back to...
That won't work in quite that form because `UserInfoTokenServices` is part of Spring Boot now (which knows nothing about discovery).