Questions tagged [request-response]
63 questions
-1
votes
1 answer
Create a middleware which listens to localhost:3332 and prints the endpoints called
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 to run this script :
url=url =…

Denisa Buzan
- 41
- 5
-1
votes
1 answer
changing the DOM after accessing a database
i'm using the PDO library in php to access a database and return some values into a table which need to be shown when the user first opens the webpage,
after this I want to implement a filter option, so that the user can input some data in a form…

suraj bk
- 1
- 2
-1
votes
2 answers
Net Core: Wrap DTO in Response Pattern in Dynamic Variable Way
Software requirements is asking all DTOs contain their own Response Class. So developers basically wrap Product DTO in Base Response class. We have whole list of class areas, requiring hundreds of classes for Product, Sales, Customer, etc all doing…
user12093268