I would like retrieve String parameter from a file in a web service (jax-ws). I've see that I can't read parameters from web.xml using FacesContext. This code don't work:
fc = FacesContext.getCurrentInstance();
String fileOpzionali = fc.getExternalContext().getInitParameter("fileOpzionali");
Suggest?
Thanks