Re: Does apns-camel support a sandbox environment?

2013-09-15 Thread troypayne
y without scala + akka and just plain java and get something >> working. And read the docs at http://camel.apache.org/apns, and this >> blog >> http://blog.xebia.fr/2010/09/30/creer-un-composant-apache-camel-de-connexion-a-lapns-1-sur-3/ >> And check the unit tests of camel-apns.

Re: Does apns-camel support a sandbox environment?

2013-09-15 Thread troypayne
the docs at http://camel.apache.org/apns, and this > blog > http://blog.xebia.fr/2010/09/30/creer-un-composant-apache-camel-de-connexion-a-lapns-1-sur-3/ > And check the unit tests of camel-apns. > > On Sun, Sep 15, 2013 at 12:57 PM, troypayne <[hidden > email]<http://user

Re: Does apns-camel support a sandbox environment?

2013-09-15 Thread troypayne
ndbox.push.apple.com") apnsServiceFactory.setFeedbackPort(2195) val apnsService = apnsServiceFactory.getApnsService() val apnsComponent = camelContext.getComponent("apns", classOf[ApnsComponent]) apnsComponent.setApnsService(apnsService) } } On Sun, Sep 15, 2013 at 6:54 AM, Cl

Re: Does apns-camel support a sandbox environment?

2013-09-15 Thread troypayne
laus Ibsen-2 [via Camel] < ml-node+s465427n5739407...@n5.nabble.com> wrote: > There ought to be a setFeedbackHost / port also you need to set. > > On Sun, Sep 15, 2013 at 12:32 PM, troypayne <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5739407

Re: Does apns-camel support a sandbox environment?

2013-09-15 Thread troypayne
he > org.apache.camel.component.apns.factory.ApnsServiceFactory. > > They are default configured for production. > > > On Sat, Sep 14, 2013 at 7:19 PM, troypayne <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5739403&i=0>> > wrote: > >

Does apns-camel support a sandbox environment?

2013-09-14 Thread troypayne
Hello Riders, I've setup my scala project to send push notifications to a deviceToken (hex), using a sandbox cert. I'm not receiving any of the notifications to my device and I'm not sure if the ApnsServiceFactory is configured for sandbox or production. Has anyone else come across this problem?