Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
41 views

I am using Request Response Pattern for making sure that the proper work flow done sequentially, I have 3 Projects Order.API OrderPayment.API OrderConfirmation.API It is properly executing each ...
Mikh Dany's user avatar
0 votes
1 answer
640 views

Reading documentation of MassTransit I've found the following statement: "Multiple consumers connected to the same receive endpoint are fine, requests will be load balanced across the connected ...
Kosmonik's user avatar
0 votes
1 answer
3k views

After having looked into a message session based request-reply pattern, I decided to implement a request-reply model that does NOT use message sessions, but solely relies on the ReplyTo and ...
Joerg's user avatar
  • 964
-1 votes
1 answer
41 views

I am trying to create a system in java which listens to localhost:3332 and prints the endpoints. I have a application which runs on that port where I can apply various actions to a table. I have tried ...
Denisa Buzan's user avatar
0 votes
1 answer
511 views

It is often said that Kafka works well with domain driven designs. Why is it then that Kafka blog posts mostly talk about CQRS or similar - suggesting seperate input and output topics? It seems like a ...
russellpierce's user avatar
1 vote
1 answer
1k views

This may be a very stupid question but I haven't been able to find a definitive answer online. I'm using the Masstransit Request/Response pattern with RabbitMQ as my message broker. I have a request ...
Jim Bastiras's user avatar
0 votes
2 answers
2k views

With the following query I get the stats about Requesttime, Responsetime and Request-Responsetime (diff) of a specific id: (index=something "Request") OR (index=something "Response"...
Tobitor's user avatar
  • 1,508
0 votes
0 answers
88 views

In response to a http request to an endpoint I have to basically make some computations, db calls, etc. and return the response to the requester. Out of the computations some of them can be made after ...
Vee6's user avatar
  • 1,577
0 votes
1 answer
1k views

Can someone tell me how to implement request response pattern using kafka with .net core (2.1,2. or 3.1). I prefer to implement this pattern using MassTransit which is light weight message bus. I was ...
KDS's user avatar
  • 99
0 votes
0 answers
747 views

I'm working on an app locally with my React frontend running on my network at port 4000 and my Node backend running on my network at port 5000. I can make every request from my frontend to backend ...
user avatar
0 votes
1 answer
2k views

I couldn't see anything to say this is normal behaviour, so excuse me if I am blind lol. I have seen something a bit odd when using MassTransit with request-response. So I have multiple consumers on a ...
Gaz83's user avatar
  • 3,035
0 votes
0 answers
581 views

I am using MassTransit and need to work with Request/Response flow. I am also using Autofac to register all MassTransit stuff like this: builder.AddMassTransit(cfg => { // ...
Luka's user avatar
  • 4,211
0 votes
1 answer
277 views

So I have an architecture in which the user uploads there file onto the front end, which then sends it to a s3 bucket, which in turn triggers a lambda for validation and processing, which sends the ...
Mooncrater's user avatar
  • 4,961
0 votes
1 answer
2k views

I have the following code in one of my JSP : <c:redirect url="someFile.jsp"> <c:param name="source" value="${param.source}" /> <c:param name="...
Som's user avatar
  • 1,610
1 vote
1 answer
518 views

I am trying to find an example of how to customize my .Net Framework Web API, to handle requests and responses with a custom serialization library instead of the built-in Newtonsoft library. So when ...
user2055886's user avatar
2 votes
2 answers
2k views

Please find the use case we need to implement. First, we need to invoke a Kafka producer a message as a rest service, they will process and give back the response in another topic. For us, It is a ...
shuaib 's user avatar
0 votes
2 answers
3k views

We are planning to introduce both, pub-sub and request-reply communication models to our micriservices architecture. Both communication models are needed. One of the solutions could be using RabbitMQ ...
Marco's user avatar
  • 3,397
1 vote
1 answer
362 views

I want to redirect to a page where the path is like /users/home/:id response.redirect('/users/home') The above code will redirect to /users/home but I want to redirect it to a page like '/users/...
loksan's user avatar
  • 177
4 votes
1 answer
4k views

I have multiple clients A (main application) and multiple clients B (payments service). If I publish a message from client A that will be processed and answered on client B (publishing an answer in ...
Pedro Barros's user avatar
  • 1,336
5 votes
4 answers
25k views

What is the difference between a Response Object and DTO in software architecture? Say I want to get a list of Products in a catalog. If ProductDTO is this, how is a Product Response class different?...
user avatar
3 votes
2 answers
5k views

Our software architect is mandating all API Actions have their own Response Class, since every Response can be slightly difference. So we basically wrap the Product DTO in a Base Response class, and ...
user avatar
0 votes
1 answer
370 views

In the Single Call Multiple Answer Pattern you can send a request and recieve more than one response to this request. A mqtt client can send a request with a response topic and some correlation data. ...
user avatar
10 votes
1 answer
8k views

Q1 I know the fundamental different between event based vs request based/driven architecture. Question is if the Request-based always done in synchronously while the Event-based is always done in ...
bet's user avatar
  • 1,012
0 votes
1 answer
646 views

I am using Masstransit Request-Response in Asp.NetCore When I send Request before I get Response, Request is getting Cancelled and throwing this Exception System.Threading.Tasks....
hadi nasehi's user avatar
0 votes
1 answer
351 views

I am trying to get a document (pdf/docx/zip/..) from an API and save it with the file name received at content-disposition in response header. I have tried the below methods. But either the file is ...
N29's user avatar
  • 115