Subject: | Can't locate auto/Apache2/Const/HTTP_BAD_RE.al |
In mp2 environment, SOAP::Transport::HTTP can't return a valid
HTTP_BAD_REQUEST (400), and execution fail with an entry in Apache error
log like reported in object.
I fixed this bug in SOAP::Transport::HTTP at line 647 replacing
Apache2::Const->import(-compile => 'OK' );
with
Apache2::Const->import(-compile => qw(OK :http) );
By Zelo