using sec-web httpd. the python code has api: host/v0/auth/sessions/blablba... the java code has api: host/v0/auth/users/blabla.... there is a conf file on the machine which have the following for the python api:
ProxyPass /v0/auth/sessions http://localhost:8098/v0/auth/sessions
ProxyPassReverse /v0/auth/sessions http://localhost:8098/v0/auth/sessions
and for the java api:
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
now: when I'm accessing the python api I'm getting good response, but when trying to access the java api I/m getting '[]' - the status code is 200 but I'm supposed to get a different response.
any idea?