Mogens Heller Grabe

Results 145 comments of Mogens Heller Grabe

`` is meant for HTML code that is not readily rendered by a client, but instead leaves it in the DOM for scripts to manipulate. Since any content is allowed,...

Ok! The configuration API normally looks like this: ```csharp services.AddRebus( configure => configure .Transport(t => t.UseRabbitMq(connectionString, "my-input-queue")) ); ``` How would the ideal API look to support SSL on Amazon?

Is it as simple as that? Btw, until this is made easier, you can always use the `CustomizeConnectionFactory` method to do whatever you need to do: ```csharp services.AddRebus( configure =>...

Hey there, thanks for experimenting with this 🙂 I just played around with RabbitMQ over amqps (via CloudAMQP), which seemed to work perfectly simply by passing in the `amqps://(....)` connection...

Yeah well, if I remember correctly the code is a little bit convoluted and not really prepared to be extended. Would be a fun refactoring though, to make it extendable...

I've actually been thinking about Rebus' routing for a while.... the thing is, for the last 5-10 years I cannot recall a situation where I've used (or met anyone who...

Unfortunately, this is "by design" with Rebus, because it needs to roll back the received message upon failure, thus making it visible in the queue again for other consumer instances...

> it requires from me to pass stream inside. But if i generate data for this stream it means that i should have whole data loaded in memory at once....

> CreateAttachment method calls inside _dataBusStorage.Save, which expect that at this moment stream is fully completed. (...) This is the part I don't understand – what do you mean when...

Which kind of stream would you like to create an attachment out of?