2017-09-21 19 views
0

私はIBM MobileFirstアプリケーションで直接更新を試みていますが、Androidバージョンのみで動作します。 ここに私のconfファイルがあります。Androidで動作しているが、IPad/IPhoneで動作しないダイレクトアップデート

authenticationConfig.xml

<?xml version="1.0" encoding="UTF-8"?> 
<tns:loginConfiguration xmlns:tns="http://www.worklight.com/auth/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
    <staticResources> 
     <resource id="subscribeServlet" securityTest="SubscribeServlet"> 
      <urlPatterns>/subscribeSMS*;/receiveSMS*;/ussd*</urlPatterns> 
     </resource> 
    </staticResources> 
    <securityTests> 


     <mobileSecurityTest name="mobileWithDirectUpdate"> 
       <testDirectUpdate mode="perSession"/> 
     </mobileSecurityTest> 

     <customSecurityTest name="securityCanalLojista"> 
      <test realm="wl_authenticityRealm" step="1"/> 
      <test realm="wl_antiXSRFRealm" step="2"/> 
      <test realm="wl_remoteDisableRealm" step="2"/> 
      <test isInternalUserID="true" realm="wl_anonymousUserRealm" step="2"/> 
      <test isInternalDeviceID="true" realm="wl_deviceNoProvisioningRealm" step="2"/> 
      <test realm="wl_directUpdateRealm" mode="perSession" step="1" /> 
     </customSecurityTest> 

     <customSecurityTest name="SubscribeServlet"> 
      <test realm="SubscribeServlet" isInternalUserID="true"/> 
     </customSecurityTest>   
    </securityTests> 

    <realms> 
     <realm name="SampleAppRealm" loginModule="StrongDummy"> 
      <className>com.worklight.core.auth.ext.FormBasedAuthenticator</className> 
     </realm> 

     <realm name="SubscribeServlet" loginModule="rejectAll"> 
      <className>com.worklight.core.auth.ext.HeaderAuthenticator</className>   
     </realm> 
    </realms> 

    <loginModules> 
     <loginModule name="StrongDummy" expirationInSeconds="3600"> 
      <className>com.worklight.core.auth.ext.NonValidatingLoginModule</className> 
     </loginModule> 

     <loginModule name="requireLogin" expirationInSeconds="3600"> 
      <className>com.worklight.core.auth.ext.SingleIdentityLoginModule</className> 
     </loginModule> 

     <loginModule name="rejectAll" expirationInSeconds="3600"> 
      <className>com.worklight.core.auth.ext.RejectingLoginModule</className> 
     </loginModule> 
    </loginModules> 
</tns:loginConfiguration> 

applicationDescriptor.xml

<?xml version='1.0' encoding='utf-8'?> 
<application id="br_com_customer_CanalLojista" platformVersion="7.1.0.00.20160229-1240" xmlns="http://www.worklight.com/application-descriptor" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
    <displayName>CanalLojista</displayName> 
    <description>A sample Apache Cordova application that responds to the deviceready event.</description> 
    <author> 
     <name>IBM MobileFirst Team</name> 
     <email>[email protected]</email> 
     <copyright>Copyright My Company</copyright> 
     <homepage>https://developer.ibm.com/mobilefirstplatform/documentation/getting-started</homepage> 
    </author> 
    <mainFile>index.html</mainFile> 
    <thumbnailImage>www/img/thumbnail.png</thumbnailImage> 
    <accessTokenExpiration>3600</accessTokenExpiration> 
    <userIdentityRealms /> 
    <licenseAppType>APPLICATION</licenseAppType> 
    <targetCategory>UNDEFINED</targetCategory> 
    <android version="1.0.0" securityTest="securityCanalLojista"> 
     <worklightSettings include="false" /> 
     <security> 
      <encryptWebResources enabled="false" /> 
      <testWebResourcesChecksum enabled="false" ignoreFileExtensions="png, jpg, jpeg, gif, mp4, mp3" /> 
      <publicSigningKey>MyPublicKeyuhaush</publicSigningKey> 
      <packageName>br.com.customer.CanalLojista</packageName> 
     </security> 
    </android> 
    <iphone bundleId="br.com.customer.CanalLojista" applicationId="br_com_customer_CanalLojista" version="1.0.0" securityTest="securityCanalLojista"> 
     <worklightSettings include="false" /> 
     <security> 
      <encryptWebResources enabled="false" /> 
      <testWebResourcesChecksum enabled="false" ignoreFileExtensions="png, jpg, jpeg, gif, mp4, mp3" /> 
     </security> 
    </iphone> 
</application> 

私のデプロイされたバージョンは、私のsecurityTestを使用しています。 このIBMの記事Enabling Direct Update Authenticity checksenter image description here

とdirectUpdateAuthenticityPublicKeyタグについて何かを見るが、私は本当にそれがアンドロイドに取り組ん見する必要はありませんので、それを設定する必要がある場合は確信しています。

私のプロジェクトで何が間違っているのですか?

+0

)iPhoneでは、アプリケーションはサーバーに正常に接続されますか?それでも、直接のアップデートは起こっていませんか? b)iPhone wlappも更新して配備しましたか? c)スタンドアロンサーバーまたはクラスタで作業していますか? –

+0

)はい、私はログインして、通常のアプリを使用することができます。そして、いいえ、直接更新は機能しません。 b)はい。 c)スタンドアロン –

答えて

0

ごめんなさい、私の設定はOKです。私はipad/iphoneに必要ではないコードを変更していました。それが新しいバージョンをダウンロードしなかった理由です。 ipadで必要なファイルを変更した後、新しいバージョンをダウンロードしました。

関連する問題