logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: proxy pass subcontext and trns ID
Author
mohamedilyas



Joined: 03 Apr 2024
Posts: 6
Location: India

PostPosted: Wed 26 Jun '24 13:14    Post subject: proxy pass subcontext and trns ID Reply with quote

Hi All,
I am trying to proxypass a api call from apache to jboss but failing and providing 403 response.
I have tried below methods please help me on this.

RewriteRule "^/upi/(.*)" "http://1.2.3.4:8888/online/publisher/upi/$1" [P,R]
ProxyPassReverse "/olive/publisher/upi/" "http://1.2.3.4:8888/online/publisher/upi/"

other method:

ProxyPass "/upi/*" "http://1.2.3.4:8888/olive/publisher/"
ProxyPassReverse "/upi/" "http://1.2.3.4:8888/olive/publisher/"


main URL:
Webserver hit receive as : https://quarters.com/upi/ReqBalEnq/2.0/urn:txnid:INTc1db8ff40a3
need to proxy to Appserver URL : https://1.2.3.4:8888/online/publisher/upi/ReqBalEnq/2.0/urn:txnid:INTc1db8ff40a3
Back to top
mohamedilyas



Joined: 03 Apr 2024
Posts: 6
Location: India

PostPosted: Thu 27 Jun '24 3:27    Post subject: proxy pass subcontext and trns ID Reply with quote

Can anyone give me a suggestion to overcome this issue
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7342
Location: Germany, Next to Hamburg

PostPosted: Thu 27 Jun '24 9:28    Post subject: Reply with quote

QSA

The reversed URL should match the other one

Code:

ProxyPass "/online/publisher/upi/" " https://1.2.3.4:8888/online/publisher/upi/"
ProxyPassReverse "/online/publisher/upi/" " https://1.2.3.4:8888/online/publisher/upi/"


If the URL does not match you need mod_proxy_html to get it working. But maybe it doesn't work at all.
Back to top


Reply to topic   Topic: proxy pass subcontext and trns ID View previous topic :: View next topic
Post new topic   Forum Index -> Apache