1
대신 Worklight 6.1에서 인증 된 MPNS 오류가 http로 푸시됩니다. 인증 된 푸시 - 투 - 월 폰 작동을 얻으려고합니다. 키 저장소 및 구성이 완료되어, 우리가 로그에 다음과 같은 오류가 나타날 푸시 보내려고하지만 때https
SEVERE: FWLSE0170E: Notification through Microsoft Push Notification Service (MPNS) was not sent to application myApp-windowsphone8-1.3, because the notification channel that MPNS returned is not a secure uniform resource identifier (URI) (http://s.notify.live.net/u/1/db3/HmQAAACXKSe....wYet/J...0/f...q-a...A/9L_...-fw5zixLg).
000000c5 com.worklight.integration.notification.mpns.MPNSSender E FWLSE0170E: Notification through Microsoft Push Notification Service (MPNS) was not sent to application myApp-windowsphone8-1.3, because the notification channel that MPNS returned is not a secure uniform resource identifier (URI)
가 어떻게 HTTPS를 사용하는 소프트웨어의 조각을 얻을 수 있습니까를?
감사합니다.
편집 : Windows 용 여기에 응용 프로그램 descriptor.xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Licensed Materials - Property of IBM
5725-I43 (C) Copyright IBM Corp. 2006, 2013. All Rights Reserved.
US Government Users Restricted Rights - Use, duplication or
disclosure restricted by GSA ADP Schedule Contract with IBM Corp. --><!-- Attribute "id" must be identical to application folder name --><application xmlns="http://www.worklight.com/application-descriptor" id="myAPP" platformVersion="6.1.0.01.20140518-1532">
<displayName>xxx yyy App</displayName>
<description>xxx yyy App</description>
<author>
<name>xxx yyyyyyyyyyyyyyy</name>
<email>[email protected]</email>
<homepage>http:/xxxxxxx.org/</homepage>
<copyright>Copyright xxx yyyyyyyyyyyyyyyyyyyyyy</copyright>
</author>
<mainFile>index.html</mainFile>
<features/>
<thumbnailImage>common/images/thumbnail.png</thumbnailImage>
<iphone bundleId="cc.xxx.myAPP" version="1.3">
<worklightSettings include="false"/>
<pushSender password="*********"/>
<security>
<encryptWebResources enabled="false"/>
<testWebResourcesChecksum enabled="false" ignoreFileExtensions="png, jpg, jpeg, gif, mp4, mp3"/>
</security>
</iphone>
<android version="1.3">
<skins>
<skin name="default">
<folder name="common"/>
<folder name="android"/>
</skin>
<skin name="android.tablet">
<folder name="common"/>
<folder name="android"/>
<folder name="android.tablet"/>
</skin>
</skins>
<worklightSettings include="false"/>
<pushSender key="****************-**********************" senderId="nnnnnnnnnnnnnnnnnnn"/>
<security>
<encryptWebResources enabled="false"/>
<testWebResourcesChecksum enabled="false" ignoreFileExtensions="png, jpg, jpeg, gif, mp4, mp3"/>
<publicSigningKey>Replace this text with the actual public signing key of the certificate used to sign the APK, available by using the 'Extract public signing key' wizard.</publicSigningKey>
</security>
</android>
<windowsPhone8 version="1.3">
<uuid*****************-****-****-****-******************</uuid>
<pushSender>
<authenticatedPush serviceName="mobile.xxx.zz.cc" keyAlias="mobile_key" keyAliasPassword="**********" ></authenticatedPush>
</pushSender>
</windowsPhone8>
<windows8 version="1.2">
<uuid>**********-*****-******-***********</uuid>
</windows8>
application-descriptor.xml에 질문을 붙여 넣을 수 있습니까? 모든 필수 세부 정보를 입력했는지 확인하십시오. –
불행히도 이것이 문제가있는 곳을보기에 충분하지 않습니다. 겪고있는 문제 만 표시하는 샘플 응용 프로그램을 만들 수 있습니까? (기밀 응용 프로그램 제외) 디버깅 할 수 있습니까? –
세부 정보를 얻기 위해 워크 라이트에서 일부 추적 또는 전체 디버그 로깅을 활성화하는 방법이 있습니까? @IdanAdar – JerryVienna