William Chong
William Chong
@robbytarigan Does the event appear in the stream browser?
@robbytarigan I suggest testing a simple operation using a different client, such as the [Node.js client](https://github.com/EventStore/EventStore-Client-NodeJS) or with a different server version (lts). If you continue to encounter the same...
@robbytarigan Can you try with this connection string in the dotnet client instead ``` esdb://admin:[email protected]:2113?tls=false&tlsVerifyCert=false ``` The difference is that I replaced `localhost` with `127.0.0.1` Remove the previous keepAliveTimeout option...
Right now, you can't do that with the gRPC client. But it will be amended.
Thanks for pointing that out. It will be amended.
Hey @jbi-spillehallen Can you try forcing a regular append by passing user credentials? Try it with this simple example: ``` await client.AppendToStreamAsync( "some-stream", StreamState.Any, new[] { eventData }, userCredentials: new...
The gRPC client with net48 uses WinHttpHandler internally to make http calls. However, this comes with certain requirements and restrictions as listed in [Microsoft Documentation](https://learn.microsoft.com/en-us/aspnet/core/grpc/netstandard?view=aspnetcore-8.0#net-framework). Could you try setting `tls=true`...
This is interesting. I don't have a windows server to test it on. But it works fine on my Windows 11. I will keep investingating. Can you try https://github.com/EventStore/EventStore/issues/2707#issuecomment-705351459
This is my server docker compose configuration: ``` version: '3' services: volumes-provisioner: image: hasnat/volumes-provisioner environment: PROVISION_DIRECTORIES: "1000:1000:0755:/tmp/certs" volumes: - "./certs:/tmp/certs" network_mode: none cert-gen: image: docker.eventstore.com/eventstore-utils/es-gencert-cli:latest entrypoint: bash user: "1000:1000" command:...
The issue is during the conversion of the event from the bridge client. I've submitted a [PR ](https://github.com/kurrent-io/KurrentDB-Client-NodeJS/pull/424) to address this issue. Once it's reviewed and approved, I'll release a...