1
vote
0answers
12 views

Blackberry Push Notification - Not receiving on Device

I am struggling for getting message on devices since last some days. At last I think to take a help from experts. Below are the steps I have followed. I have created Push initiator in core java. ...
1
vote
1answer
31 views

Cannot resolve symbol 'GoogleCloudMessaging' GCM

I am trying to get GCM working in my app (to notify users of when our hours change, or if we have any promos going on) but i keep getting the error "Cannot resolve symbol 'GoogleCloudMessaging'" when ...
0
votes
2answers
21 views

Best method to get url from notification and load into Fragment's webview?

So basically im just new to Android, and im making a application which sends realtime notifications sended with php from server. Now i want that the notification when clicked by the user opens a ...
-1
votes
0answers
33 views

push notification-Blackberry [closed]

I have to build a notification app for blackberry,and I have a registered my device and I am using C# server to send notification,But can't receive notification on my device... Please help me ...
0
votes
0answers
25 views

On which port number request is sent to MPNS for windows push from application server

I want to send toast push notifications to windows devices from my application server. I have received URI from the device in the form of http://db3.notify.live.net/..... I have written a java code to ...
1
vote
1answer
44 views

Strange BlackBerry log

I am using the code below , as part of my push notifications implementation: private static final String BPAS_URL = "http://pushapi.eval.blackberry.com"; private static final String APP_ID = ...
7
votes
2answers
94 views

GCM cannonical id

When having multiple regids for 1 device GCM returns the cannonical id error: ...
-4
votes
2answers
71 views

Always running service [closed]

I'm working on an Android Application (java) for my school with an E-Mail client in it, and I want to create a Service which is always running in Background and refreshes the Inbox every hour, and if ...
0
votes
1answer
63 views

Apple Push Notification Throughput and Error Checking

Recently Apple modified their Technical Note TN2265 - Troubleshooting Push Notifications. They added a section about throughput and error checking. This is taken from that section : Here's how to ...
1
vote
1answer
206 views

Convert a “php script to send push notification” in android http post

I want to convert a php script(to send push notification in android devices) in to a android http post code. php script (working fine) : printed response : ...
0
votes
1answer
54 views

Device Tokens are different from one device to another device

Hi i am little bit confusion about Device Token so can any one guide me. I am using following code for getting DeviceToken. - (void)application:(UIApplication*)application ...
2
votes
2answers
202 views

APNS - Failed to send message

I got strange problem with APNS. I using com.notnoop.apns library and when i try to push same message to 40 devices, i got ApnsConnectionImpl : Failed to send message ...
0
votes
1answer
103 views

Javapns give InvalidDeviceTokenFormatException

I'm using Java PNS to send notification. However, i'm getting the follwoing error: javapns.devices.exceptions.InvalidDeviceTokenFormatException: Device Token has a length of [140] and not the ...
5
votes
7answers
1k views

Push notification for Java web app

Currently I am working on a web app which uses Spring 3.1 and Hibernate 4. As per the requirement, I want to implement push notifications like Facebook does, on a JSP page. If you have any ...
1
vote
1answer
127 views

Push Notification received, but no message

I am developing an android app, which needs to receive the push notification. The push notification is received but there is no message, just when I click on launcher icon in notification it ...
2
votes
1answer
245 views

What to put in sender.send - Google Cloud Messaging for Android

I did not understand what should be in the variable registrationId registrationId=? Result result = sender.send(message, registrationId, 5); Can someone explain to me?
0
votes
0answers
74 views

Android push-notification - what's going wrong with this code application

This piece of code is working fine on Sansung with 4.1 and on 3.1 based AVD on PC... But it doens't on Sansung Tab 3.1 android based.. Please could someone point me what could be wrong... its to use ...
0
votes
1answer
182 views

when sending message(using Java) to GCM server getting exception [ errorCode=MismatchSenderId ]

When sending message (using Java) to GCM server I get the the exception: [ errorCode=MismatchSenderId ] Here I checked my apikey and senderid. Both are in same project. please help to fix this ...
0
votes
1answer
165 views

JavaPNS error handling - contradiction in the documentation?

In the JavaPNS docs, I see this: To find out if a push was successfully sent to Apple and that Apple did not return any error-response packet, simply invoke the pushedNotification.isSuccessful() ...
0
votes
1answer
256 views

iOS Push Notifications via JavaPNS - no badge number shown

So, after much gnashing of teeth, I finally managed to get Push notifications to work in Apple's development sandbox environment. All is well - I am using the very basic code with Push.alert which ...
0
votes
1answer
443 views

Android - open or restart app after clicking push notification using flag activities

I am using push notifications in Android. When I receive a push notification, I want to open the application if it is still running, else it should open a new instance of it. I am using ...
1
vote
1answer
474 views

Apns: Connection closed by remote host

I have a Java app, which works with Apple Push Notification Server (APNS). I use lib: JavaPNS.jar for sendings push messages to iDevices. But, sometimes Push Notification doesn't work, I've found ...
1
vote
1answer
241 views

WebSockets - correct approach for creating channels and pushing data

I have a scenario whereby I want to inform users of my site that someone has commented on an article on which they have also commented. This is a lot like the way that SO notifies me when someone ...
0
votes
0answers
99 views

Opening the right screen when receiving push notification on PhoneGap

I'm building a Sencha mobile app using Phonegap as a wrapper. I've integrating a GCM push notifications plug-in for Android, and it's working great. When receiving the push notification and clicking ...
0
votes
1answer
165 views

Pushing or Pulling notifications

We want to implement a back end server [Java EE] for mobile application that sends notification to mobile on some events, I'm asking about the best/simplest approach whether Pushing or Pulling ...
0
votes
2answers
197 views

