Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
0 replies
51 views

I am trying to use Ocelot inside a .NET Aspire project, but the problem is that /health or / don't work. Because of this, the gateway is shown as unhealthy in the Aspire dashboard. What should I do to ...
iman roozegar's user avatar
1 vote
2 answers
97 views

I’m having trouble with Spring Cloud Gateway (WebFlux) when I define multiple Path predicates for a single route. Here is an example of my configuration in application.yml: spring: cloud: ...
Nur Sultan ASLAN's user avatar
0 votes
0 answers
18 views

I have multiple microservices, and I am trying to merge them using Ocelot API Gateways. I have created different JSON files for each microservice and I'm adding them using the code below. However, it'...
OpsTeQ User's user avatar
0 votes
1 answer
97 views

I want to redirect all routes like /api/user/home/ to /api/user/home. Here is the configuration file for gateway: spring: application: name: gateway cloud: gateway: routes: -...
Cody's user avatar
  • 2,701
1 vote
1 answer
135 views

I've been using the Post-Function plugin in Kong Gateway to implement some custom logic. Lately, a large part of it has become unnecessary, and I am left with the following configuration, which only ...
Danilo Piazzalunga's user avatar
1 vote
0 answers
65 views

I'm working with Express Gateway to proxy requests to a backend service and want to transform error responses into a common format like this: const errorResponse = { timestamp: new Date()....
The witcher's user avatar
0 votes
0 answers
60 views

I have a Spring Boot 3 Lambda behind API Gateway. Sometimes the Lambda REPORT line shows an X-Ray trace: enter image description here …but on later calls to the same endpoint, the X-Ray line is ...
sahil desai's user avatar
2 votes
1 answer
118 views

I am working on a POC using krakend and I am having a hard time using lua. I need basic transformation but all functions in string module don't seem to work. what am I doing wrong ? Dockerfile : FROM ...
KnowledgeSeeker's user avatar
0 votes
0 answers
36 views

I am using Spring Boot 1.4.1 RELEASE. I am using Camden.SR1 maven dependency for zuul gateway API for microservices. Due to indexing from google there are too many requests due to which zuul gateway ...
Sameer Makwana's user avatar
0 votes
0 answers
159 views

I'm building an API Gateway using Node.js, Express, and http-proxy-middleware. All incoming requests are forwarded to different services based on dynamic routing logic. I'm encountering a 408 Request ...
Keyla's user avatar
  • 1
0 votes
0 answers
54 views

I am using spring boot 3.5 when I am adding gateway dependency I am getting spring-cloud-starter-gateway-server-webmvc.But actually I need to get spring-cloud-starter-gateway in lower versions so ...
Swarup reddy Nallamilli's user avatar
0 votes
0 answers
64 views

I am wrapping the AsyncRead by the function of Bandwidth Controling, it will read the bytes from buf firstly and try to acquire the tokens from upstream_control buckets. We assume the poll_read is ...
BamLubi's user avatar
  • 11
2 votes
1 answer
421 views

I tried to implement swagger aggregator in my spring boot microservices examples. I can open swagger of api gateway through http://localhost:8080/swagger-ui.html and swagger of category service ...
Sercan Noyan Germiyanoğlu's user avatar
0 votes
0 answers
255 views

I'm implementing an Ocelot API Gateway in .NET 8 with Swagger integration, but my downstream services aren't appearing in the Swagger UI. Here's my setup: Service 1 is running on port 5001, and it ...
Amisha Subedi's user avatar
0 votes
0 answers
34 views

Like in the title, we need to create a policy for AWS API Gateway based on another platform. However, in AWS, we only have the wildcards "*" and "?". I need to create a resource ...
Paweł Andrys's user avatar
0 votes
0 answers
50 views

best to avoid single point of failure in system design in case of API gateway as from controller. In real time companies how, they are handling SPOF with API gateways. In below image API gate way down ...
Ranjith Kumar's user avatar
1 vote
0 answers
191 views

