Hello,
I see the following error occurring in my application:
Caused by: org.apache.cxf.transport.http.HTTPException: HTTP response '403: Forbidden' when communicating with
http://localhost:9991/pathMy configuration is as follows:
{
"priority": 3,
"request": {
"method": "POST",
"urlPattern": "/path"
},
"response": {
"headers": {
"Connection": "Keep-Alive",
"Content-Type": "text/xml;charset=UTF-8",
"Keep-Alive": "timeout=10, max=100",
"Server": "Apache-Coyote/1.1"
},
"proxyBaseUrl": "
https://realService.com"
}
}
I see this in the console output from wiremock:
After request is coming in:
2015-08-28 09:44:49.593 Proxying: POST
https://realService.com/pathWhat did I do wrong? how can we debug this?
Thanks,
Roy