2016-11-29 1 views
0

Good Day!ランタイム "mfp"はMobileFirst管理データベースに存在しません。データベースが壊れている可能性があります。HTTP 404 - Not Found

私はGithubのシンプルなCordova Mobile App - ResourceRequestCordovaを実行していて、サンプルJavaAdapterを使用しています。フォームの送信中に問題が発生しました。しかし問題は、その表示されている

エラー:ランタイム "mfp"はMobileFirst管理データベースに存在しません。データベースが壊れている可能性があります。HTTP 404 - 見つからない

..私は新しいMobileFirst Foundation 8.0 Dev Kitを使用しています。

1)マイコルドバコードindex.js:

submitRequest:function() { 
    var first = document.getElementById("first").value; 
    var middle = document.getElementById("middle").value; 
    var last = document.getElementById("last").value; 
    var age = document.getElementById("age").value; 
    var birthdate = document.getElementById("birthdate").value; 
    var height = document.getElementById("height").value; 

    //JavaAdapter expects first, middle and last to be part of the POST URL path. 
    var url = "/adapters/javaAdapter/users/"+first+"/"+middle+"/"+last; 
    var resourceRequest = new WLResourceRequest(url, WLResourceRequest.POST); 

    //JavaAdapter expects age to be a query parameter. 
    resourceRequest.setQueryParameter("age", age); 

    //JavaAdapter expects birthdate to be a header parameter. 
    resourceRequest.setHeader("birthdate",birthdate); 

    //JavaAdapter expects height to be a form parameter. 
    var formParameters = {}; 
    formParameters.height = height; 

    resourceRequest.sendFormParameters(formParameters).then(app.onSuccess, app.onFailure); 
    window.plugins.spinnerDialog.show(null,null,function(){/*no callback - force the use of SpinnerDialog.hide() */ }); 
}, 

エラー

Errors: 
{ getAdapterError: FWLSE3002E: The resource is not found. : FWLSE3038E: The adapter "javaAdapter" of the runtime "mfp" does not exist in the MobileFirst administration database. The database may be corrupted.: HTTP 404 - Not Found 
    at _processResponse (C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\mdo-server-support\lib\rest-client-api\adapter.js:550:23) 
    at C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\mdo-server-support\lib\rest-client-api\adapter.js:464:22 
    at _fulfilled (C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\q\q.js:834:54) 
    at self.promiseDispatch.done (C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\q\q.js:863:30) 
    at Promise.promise.promiseDispatch (C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\q\q.js:796:13) 
    at C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\q\q.js:604:44 
    at runSingle (C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\q\q.js:137:13) 
    at flush (C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\q\q.js:125:13) 
    at _combinedTickCallback (internal/process/next_tick.js:67:7) 
    at process._tickCallback (internal/process/next_tick.js:98:9) 
jse_shortmsg: 'FWLSE3002E: The resource is not found. : FWLSE3038E: The adapter "javaAdapter" of the runtime "mfp" does not exist in the MobileFirst administration database. The database may be corrupted.', 
jse_summary: 'FWLSE3002E: The resource is not found. : FWLSE3038E: The adapter "javaAdapter" of the runtime "mfp" does not exist in the MobileFirst administration database. The database may be corrupted.: HTTP 404 - Not Found', 
jse_cause: 
    { NotFound: HTTP 404 - Not Found 
     at FormData.<anonymous> (C:\Users\XXX\AppData\Roaming\npm\node_modules\mfpdev-cli\node_modules\mdo-server-support\lib\rest-client\get.js:93:25) 
     at emitOne (events.js:96:13) 
     at ClientRequest.emit (events.js:188:7) 
     at HTTPParser.parserOnIncomingClient (_http_client.js:474:21) 
     at HTTPParser.parserOnHeadersComplete (_http_common.js:99:23) 
     at Socket.socketOnData (_http_client.js:363:20) 
     at emitOne (events.js:96:13) 
     at Socket.emit (events.js:188:7) 
     at readableAddChunk (_stream_readable.js:176:18) 
     at Socket.Readable.push (_stream_readable.js:134:10) name: 'NotFound' }, 
+0

上記の問題を解決するための解決策がありますか? –

+0

うん、私はそれを持って、まずアダプタプログラムを構築するだけだ。 – fndong

答えて

0

FWLSE3038E:アダプターランタイム "MFP" の "javaAdapterは" MobileFirstの管理には存在しませんデータベース。データベースが破損している可能性があります。

アダプターを正しく構築して展開していないようです。

アダプタをビルドして展開したら、MobileFirst Consoleをロードしてアダプタがアダプタのリストに存在することを確認します。

関連する問題