Questions tagged [gateway]

This is a vague tag for all kinds of gateways including networks, general interfaces and products, where this term is used with its own meaning. Try to avoid this.

This is a vague tag for all kinds of gateways including networks, general interfaces and products, where this term is used with its own meaning. Try to avoid this.

1201 questions
3
votes
0 answers

BFF pattern + ReacJS - How to handle componentization?

I'm having trouble trying to figure out the use of BFF pattern and ReactJs componentization. As described in BFF articles the BFF layer should serve as an aggregator to the frontend in a microservices architecture, this means that one screen can…
3
votes
2 answers

Ocelot Gateway duplicate query params

I am using ocelot gateway. Here is the example configuration { "DownstreamPathTemplate": "/ipgeo?apiKey={key}&ip={ip}", "DownstreamScheme": "http", "DownstreamHostAndPorts": [ { "Host": "api.ipgeolocation.io", "Port": 80 } …
3
votes
1 answer

How to combine security with the gateway?

I'm investigating microservices architecture and now focusing on the api gateway along with security. I found out that there are two different approaches: 1- Where authentication is outside of the gateway, meaning, the user has to authenticate…
MoBe
  • 61
  • 5
3
votes
1 answer

Payment gateway for iphone app

I'm thinking to build a payment application that will capture the credit card information from the application and use HTTPS POST(3rd party payment gateway) to perform the credit card transaction. Since this application is capturing the credit card…
Water7
  • 495
  • 1
  • 4
  • 9
3
votes
1 answer

Spring Cloud Gateway and Springdoc OpenAPi integration

I was able to integrate Spring Cloud Gateway with the Springdoc OpenAPI in an small application with an architecture oriented to microservices. But now, when I open the Swagger UI to test the endpoint of my controller (StudentController) I realized…
3
votes
1 answer

GCP API Gateway creation fails with internal server error

I am trying to automate the api-config and api-gateway creation to expose cloud run service using terraform. Till yesterday it was working well, & api-gateway was serving traffic. But considering a large volume of requests hitting the API Gateway, I…
3
votes
1 answer

ELB health check fail AWS

My ELB health check fails all the time but cannot figure it why (502 bad gateway). I have a cluster (ECS) with a service that runs at least one task (Fargate) which is a Node API listening on port 3000 & 3001 (3000 for http & 3001 for https since I…
Fake
  • 220
  • 1
  • 4
  • 11
3
votes
1 answer

in istio, how a virtualservice defined in a namespace can use a gateway defined in another namespace

If a virtualservice A is defined in namespace A using networking.istio.io, how can it use a gateway B defined in another namespace, namespace B? Thanks
imriss
  • 1,815
  • 4
  • 31
  • 46
3
votes
1 answer

How can I resolve this Data Gateway error from AAS model?

I am receiving the following error when trying to deploy my model from Azure Analysis Services. The queries for the tables in the model work fine as set up in visual studio and process without error. I only get the following error when trying to…
Jordan Davis
  • 855
  • 3
  • 15
  • 22
3
votes
2 answers

Is a BPMN XOR-Join gateway redundant?

I was surprised seeing a BPMN diagram in which an Exclusive-Or decision ("XOR-Split") was "closed" with the same gateway symbol. I'm really wondering what are the reasons that justify this approach. In my point of view, this is redundant. What seems…
tuxaddict
  • 59
  • 1
  • 5
3
votes
1 answer

I want to rewrite URI in VirtualService for from regex to regex

I want to run the following API. While I want to run the following script. But I am not able to get the expected output. - match: uri: regex: \/test\/pune/\/(.+)\/bk rewrite: uri: \/pune/\/(.+)\/bk route: -…
3
votes
2 answers

how to handle request from gateway to right microservice on jhipster registry?

we used microservice architecture of jhipster and generated three applications uaa, microservice, gateway. then run uaa and jhipster registry on a server, also we have some full stack developers who want to develop both gateway and microservice at…
3
votes
0 answers

Can't ping host from docker container

my /etc/network/interfaces file when I am logged as the container looks like this auto eth0 iface eth0 inet static address 192.168.1.27 netmask 255.255.255.240 gateway 192.168.1.1 but when I do ping 192.168.1.1 I get connect: Network is…
Long Claw
  • 107
  • 2
  • 6
3
votes
2 answers

Error when trying to configure Power BI Data Gatwewy

Just installed Power BI Data Gateway on one of the companies servers. The processes was smooth and very easy, I have assigned a name to the Data Gateway. As it is linked to my email (I think this is going to be another problem when other employees…
asmgx
  • 7,328
  • 15
  • 82
  • 143
3
votes
1 answer

How to allow anonymous access to endpoint

I have a spring cloud architecture and I can't allow anonymous access to an endpoint. Here is my code: Gateway ============================= Application: @SpringBootApplication @EnableZuulProxy @EnableEurekaClient …