Grails + WS 客户端抛出 CXF 异常

发布于 2024-09-19 02:14:48 字数 671 浏览 9 评论 0原文

我是 grails 新手,尝试为我的 web 服务构建后端,应用程序仅访问提供的 web 服务,而不直接访问数据库。

package backend

import org.grails.plugins.wsclient.service.WebService

class BackendController {

    WebService webService

    def index = { 
        def wsdlUrl = "http://localhost8080/BackendService/Backend?wsdl"
        def proxy = webService.getClient(wsdlUrl)

        def result = proxy.getAll()
        render(text:result);
    }
}

并抛出此错误

Error 500: Executing action [index] of controller [backend.BackendController] caused exception: org.apache.cxf.interceptor.Fault: None of the policy alternatives can be satisfied.

如何修复该错误?

I'm new in grails, and trying to build a backend for my webservice, the apps only access the webservice provided not access to databases directly.

package backend

import org.grails.plugins.wsclient.service.WebService

class BackendController {

    WebService webService

    def index = { 
        def wsdlUrl = "http://localhost8080/BackendService/Backend?wsdl"
        def proxy = webService.getClient(wsdlUrl)

        def result = proxy.getAll()
        render(text:result);
    }
}

and throw this error

Error 500: Executing action [index] of controller [backend.BackendController] caused exception: org.apache.cxf.interceptor.Fault: None of the policy alternatives can be satisfied.

How to fix that error ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪落纷纷 2024-09-26 02:14:48

缺少冒号? 8080之前

missing the colon? before the 8080

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文