Questions tagged [apiman]

The apiman project is an open source API Management platform, coupling a rich API design & configuration layer with a blazingly fast runtime.

The apiman project is an open source API Management platform, coupling a rich API design & configuration layer with a blazingly fast runtime.

The project is hosted at: http://www.apiman.io

34 questions
1
vote
1 answer

Apiman does not restore gateway

Could you please assist me with the following issue. I use Apiman version 1.2.1 FROM jboss/wildfly:9.0.2.Final ENV APIMAN_VERSION 1.2.1.Final I expose this version via kubernetes, as a persistent volume I use postgres in the same container. Once I…
1
vote
1 answer

How to configure CORS in APIMan

I'm new on apiman, and I'm trying to use some API calls with Jquery. But unfortunately I got this error: XMLHttpRequest cannot load https://apigtw.url/apiman-gateway///1.0/?apikey=9999999-8888-6666-33333-968a712ce68b. No…
Celso Agra
  • 1,389
  • 2
  • 15
  • 37
1
vote
1 answer

Keycloak proxy and APIMAN - token not found

For my website, I wanted to implement APIMAN and keycloak as a solution so I came up with this architecture : Keycloak as an Authentification provider. Apiman as an API manager Nginx as a reverse proxy Apiman is set behind a Keycloak Security…
Ismail H
  • 4,226
  • 2
  • 38
  • 61
1
vote
2 answers

New User Register option is not coming over UI

I have installed api man as defined in http://www.apiman.io/latest/download.html I performed following instructions. mkdir ~/apiman-1.2.5.Final cd ~/apiman-1.2.5.Final curl http://download.jboss.org/wildfly/10.0.0.Final/wildfly-10.0.0.Final.zip -o…
nand
  • 517
  • 2
  • 13
  • 29
0
votes
0 answers

I am not able to login into apiman ui ,getting forbidden msg after entering credentials

I setup keycloak and apiman within docker container ,able to login Keycoak's UI but while accessing Apiman's UI i am getting forbidden message . why i am getting forbidden message after entering Apiman's UI credentials i have added apiman access…
0
votes
1 answer

Apiman: I can not set policy configuration with admin-cli

I am trying to set an Apiman server with Docker by using declarative configuration. After starting apiman docker Docker File FROM apiman/cli:latest as CLI FROM apiman/on-wildfly .... I apply the configuration and it works except the policy…
bilgin
  • 133
  • 1
  • 13
0
votes
2 answers

Changing the default Context of the Apiman Target Gateway URL

I have Apiman installed and found it very useful. However, I would like to change the context of the target URL generated for published APIs. It creates them under "/apiman-gateway" context. Would like to change this to more user-friendly. Did not…
Krishna Vedula
  • 1,643
  • 1
  • 27
  • 31
0
votes
1 answer

Apiman 2.0.0 security vulnerabilities

We have passed Apiman-2.0.0.final through security scans and came up with some critical/high vulnerabilities, mostly relevant to keycloak-core-10.0.2. Fixes for this vulnerability are available in higher versions of keycloak. I would like to know…
pana
  • 3
  • 2
0
votes
1 answer

Having maven inside docker along with wildfly server

I am using apiman tool inside docker. I have developed one custom policy. When I run apiman in standalone mode ( without docker ), apiman is able to take that war ( policy) from .m2 repository. But when I use apiman inside docker it does not…
0
votes
1 answer

Gradle process resources and include in war

I am trying to use Gradle to build my APIMan plugin, it builds a war and should process resources in src/main/apiman and include those resources in META-INF/apiman in the built war. I'm having some trouble getting the build.gradle right. This is…
PDStat
  • 5,513
  • 10
  • 51
  • 86
0
votes
1 answer

Authorization policy is breaking preflight check in APIMAN

I have 2 policies on my API (+1 for cors), first is keycloakOauthPolicy and the second is AuthorizationPolicy. When I make some preflight request (then with verb OPTIONS and without any token in the header), I get that error from AuthorizationPolicy…
0
votes
1 answer

WildFly-10 - APIMAN Publish Issue

I have wildfly 10 and installed APIMAN 1.5.1.APIMAN. Organization/API creation is done and while publishing the API, I'm getting below error io.apiman.manager.api.rest.contract.exceptions.ActionException: Failed to publish API.
Mahendiran
  • 79
  • 2
  • 12
0
votes
0 answers

Getting error on calling APIs of APIMAN

So, I just started using APIMAN and did some configurations. I created one API service with BASIC Authentication. In that I used JDBC url as jdbc:mysql://localhost:3036/Demo. Then I created one application service to consume that API. But when I am…
Shubham Navale
  • 220
  • 2
  • 13
0
votes
2 answers

APIMan with Tomcat and MySQL

I am newer to APIMan. I have configured apiman-tomcat-final-distro with Apache Tomcat instance. Now as it is using default as a H2 Database for APIMan, I want to configure the MySQL DB with this. Some of the documentations are available on RedHat…
Dipen Shah
  • 21
  • 1
  • 2
0
votes
0 answers

How to change Host header request via APIMAN Policy

I have a question about how can I configure -H "Host: my.host.com" from gateway to my api. I have the following logic: I try to cover, for example, my-api.net via apiman-gateway. For example, I can do the following direct call to my api like 'curl…