标签: grails grails-plugin
有没有办法在grails中的cxf服务类中访问soap标头?你知道你可以使用拦截器访问整个soap消息,但我需要在服务类中直接使用header。任何想法?
答案 0 :(得分:2)
只需在服务源代码中添加@Resource private WebServiceContext context字段,然后您就可以使用context.messageContext.get(MessageContext.SERVLET_REQUEST).remoteAddr之类的内容来获取标题。
@Resource private WebServiceContext context
context.messageContext.get(MessageContext.SERVLET_REQUEST).remoteAddr