You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running proxy server on SpringBoot 2.1.7.RELEASE
Proxy requests work fine for Get but is not working for Post.
What Should I do? I didn't found any working solution for that reason I open this thread once again.
Below is my proxy configure code. Am I missing anything ?
public ServletRegistrationBean servletRegistrationBean2() {
ServletRegistrationBean servletRegistrationBean = new ServletRegistrationBean(new ProxyServlet(), "/kong/*");
servletRegistrationBean.addInitParameter(ProxyServlet.P_TARGET_URI, "http://kong-iam-gateway.stb-openshift-app.nix.cydmodule.com");
servletRegistrationBean.addInitParameter(ProxyServlet.P_LOG, "true");
return servletRegistrationBean;
}
The text was updated successfully, but these errors were encountered:
neerajshandilya
changed the title
Post Method is noty Supportyed.
Post Method is not Supported for proxy.
Nov 18, 2019
Hi,
I am running proxy server on SpringBoot 2.1.7.RELEASE
Proxy requests work fine for Get but is not working for Post.
What Should I do? I didn't found any working solution for that reason I open this thread once again.
Below is my proxy configure code. Am I missing anything ?
The text was updated successfully, but these errors were encountered: