RedHat Linux 上の WebSphere アプリケーション サーバー (7.0.0.21) で実行されている Worklight 5.0.6.20130311-0918 を使用しており、Worklight Console を使用してアプリをデプロイしようとしています。エラーが発生します:
「アプリケーション「CitizenCollaboration-android-1.0.5.wlapp」のデプロイに失敗しました。: エラー'
WebSphere の SystemOut.log には多くの情報がありません。App Server 管理コンソールでトレース レベルを上げてみましたが、まだ十分なエラー情報がありません。
注: ワークライト・アダプターを正常にデプロイできました
認証.xml
<staticResources>
<resource id="worklightConsole" securityTest="WorklightConsole">
<urlPatterns>/console*</urlPatterns>
</resource>
</staticResources>
<securityTests>
<customSecurityTest name="WorklightConsole">
<test realm="WorklightConsole" isInternalUserID="true"/>
</customSecurityTest>
<mobileSecurityTest name="WAS-mobileSecurityTest">
<testDeviceId provisioningType="none" />
<!-- <testUser realm="wl_remoteDisableRealm"/> -->
<testUser realm="WASLTPARealm"/>
</mobileSecurityTest>
<webSecurityTest name="WAS-webSecurityTest">
<testUser realm="WASLTPARealm"/>
</webSecurityTest>
<customSecurityTest name="pushSecurityTest">
<test realm="PushBackendRealm" isInternalUserID="true"/>
</customSecurityTest>
</securityTests>
<realms>
<realm loginModule="StrongDummy" name="SampleAppRealm">
<className>com.worklight.core.auth.ext.FormBasedAuthenticator</className>
</realm>
<realm loginModule="requireLogin" name="WorklightConsole">
<className>com.worklight.core.auth.ext.FormBasedAuthenticator</className>
<onLoginUrl>/console</onLoginUrl>
</realm>
<realm loginModule="requireLogin" name="PushBackendRealm">
<className>com.worklight.core.auth.ext.BasicAuthenticator</className>
<parameter name="basic-realm-name" value="CitizenCollaboration" />
</realm>
<realm name="WASLTPARealm" loginModule="WASLTPAModule">
<className>com.worklight.core.auth.ext.WebSphereFormBasedAuthenticator</className>
<parameter name="login-page" value="/login.html"/>
<parameter name="error-page" value="/loginError.html"/>
</realm>
</realms>
<loginModules>
<loginModule name="StrongDummy">
<className>com.worklight.core.auth.ext.NonValidatingLoginModule</className>
</loginModule>
<loginModule name="requireLogin">
<className>com.worklight.core.auth.ext.SingleIdentityLoginModule</className>
</loginModule>
<loginModule name="WASLTPAModule">
<className>com.worklight.core.auth.ext.WebSphereLoginModule</className>
</loginModule>
</loginModules>