我有一个Grails 3.2.8 Web应用程序,该Web应用程序连接到另一台服务器上的Web服务,我需要使用Handler更新SOAPMessage,我使用以下命令在xml文件“ handler-chain.xml”中设置处理程序配置:注释
@HandlerChain(file="handler-chain.xml")
但是当调用Web服务时,会引发异常
Caused by: javax.xml.ws.WebServiceException: Could not find the handler configuration file handler-chain.xml specified by @HandlerChain annotation
我已将xml文件放置在项目中的许多位置,但是总是收到相同的错误。
我应该将xml文件放在哪里?
谢谢。