私は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.
そのエラーを修正するには?