如何将Soap请求连接到PHP请求

时间:2018-10-10 12:00:21

标签: php xml api soap

在下面附上我的soapui请求。当我使用此PHP代码时,无法获得soapui的响应。请帮助我找到解决方法

SecretKey secretKey;
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
        String stringKey = "string got from machines below Pie";
        byte[] encodedKey     = Base64.decode(stringKey, Base64.DEFAULT);
        secretKey= new SecretKeySpec(encodedKey, 0, encodedKey.length, "AES");
} else {
    /* get the SecretKey as before Pie */
}
/* Continue the decryption process */

0 个答案:

没有答案