Skip to:
In Lucee, I can call getPageContext().getRequest().getHeader("Origin") to get the information, where the request is been called from.
getPageContext().getRequest().getHeader("Origin")
BL throws an error that there’s no method “getHeader”.
Workaround: Use getPageContext().getRequest().getRequestHeader("Origin")
getPageContext().getRequest().getRequestHeader("Origin")
getRequestHeader() instead of getHeader()
The fix is building ( again ) now.
Oh no! Let me fix. Oops!
I have added an alias for getHeader to point to getRequestHeader . This is fixed in the latest snapshot.
getHeader
getRequestHeader
In Lucee, I can call
getPageContext().getRequest().getHeader("Origin")
to get the information, where the request is been called from.BL throws an error that there’s no method “getHeader”.
Workaround: Use
getPageContext().getRequest().getRequestHeader("Origin")
getRequestHeader() instead of getHeader()