osdir.com
mailing list archive

Subject: Re: apple push notification Need a strong help - msg#00118

List: iPhoneSDKDevelopment

Date: Prev Next Index Thread: Prev Next Index

How many third party services are there with a track record that can
be trusted as reliable.
Obviously if your data is mission critical this is important.

Building a java server for APNS is pretty trivial, php shouldn't be
much harder.

Open your connection when the server starts, test for a instance of
the connection just before sending the apns, if found use the existing
connection.

Whats so hard???

On Aug 18, 12:10 pm, Mirko Froehlich <mfroehl...@xxxxxxxxx> wrote:
> My understanding is that it's easy enough to hack together a proof of
> concept, and there's sample code floating around for php, Ruby on
> Rails, etc. But once you're dealing with meaningful numbers of
> notifications you're supposed to maintain a persistent HTTP connection
> to Apple's servers, so it's significantly more complicated than just
> calling a snippet of php or Ruby code from your web app.
>
> Obviously, it's entirely feasible to build your own standalone Java or
> Ruby daemon app for this purpose, but I would much rather focus my
> effort on adding business value and leveraging third party services
> for this type of infrastructure.
>
> -Mirko
>
> On Aug 17, 4:01 am, shelly <canno...@xxxxxxxxxxx> wrote:
>
>
>
> > To many people go into this assuming it is hard and they get what they
> > expect.
>
> > The first thing to do is read the apple getting started documentation
> > its pretty good.
>
> > There is one book that covers it pretty well, the new version of the
> > Iphone developers cookbook.
>
> > There are a lot of postings on the developer forum that show how to do
> > this with php.
>
> > we perfer to use java and have a lot of info and a sample server on
> > our site.
>
> >http://sol3.typepad.com/tagalong_developer_journa/2009/06/test-server...
>
> > On Aug 15, 2:53 am, Mirko Froehlich <mfroehl...@xxxxxxxxx> wrote:
>
> > > I encourage you to look at a third party service such as Urban Airship
> > > (http://urbanairship.com/). They provide a server side
> > > infrastructure / REST API for sending push notifications, among other
> > > things. I believe they're in public beta now, so you should be able to
> > > sign up and get started immediately. If I remember correctly, all
> > > notifications sent during development are free, and they have a very
> > > reasonable pricing scheme for production apps.
>
> > > Especially given your short time frame, this should allow you to focus
> > > on the actual iPhone app, without having to build and debug your own
> > > notifications infrastructure.
>
> > > -Mirko
>
> > > On Aug 13, 11:23 am, anabillo <bilal.all...@xxxxxxxxx> wrote:
>
> > > > Hello All,
>
> > > > My Boss just informed me that I must deliver a small application as a
> > > > prof of concept that I can use the new apple push notification. I have
> > > > only 2 days to do that starting from now. Any one please have a
> > > > complete end to end example that he might share, or can lead me to
> > > > some good tutorials.
>
> > > > Thanks- Hide quoted text -
>
> > > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"iPhone SDK Development" group.
To post to this group, send email to iphonesdkdevelopment@xxxxxxxxxxxxxxxx
To unsubscribe from this group, send email to
iphonesdkdevelopment+unsubscribe@xxxxxxxxxxxxxxxx
For more options, visit this group at
http://groups.google.com/group/iphonesdkdevelopment?hl=en
-~----------~----~----~----~------~----~------~--~---

Was this page helpful?
Yes No
Thread at a glance:

Previous Message by Date: click to view message preview

Cydia

I've been developing a game for months and having finished it, submited it to apple for approval. Apple has rejected the app many times for bs reasons, claiming it violated a guideline that it in no way violated. Now I'm looking into other ways to submit the app and I have heard about something called cydia. Does anyone have any experience submitting apps through cydia or know of a good guide for how to do so? I've googled how to do it and found some half-decent instructions on building and submitting the app for cydia, but there doesn't seem to be much documentation from a developer side and it would be much nicer if someone had a clearer guide. Any help is much appreciated! Thanks, Mike --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group. To post to this group, send email to iphonesdkdevelopment@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en -~----------~----~----~----~------~----~------~--~---

Next Message by Date: click to view message preview

Re: Cydia

Cydia is an installer for jailbroke phones. There is info on cydia.com on getting apps into repositories for cydia. Sent from my iPhone On Aug 18, 2009, at 9:35 AM, Mike <michaelphess@xxxxxxxxx> wrote: > > I've been developing a game for months and having finished it, > submited it to apple for approval. Apple has rejected the app many > times for bs reasons, claiming it violated a guideline that it in no > way violated. Now I'm looking into other ways to submit the app and > I have heard about something called cydia. Does anyone have any > experience submitting apps through cydia or know of a good guide for > how to do so? I've googled how to do it and found some half-decent > instructions on building and submitting the app for cydia, but there > doesn't seem to be much documentation from a developer side and it > would be much nicer if someone had a clearer guide. Any help is much > appreciated! > > Thanks, > Mike > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group. To post to this group, send email to iphonesdkdevelopment@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en -~----------~----~----~----~------~----~------~--~---

Previous Message by Thread: click to view message preview

Re: apple push notification Need a strong help

My understanding is that it's easy enough to hack together a proof of concept, and there's sample code floating around for php, Ruby on Rails, etc. But once you're dealing with meaningful numbers of notifications you're supposed to maintain a persistent HTTP connection to Apple's servers, so it's significantly more complicated than just calling a snippet of php or Ruby code from your web app. Obviously, it's entirely feasible to build your own standalone Java or Ruby daemon app for this purpose, but I would much rather focus my effort on adding business value and leveraging third party services for this type of infrastructure. -Mirko On Aug 17, 4:01 am, shelly <canno...@xxxxxxxxxxx> wrote: > To many people go into this assuming it is hard and they get what they > expect. > > The first thing to do is read the apple getting started documentation > its pretty good. > > There is one book that covers it pretty well, the new version of the > Iphone developers cookbook. > > There are a lot of postings on the developer forum that show how to do > this with php. > > we perfer to use java and have a lot of info and a sample server on > our site. > > http://sol3.typepad.com/tagalong_developer_journa/2009/06/test-server... > > On Aug 15, 2:53 am, Mirko Froehlich <mfroehl...@xxxxxxxxx> wrote: > > > > > I encourage you to look at a third party service such as Urban Airship > > (http://urbanairship.com/). They provide a server side > > infrastructure / REST API for sending push notifications, among other > > things. I believe they're in public beta now, so you should be able to > > sign up and get started immediately. If I remember correctly, all > > notifications sent during development are free, and they have a very > > reasonable pricing scheme for production apps. > > > Especially given your short time frame, this should allow you to focus > > on the actual iPhone app, without having to build and debug your own > > notifications infrastructure. > > > -Mirko > > > On Aug 13, 11:23 am, anabillo <bilal.all...@xxxxxxxxx> wrote: > > > > Hello All, > > > > My Boss just informed me that I must deliver a small application as a > > > prof of concept that I can use the new apple push notification. I have > > > only 2 days to do that starting from now. Any one please have a > > > complete end to end example that he might share, or can lead me to > > > some good tutorials. > > > > Thanks- Hide quoted text - > > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group. To post to this group, send email to iphonesdkdevelopment@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en -~----------~----~----~----~------~----~------~--~---

Next Message by Thread: click to view message preview

Re: apple push notification Need a strong help

the hard part is , where to use the certificate and the device token ?  Can you share with us a simple server Java code? That will be helpfulThanks On Tue, Aug 18, 2009 at 7:20 PM, shelly <cannonwg@xxxxxxxxxxx> wrote: How many third party services are there with a track record that can be trusted as reliable. Obviously if your data is mission critical this is important. Building a java server for APNS is pretty trivial, php shouldn't be much harder. Open your connection when the server starts, test for a instance of the connection just before sending the apns, if found use the existing connection. Whats so hard??? On Aug 18, 12:10 pm, Mirko Froehlich <mfroehl...@xxxxxxxxx> wrote: > My understanding is that it's easy enough to hack together a proof of > concept, and there's sample code floating around for php, Ruby on > Rails, etc. But once you're dealing with meaningful numbers of > notifications you're supposed to maintain a persistent HTTP connection > to Apple's servers, so it's significantly more complicated than just > calling a snippet of php or Ruby code from your web app. > > Obviously, it's entirely feasible to build your own standalone Java or > Ruby daemon app for this purpose, but I would much rather focus my > effort on adding business value and leveraging third party services > for this type of infrastructure. > > -Mirko > > On Aug 17, 4:01 am, shelly <canno...@xxxxxxxxxxx> wrote: > > > > > To many people go into this assuming it is hard and they get what they > > expect. > > > The first thing to do is read the apple getting started documentation > > its pretty good. > > > There is one book that covers it pretty well, the new version of the > > Iphone developers cookbook. > > > There are a lot of postings on the developer forum that show how to do > > this with php. > > > we perfer to use java and have a lot of info and a sample server on > > our site. > > >http://sol3.typepad.com/tagalong_developer_journa/2009/06/test-server... > > > On Aug 15, 2:53 am, Mirko Froehlich <mfroehl...@xxxxxxxxx> wrote: > > > > I encourage you to look at a third party service such as Urban Airship > > > (http://urbanairship.com/). They provide a server side > > > infrastructure / REST API for sending push notifications, among other > > > things. I believe they're in public beta now, so you should be able to > > > sign up and get started immediately. If I remember correctly, all > > > notifications sent during development are free, and they have a very > > > reasonable pricing scheme for production apps. > > > > Especially given your short time frame, this should allow you to focus > > > on the actual iPhone app, without having to build and debug your own > > > notifications infrastructure. > > > > -Mirko > > > > On Aug 13, 11:23 am, anabillo <bilal.all...@xxxxxxxxx> wrote: > > > > > Hello All, > > > > > My Boss just informed me that I must deliver a small application as a > > > > prof of concept that I can use the new apple push notification. I have > > > > only 2 days to do that starting from now. Any one please have a > > > > complete end to end example that he might share, or can lead me to > > > > some good tutorials. > > > > > Thanks- Hide quoted text - > > > > - Show quoted text -- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhone SDK Development" group. To post to this group, send email to iphonesdkdevelopment@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to iphonesdkdevelopment+unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/iphonesdkdevelopment?hl=en -~----------~----~----~----~------~----~------~--~---
Loading Comments...
Home | News | Patents | Sitemap | FAQ | advertise

Advertising by