I'm experiencing an issue with Krakend and Keycloak where JWT validation suddenly fails, and I start receiving 401 responses. The error in the logs is: [JWTValidator] Unable to validate the token: no ...
Moe's user avatar
  • 11
1 vote
0 answers
90 views

The log format in AWS Api Gateway is set to { "requestTime": "$context.requestTime", "requestId": "$context.requestId", "httpMethod": &...
Tanu's user avatar
  • 1,712
2 votes
1 answer
102 views

I'm building a system that consists of multiple microservices, databases, a message broker, and a file storage system that primarily stores photos. In my setup, I'm using MinIO as my file storage ...
Dmytro Kotenko's user avatar
0 votes
0 answers
30 views

My requirement is, aws apigateway must accept request of any uri & any http method and must forward/post it to configured end point. To do so, below is the aws cloud formation template However, ...
Krishna Kishore Musle's user avatar
0 votes
0 answers
36 views

We have following scenario which fails with kong api gateway: Service1 has an endpoint named “endpoint1” which gives hardware specific value in response. We have say 2 hardware units (H1 and H2) inter-...
Parag Thamke's user avatar
1 vote
1 answer
205 views

Google documentation doesn't clarify how to do it, but my goal is to expose an App deployed in K8s into a VPC only, but could be seen by an user that uses a VPN in another project, using HTTPs ...
Francisco Navarro's user avatar
0 votes
0 answers
76 views

In Microservice Environment, I have 3 services: Hotel Service Service registry APi Gateway I have register the Hotel Service & API gateway with eureka server. Both are working, as I can see the ...
Dev_android's user avatar
1 vote
0 answers
135 views

I'm building a microservices architecture using NestJS, and I have an API Gateway that proxies requests to different services (Order, Email, User). Everything works fine for GET requests, but POST ...
apoleyta97's user avatar
1 vote
0 answers
92 views

At my place of work we have an internal API Gateway that acts as a proxy between various internal applications. My specific application is essentialy a REST API that serves specific features to ...
Zempire's user avatar
  • 21
1 vote
0 answers
150 views

I'm implementing OpenAPI documentation in a Spring Cloud Gateway service that routes to multiple microservices. I've configured the gateway to aggregate Swagger documentation from different services ...
mdht mohd's user avatar
0 votes
1 answer
54 views

I am trying to include the API Gateway Request Id in my SQS message, so that I can log it in the consuming Lambda for tracing. My mapping template is as follows: Action=SendMessage&MessageBody=$...
gweilo's user avatar
  • 63
2 votes
1 answer
215 views

I am creating an ASP.NET Web API gateway which needs to communicate to legacy COM component business logic written in C++. So I am creating another Web API which internally gets data from COM ...
srajeshnkl's user avatar
0 votes
1 answer
125 views

I have microservices architecture with an API Gateway PeopleService: Provides employee data (employeeId, employeeName). SafetyService: Provides training data (trainingId, trainingName). PeopleService:...
who-aditya-nawandar's user avatar
0 votes
0 answers
34 views

I have the following mapping template #if($input.params('salutation')) "greeting": "$input.params('salutation')", #else "greeting": "Hello", ...
Rory Lynch's user avatar
0 votes
0 answers
241 views

Question: Issues with Implementing an API Gateway for Microservices with FastAPI and Docker Compose I'm working on implementing an API Gateway for a set of microservices orchestrated with Docker ...
Franklyn Dunbar's user avatar
1 vote
1 answer
330 views

I’m building a serverless API with Node.js using AWS Lambda, and my function interacts with DynamoDB to retrieve data. However, every time I try to interact with DynamoDB, the Lambda function times ...
sakshi rawal's user avatar
0 votes
1 answer
70 views

I'm new to microservices and system design, and I'm trying to understand the role of the API Gateway in authentication and authorization. I've come across two different approaches, each with its pros ...
Prasad Parab's user avatar
2 votes
0 answers
65 views

Spring boot Api Gateway I’m trying to send a request that requires a body. When I add the body, the API Gateway doesn’t forward the request to the service and responds with a 400 Bad Request. However,...
Aref's user avatar
  • 21
0 votes
0 answers
155 views

Can you please help me configure my Flex Gateway path? I have a request {{mu_url}}api/distribution/internal/v1.0/whatsapp/twilio/content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/approvalrequests that I need ...
Anna315's user avatar
  • 31
0 votes
0 answers
49 views

I have REST api. I am trying to configure AWS API Gateway as a passthrough. My api endpoint domain has subdomain part, which indicates tenant identity. Ex. customername.xyz.com/api. I need the API ...
Shahaji Gole's user avatar
0 votes
0 answers
51 views

`Caused by: reactor.core.Exceptions$ErrorCallbackNotImplemented: java.lang.IllegalArgumentException: Unable to find GatewayFilterFactory with name RequestRateLimiter Caused by: java.lang....
Vinay Jadhav's user avatar
0 votes
0 answers
84 views

I am having java background and had worked with Springboot, and for Springboot APIs eureka works as both discovery server and load balancer. How horizontal scaling and load balancing can be achieved ...
The VOYOU's user avatar
  • 522
0 votes
0 answers
90 views

This keeps loading, not returning response. Log 2025-01-08T13:28:40.752+05:30 DEBUG 44541 --- [api-gateway] [reshExecutor-%d] o.s.c.g.r.RouteDefinitionRouteLocator : RouteDefinition LIMIT-SERVICE ...
Gomathy M's user avatar
  • 378
0 votes
1 answer
50 views

I am developing a simple system for practicing redirect requests with an API Gateway. The architecture of my system is the following: enter image description here It has 2 microservices (one for ...
Gauss-Islas's user avatar
0 votes
0 answers
139 views

I'm trying to develop a custom gateway api with ktor. I implemented a redirect to the specific service based on the path with a factory but I think I'm using HttpClient wrong. The problem is that when ...
Thorny84's user avatar
  • 335
0 votes
0 answers
76 views

I am following this tutorial Enable external traffic ingress into Consul service mesh. I am following the self-managed local deployment guide. I am using helm, kind and kubectl, like the guide ...
Alexander Tu's user avatar
0 votes
1 answer
205 views

I would like to set up APISIX in the Google Cloud Platform on a Cloud Run instance and configure other Cloud Run instances as upstreams. My APISIX setup: I configure my APISIX Cloud Run container with ...
Brian's user avatar
  • 117
2 votes
1 answer
450 views

I'm planning to implement an architecture where: The API Gateway interacts with multiple services and a Vue.js frontend application. The API Gateway creates its own sessions linking user requests to ...
Tsvetkov Kirill's user avatar
0 votes
0 answers
52 views

im using Spring Cloud Gateway and Open API V3, so i have an issue on my open api UI page, client_id and client_secret are not sent in the request to get access token when using Client Credential Flow ...
AHmedRef's user avatar
  • 2,621
0 votes
0 answers
87 views

I have 2 microfrontends in amplify first FE-A needs to be used from specific area (static ip) second FE-B needs to be used from everywhere publicly my issue is if i set 0.0.0.0 in Security Group of ...
0xn0b174's user avatar
  • 1,047
0 votes
1 answer
101 views

I am currently hosting several APIs behind a APIM. I was now planning to expose the docs and wanted to do this programmatically, thus my question: Is it possible to have a global policy that ...
Bennimi's user avatar
  • 526
0 votes
1 answer
181 views

I'm developing an application using the microservices architecture with Spring Boot and Spring Cloud. In this application, I want to use API Gateway and Eureka to enable dynamic routing. My main ...
A.B.'s user avatar
  • 11
0 votes
1 answer
181 views

I have a set of Django microservices, each exposing GraphQL APIs. Currently, I'm using Apollo Server with Apollo Federation to combine all subgraphs into a single supergraph. However, I've encountered ...
Jackson Bakari's user avatar
0 votes
0 answers
40 views

Using jhipster-generate, I have created a gateway application which acts as an Angular frontend running on localhost:8090 and I have a microservice application already running with endpoints setup on ...
manchitro's user avatar
  • 151

1
2 3 4 5
27