I am programming an application using Proj4 and OpenLayers to display the AHN map from the Netherlands from an external (open) WMS server. I've got it working, but the reprojection is still not quite correct. Now, reading online I've found out the issue is that the EPSG:28992 Proj4 string redirects coordinates to a system that's not the same as our view.
Our view is set to EPSG:3857 (most of our layers are) and the other layer apparently redirects to EPSG:4326. Is there some way to 'interject' at the projection level of the layer (when defining the 'projection' from the source) to make it use EPSG:3857 instead of EPSG:4326? Right now I'm applying the projection to use EPSG:28992.
*edit: Corrected the information.