バグ番号 | 説明 | プラットフォーム | 回避策 | |
---|---|---|---|---|
1. | 20354117 | Secured application without default login server connection definition hangs at splash screen. デフォルト・ログイン・サーバー接続が定義されていない保護されたアプリケーションが、スプラッシュ画面でハングする。 | 両方 | Specify a default login server connection. デフォルト・ログイン・サーバー接続を指定します。 |
2. | 20353168 | Application log levels may not be initialized correctly. アプリケーション・ログ・レベルが正しく初期化されない場合がある。 | 両方 | None. なし。 |
3. | 20199404 | Config Service crashes if an invalid URL is entered. 無効なURLを入力すると、Config Serviceがクラッシュする。 | 両方 | Validate the entered URL before invoking the Config Service. Config Serviceを呼び出す前に、入力したURLを検証します。 |
4. | 20147418 | Network connection is lost when the VPN connection is lost and restored on iOS simulator. VPN接続が失われてiOSシミュレータでリストアされると、ネットワーク接続が失われる。 | iOS | Test on a device rather than a simulator. シミュレータではなくデバイスでテストします。 |
5. | 20125711 | Whitelist behavior has changed in MAF 2.1.0: Whitelist URL must not end with a wildcard '*' or slash '/'. MAF 2.1.0のホワイトリストの動作が変更されている。 ホワイトリストURLの末尾に、ワイルドカード'*'やスラッシュ'/'を付けることができない。 | 両方 | This is due to a change in how Cordova validates whitelist entries. Specify something like http://*.xyz.com rather than http://*.xyz.* or http://*.xyz.com/. Cordovaによるホワイトリスト・エントリの検証方法が変更されたことが原因です。 http://*.xyz.*やhttp://*.xyz.com/ではなく、http://*.xyz.comのように指定してください。 |
6. | 20124035 | Application fails to respond while using the email functionality when email is not setup on the device. デバイスで電子メールを設定していないと、電子メール機能の使用中にアプリケーションが応答しない。 | iOS | Upgrade to MAF 2.1.2. MAF 2.1.2にアップグレードします。 |
7. | 20097028 | VM logging isn't written to logcat. VMロギングがlogcatに書き込まれない。 | Android | Upgrade to MAF 2.1.2. MAF 2.1.2にアップグレードします。 |
8. | 19889571 | Application launched on iOS 8 prompts the user to allow notifications although the app does not use notifications. iOS 8でアプリケーションを起動すると、アプリケーションで通知を使用していないのに通知の許可を求められる。 | iOS | None. なし。 |
9. | 19843912 | Application hands when using the Config Service and the user navigates away from the login page to change the server URL then returns to the login page and signs in. Config Serviceを使用しているときに、ログイン・ページから移動してサーバーURLを変更してからログイン・ページに戻ってサインインすると、アプリケーションがハングする。 | 両方 | In the lifecycle listener's activate method, navigate to an unsecured feature which in turn navigates to the secured feature. ライフ・サイクル・リスナーのactivateメソッドで、保護されていない機能に移動してから保護されている機能に移動します。 |
10. | 19673987 | Calling gotoFeature within a feature's lifecycle listener may lead to the other feature being activated twice. 機能のライフ・サイクル・リスナー内でgotoFeatureを呼び出すと、他の機能が2回アクティブ化される場合がある。 | 両方 | Use a task flow that implements the required logic rather than implementing the logic in the lifecycle listener. ライフ・サイクル・リスナーでロジックを実装するのではなく、必要なロジックを実装するタスク・フローを使用します。 |
11. | 19510249 | File encryption API expects the password to be normalized to a 16 byte AES key. ファイル暗号化APIで、パスワードを16バイトのAESキーに正規化する必要がある。 | 両方 | The steps listed below show an example of how to create a password which is normalized to 16 bytes: 以下の手順は、16バイトに正規化されるパスワードの作成方法の例です。 String password = new String(p); while (password.length() < 16) { password += password; } password = password.substring(0, 16); String normalizedPassword = password.toCharArray(); |
12. | 19491407 | After successful login, invoking APIs through Ajax calls from a local HTML page returns 401 :Unauthorized error. ログインに成功した後、ローカルのHTMLページからAjaxコール経由でAPIを起動すると、401 : Unauthorized errorが返される。 | 両方 | None. なし。 |
13. | 18549642 | If a locale-specific resource bundle does not contain a referenced key/value pair, fallback to the value defined in the default resource bundle doesn't work. ロケール固有のリソース・バンドルに参照先のキー/値ペアが含まれないと、デフォルト・リソース・バンドルで定義した値へのフォールバックが機能しない。 | 両方 | Ensure that every referenced key/value pair is defined in all locale-specific resource bundles. すべてのロケール固有のリソース・バンドルで、参照先のキー/値ペアがすべて定義されていることを確認します。 |
14. | 17511581 | JDeveloper displays a warning when including the SOAP header files due to the word 'internal' in the package name. JDeveloperでSOAPヘッダー・ファイルを含めるときに、パッケージ名に'internal'という単語が含まれていると、警告が表示される。 | 両方 | Ignore the warning. この警告は無視します。 |
15. | 20019619 | Newly created 'Run Configuration' does not appear for selection until JDeveloper is restarted. JDeveloperを再起動しないと、新しく作成した'Run Configuration'が表示されず選択できない。 | 両方 | Restart JDeveloper, or do a Save All then force a context change by selecting a different project in the application. JDeveloperを再起動するかSave Allを実行してから、アプリケーションで別のプロジェクトを選択してコンテキスト変更を強制的に行います。 |