<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: iOS bags of handler push notification in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603081#M174708</link>
    <description>&lt;P&gt;I have no experience doing this, but have you seen this page?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=cintex&amp;amp;docsetTarget=set-up-mobile-apps.htm&amp;amp;docsetVersion=19.11&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=cintex&amp;amp;docsetTarget=set-up-mobile-apps.htm&amp;amp;docsetVersion=19.11&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 10 Nov 2019 21:38:40 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2019-11-10T21:38:40Z</dc:date>
    <item>
      <title>iOS bags of handler push notification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603049#M174691</link>
      <description>&lt;P&gt;Report of bag of handler push notifications on ios app:&lt;BR /&gt;Steps:&lt;BR /&gt;1. run application&lt;BR /&gt;2. press lock screen button&lt;BR /&gt;3. send push&lt;BR /&gt;4. wait push&lt;BR /&gt;5. open push&lt;BR /&gt;6. unlock phone(enter password)&lt;BR /&gt;7. method is called&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -&amp;gt; Void) {
         SASCollector.handleMobileMessage(userInfo, with: application)
}&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;8. Method of SASMobileMessagingDelegate2&amp;nbsp;&lt;SPAN style="font-family: HelevticaNeue-light, 'Helvetica Neue', Helvetica, Arial, sans-serif; white-space: normal; background-color: #ffffff;"&gt;&amp;nbsp;is not called in this case.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;func action(withLink link: String, type: SASMobileMessageType) { }&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;And method return true&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;SASCollector.handleMobileMessage(userInfo, with: application)&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;9. if swap the 5 and 6 step, method SASMobileMessagingDelegate2 is called&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;func action(withLink link: String, type: SASMobileMessageType) { }&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;All setting for application was took from document:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;SAS® Customer Intelligence 360: User’s Guide&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;at&amp;nbsp;paragraph:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV class="page"&gt;&lt;DIV class="layoutArea"&gt;&lt;DIV class="column"&gt;&lt;PRE&gt;Apple Production and Development Certificates and Keys for Enabling Push Services&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;What am I doing wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2019 11:25:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603049#M174691</guid>
      <dc:creator>TouchInstinct</dc:creator>
      <dc:date>2019-11-10T11:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: iOS bags of handler push notification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603081#M174708</link>
      <description>&lt;P&gt;I have no experience doing this, but have you seen this page?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=cintex&amp;amp;docsetTarget=set-up-mobile-apps.htm&amp;amp;docsetVersion=19.11&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=cintex&amp;amp;docsetTarget=set-up-mobile-apps.htm&amp;amp;docsetVersion=19.11&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2019 21:38:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603081#M174708</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-11-10T21:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: iOS bags of handler push notification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603136#M174726</link>
      <description>&lt;P&gt;yes, I am doing&amp;nbsp;as described in this documentation, but this bugs is happened always&lt;BR /&gt;&lt;BR /&gt;Method is not called&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;func action(withLink link: String, type: SASMobileMessageType) { }&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 09:19:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603136#M174726</guid>
      <dc:creator>TouchInstinct</dc:creator>
      <dc:date>2019-11-11T09:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: iOS bags of handler push notification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603401#M174823</link>
      <description>&lt;P&gt;One for tech support I reckon, this is a niche product a few people here would have used (though you never know, one is enough...).&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 23:51:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/iOS-bags-of-handler-push-notification/m-p/603401#M174823</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-11-11T23:51:58Z</dc:date>
    </item>
  </channel>
</rss>

