从 jax-ws Web 服务获取参数
我想从 Web 服务 (jax-ws) 中的文件中检索字符串参数。我发现无法使用 FacesContext 从 web.xml 读取参数。 此代码不起作用:
fc = FacesContext.getCurrentInstance(); String fileOpzionali = fc.getExternalContext().getInitParameter("fileOpzionali");
建议?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 web.xml 中是否有类似这样的相应条目:
?
Do you have a corresponding entry like this in your web.xml:
?