HTTPBuilder语言 - 无法在空对象上调用带有 InputStream() 的方法



我有一个使用HTTPBuilder的时髦脚本来对SSL站点进行RestAPI调用。为了连接,我已将证书导入到新的密钥库中,并使用 HTTPBuilder 支持页面中的推荐代码 https://github.com/jgritman/httpbuilder/wiki/SSL

这是代码:

def url = 'https://1.1.1.1'
def uri = new URIBuilder(url)
uri.path = '/rest/com/session'
def httpLOGIN = new HTTPBuilder(uri)
def keyStore = KeyStore.getInstance(KeyStore.defaultType)
getClass().getResource("keystore.jks").withInputStream {
keyStore.load( it, "password".toCharArray())
}
String TempBasicAuth = "username:password".bytes.encodeBase64().toString()
httpLOGIN.client.connectionManager.schemeRegistry.register(
    new Scheme("https", 443, new SSLSocketFactory(keyStore))
)
httpLOGIN.request(POST,JSON) { req ->
headers.'Authorization' = "Basic $TempBasicAuth"
response.failure = { resp, json ->
    println "POST Failure. LOGIN: ${resp.statusLine}"
}
response.success = {// resp, json ->
    println "POST Success. LOGIN: ${resp.statusLine}"*/
}

}

我得到的回应是

Caught: java.lang.NullPointerException: Cannot invoke method withInputStream() on null object
java.lang.NullPointerException: Cannot invoke method withInputStream() on null object

我尝试提供密钥库的完整路径,但得到相同的结果。是我没有正确提供路径(我尝试了多次迭代(还是有其他问题?

这个问题

在这个问题中得到了解释——

使用 getClass((.getResource(( 加载资源

getResource 正在查找相对于类/脚本路径的路径,而不是文件路径。

相关内容

  • 没有找到相关文章

最新更新