簡體   English   中英

ios設備上的IBM Mobilefirst 8 ChallengHandler問題

[英]IBM Mobilefirst 8 ChallengHandler issue on ios device

我當前正在使用IBM MobileFirst Platform 8.0。 和Datapower作為反向代理服務器。

我已經實現了https://mobilefirstplatform.ibmcloud.com/blog/2016/06/17/datapower-integration/

iPhone 7 Plus和iPhone 6 plus一切正常,但是每當我在其他iPhone(iPhone 6或iPhone 6s)上運行以下方法時,都永遠不會被調用-

dataPowerChallengeHandler.canHandleResponse = function(response) {

if (!response || response.responseText === null) {
    return false;
}
var indicatorIdx = response.responseText.search('j_security_check');

if (indicatorIdx >= 0) {
    return true;
}

return false;

};

Plus和其他iPhone有什么區別嗎?

我正在使用MFP平台版本-8.0.0.00-20170131-101344

XCode 8.0版

ios版本10.0

我沒有在這里收集任何特定的已知問題,而Iphone版本。

為了進一步幫助您,您能否澄清以下內容

  1. 您是否嘗試過博客中的示例,並且該示例有效嗎? 2.您是否可以共享來自datapower網關的wireshark跟蹤,以及是否發現設備之間的流量有任何不同?

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM