1,312 questions
0
votes
1
answer
41
views
Implemenatation Of the KONG API Gate way in microservice using HS256 and RS256
I have to implement the KONG api Gateway In that i have two types of token which is
1)Internal Token Using Custom JWT
2)I have Implemented the Azure AD SSO directly in frontend from that i am getting ...
Advice
0
votes
0
replies
9
views
Is Kgateway an Envoy fork?
According to the CNCF description, Kgateway is
An Envoy-powered, Kubernetes-native API Gateway that integrates Kubernetes Gateway API with a control plane for API connectivity in any cloud ...
0
votes
0
answers
34
views
How to expose a Vertex AI endpoint on Apigee with a `/predict`?
I deployed a model on a GCP Vertex AI endpoint. This endpoint is consumable at the URL https://${VERTEXAI_URL}:predict.
I need now to expose this API service on Apigee with the following URL syntax:
...
Advice
0
votes
0
replies
64
views
How To use Ocelot Gateway inside a .NET Aspire project?
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 ...
1
vote
2
answers
154
views
spring-cloud-gateway-webflux multiple Path predicates return 404
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:
...
0
votes
0
answers
26
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
126
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
174
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
68
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
63
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
127
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
37
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
174
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
64
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 ...