In our application we get an error message:
PWC6117: File "/struts-tags" not found
in the file that gives the error:
<%@ taglib prefix="s" uri="/struts-tags" %>
This file is located in struts2-core.jar, which is placed in the application server class path (Sun 9.1).
The code will work fine and will not complain when the bank is actually in the WEB-INF / lib application, compared to what is on the way to the classes on the application server. But we cannot change that. this should be on the way to the classes of appservers.
But how should we change our code so that this error disappears?
I can create a mapping in my web.xml to change the uri. but what should the taglib location be changed? so does it reference an application class class?
<taglib>
<taglib-uri>/WEB-INF/struts-tags.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-tags.tld</taglib-location>
</taglib>