1,318 questions
0 votes
0 answers
30 views
Problems deploying the MuleSoft Flex Gateway container on Azure App Service for Linux containers [closed]
I am experiencing issues when deploying the MuleSoft Flex Gateway Docker container on Azure App Service for Linux containers. Although the image runs correctly on my local machine using Docker, the ...
0 votes
0 answers
17 views
Support Multiple JSON Ocelot API Gateway
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'...
0 votes
1 answer
87 views
Spring Boot: Redirecting URLs ending in slash to without slash
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: -...
1 vote
1 answer
99 views
Add upstream HTTP header if not present with Kong API Gateway [closed]
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 ...
1 vote
0 answers
62 views
How to properly transform backend error responses using response-transformer or custom policy in Express Gateway?
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()....
0 votes
0 answers
43 views
API Gateway Timeout Error in mern project
Currently I am building a restuarant project, mono-repo in microservice, only auth-service(I am learning micro services so i just moved auth module as a service) the issue is, if i use api-gatewway ...
0 votes
0 answers
53 views
AWS X-Ray trace ID appears inconsistently for Spring Boot 3.4.3 Lambda (Java 17, X-Ray SDK 2.19.0)
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 ...
2 votes
1 answer
103 views
How to use Lua correctly in krakend CE
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 ...
0 votes
0 answers
34 views
zuul gateway hangs due to too many requests from google indexing
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 ...
0 votes
0 answers
143 views
Node.js http-proxy-middleware: Proxy request hangs with 408 timeout, onProxyReq not triggered
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 ...
0 votes
0 answers
49 views
Issue with adding depedency for api gateway in spring cloud for eureka server discovery
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 ...
0 votes
0 answers
64 views
Wrap AsyncRead cause ConnectionClose
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 ...
2 votes
1 answer
378 views
How to implement swagger aggregator in API Gateway of Spring Boot Microservices (Cannot show endpoint after selecting any service)
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 ...
0 votes
0 answers
244 views
Ocelot API Gateway in .NET 8 not showing downstream services in Swagger UI
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 ...
0 votes
0 answers
32 views
AWS Policy - case with " * " , how to " example/*/ " ? to make it work but only for one string after " / "?
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 ...