push notification in android app

i have developed one listview app using soap webservice from mysql database.Now one order is inserted on my database means that time this (new order is inserted) notify message is display on my ...
3
votes
1answer
3k views

How to add a push notification in my own android app

I have developed a push notification application in Android from this tutorial:push notification in android app. The register button is displayed when I run the app. When I click on the register ...
1
vote
1answer
1k views

Android - GCM push notifications not appearing in notifications list

I'm working on my first Android app to use the Google Cloud Messaging (GCM) service for push notifications. I've got to the point where I can successfully send a message from my server application, ...
1
vote
1answer
368 views

Android Notification Area Customization

I don't know whether this question get minus points, but I searched every where and my last resort is stackoverflow. I need to add five buttons to notification area in horizontally. And each button I ...
1
vote
3answers
119 views

Java ME push technology over network notifications

Is there any way to implement push technology in Java ME ie without SMS? I know stream based/network based notifications is the solution, but how to configure server which sends the notifications to ...
1
vote
1answer
362 views

Node.js: Does this long polling implementation leak:

I'm evaluating Node.js for possible replacement of my current push functionality on a Java Web App. I wrote a simple long polling server that works like an intermediary between the client and the Java ...
0
votes
0answers
302 views

How to reliably and efficiently read all error responses from Apple Push Notifications Server in a Java Server?

I am researching server side development of Apple Push Notifications in Java. I am using the enhanced format, in order to detect failed messages and resend messages that follow bad messages. I know ...
5
votes
4answers
3k views

Install jar with dependencies to maven repository (Android gcm-server push library)

I work on an industrialized large maven project, and on an application module, I need to be able to send push notifications to Android (with new Google Cloud Messaging). It seems google provide ...
0
votes
1answer
758 views

Java Servlet: java.lang.ClassNotFoundException: org.json.simple.parser.ParseException

I am implementing Google Cloud Messaging service for android. I have created a test server which sends push notifications to application users. But the server I have created is generating following ...
0
votes
0answers
184 views

Apple Push Notification Expiry Time Issue, getting back-to-back push notifications on Apple Device?

I am sending Push Notification to Apple devices using JavaPNS_2.2.jar library. The notification get send when the device is Online. When the Device if Offline, no notification recieved on Device. But ...
0
votes
1answer
87 views

increasing app badge number on iphone app

i use Java pns for the push on my app, this is how i use it: public static PushedNotifications Push(String token,String message,String Sound,int badge) throws CommunicationException, ...
1
vote
1answer
133 views

pushSDK send push to MDS

i tried to send a push to browser " a browser message " to my device connected to mds via bes. when i send my request (and request headers ...) the response is a http 202 and the pap response is 1001 ...
1
vote
1answer
2k views

Android GCM registration failed. Why?

I was trying to use GCM to have push-notification in my app. I called GCMRegistrar.register(this, SENDER_ID), but I got an error. My manifest file: <receiver ...
13
votes
1answer
3k views

Servlet: java.lang.ClassNotFoundException: org.json.simple.parser.ParseException

I am implementing Google Cloud Messaging service for android. I have created a test server which sends push notifications to application users. But the server I have created is generating following ...
0
votes
0answers
226 views

Apple Push Notification Inactive Token

I am testing Apple Push Notifications on sandbox environment. Everything was working fine until two days ago. Since then, feedback server always returns device token to be inactive, regardless of the ...
0
votes
1answer
3k views

How to implement GCM in Google AppEngine?

I'm a PHP Developer and Web Designer. In my work a partner asked me if I could set up a Google Cloud Messaging server. I read the documentation but couldn't find a clear tutorial to set up this ...
0
votes
1answer
1k views

send push notification for windows phone 7 using java

I want to implement mobile notification with for my mobile application for windows 7 platform As I want to use java servlet to respond Microsoft Push Notification Service (MPNS) can any one help to ...
0
votes
0answers
277 views

Blackberry push notification using php

Can we do Blackberry push notification application using php not java ?? How ? I can't find any working code sample anywhere. I tried this answer here Push Notification in Blackberry , but didn't ...
0
votes
0answers
137 views

Can not sent Push notification to iPhone

I am trying to send push notification for iPhone from my web application developed in Java EE. I have written following code for this purpose : String id = "" + System.currentTimeMillis(); ...
0
votes
0answers
325 views

APN push notification from java server?

I am using the p12 file to connect to APN server using java code but am getting error:javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure Code: private String ...
1
vote
1answer
894 views

Can't get JavaPNS to work for Push notifications

Okay, so I'm working on a java server for an Apps backend, it must be able to issue iOS push notifications as part of a larger code-base, so I used the JavaPNS library (v2.1.1), which was used(and ...
2
votes
1answer
192 views

Android c2dm push notifications after app reinstall

I have the following question: I've successfully implemented C2DM in my application. I'm registering to both google c2dm cloud and a custom server that "creates" notification contents. Everything is ...
0
votes
1answer
198 views

Java apns : list of device tokens under an application

Am trying to create a java project which can able to send push notification to iPad/iPhone devices. By giving a static list of device tokens i can able to send push notifications using this java ...
0
votes
1answer
253 views

java apns getting list of device tokens registered under an application

I'm using the Java APN service to send a push notification messages to all devices registered under an application. It is possible by giving the devices tokens in a static array. I can send that to ...
1
vote
3answers
139 views

How can I send a notification?

I am developing an Android App that communicates with a server. How can I send a notification from my server to my Android App without the use of C2DM? Are Sockets a good solution? What are other ...

1 2