获取wslite.http.HTTPClientException:404 Not Found。验证肥皂地址是否正确

时间:2016-08-04 18:58:11

标签: groovyws

我正在使用groovy wslite插件拨打肥皂。我收到了wslite.http.HTTPClientException:404 Not Found。有人可以帮我调试这个问题。

Groovy代码

    def client = new SOAPClient(Helper.getConfigValue('grails.soap.ws.url'))

    try {
        def response = client.send(SOAPAction: SOAP_NAMESPACE + SOAP_ACTION_START_PROCESS,
                sslTrustAllCerts: true) {
            header {
                delegate.securityInfo(buildSecurityInfoObject())
            }
            body {
                getNotificationRequest('xmlns': SOAP_NAMESPACE) {
                    delegate.transactionId('12345')
                }
            }
        }

1 个答案:

答案 0 :(得分:0)

你可能已经做了这个alredy,在这里我要问:你有没有验证资源是否存在于你试图从中检索它的路径/ url下? 404经常表明主机不可用。