RE: Posting to REST on same cluster?

2018-05-25 Thread Karl Nicholas
, 2018 10:36 PM To: Karl Nicholas Cc: users@lists.openshift.redhat.com Subject: Re: Posting to REST on same cluster? Hi Karl, OpenShift does not differentiate between post and get. Also 405 is a server error: "the request method is known by the server but has been disabled and cannot be used&

Re: Posting to REST on same cluster?

2018-05-24 Thread Frederic Giloux
Hi Karl, OpenShift does not differentiate between post and get. Also 405 is a server error: "the request method is known by the server but has been disabled and cannot be used". The issue is likely to be at the level of your application providing the REST API. To validate it you could log into a c

Posting to REST on same cluster?

2018-05-24 Thread Karl Nicholas
In OPENSHIFT I have one application in a cluster attempting to access another REST application but I'm getting a HTTP 405 Method Not Allowed for a POST request. The GET requests seem to be okay, so I'm thinking it's a permission problem. This should be pretty typical micro-services architecture