I am trying to retrieve a jrxml file in a relative path using the following java code:
String jasperFileName = \"/web/WEB-INF/reports/MemberOrderListReport.jrxm
You should place 'MemberOrderListReport.jrxml' in classpath, such as it being included in a jar placed in web-inf\lib or as a file in web-inf\classes. The you can read the file using the following code:
InputStream is=YourClass.class.getClassLoader().getResourceAsStream("MemberOrderListReport.jrxml");