javapns-jdk16
javapns-jdk16 copied to clipboard
Apple Push Notification Service Provider for Java
Is there support for token-based authentication? https://github.com/mlaccetti/JavaPNS
push is successful。But can't get a rsp
I'm using your wonderful library and trying to add proxy server support into my code. JavaPNS seems to work fine against a proxy server that does not require authentication, but...
javapns working fine in the local system, but when I upload this file to virtual machine getting an error. javapns.communication.exceptions.CommunicationException: Communication exception: java.net.SocketException: Network is unreachable at javapns.communication.ConnectionToAppleServer.getSSLSocket(ConnectionToAppleServer.java:156) at javapns.notification.PushNotificationManager.initializeConnection(PushNotificationManager.java:106)...
Hi, I have used java APNS sdk version 2.3.1 to send push notification & getting feedback from APNS. We have two environment i.e. Local(Personal Machine) & Development(Linux Virtual Machine installed...
when i send 1000 or more msgs to apn server, some failed,but i send 100 or less msgs,it goes succeed! public static void pushSimplePayloadUsingThreads(String keystore, String password, boolean production, String...
Thanks for the library! Things are working and able to push notifications to IOS devices. But facing a strange issue when deployed in Weblogic Application Server running on AIX server....
What proxy server do you use? I tested several proxy servers and none of the proxy servers could connect to APNs server except for SS5。 Would you recommend some?
import javapns.Push; import javapns.notification.PushNotificationBigPayload; public class CopyOfMain { /** [email protected] **/ /** APNs Server Host **/ private static final String HOST = "gateway.sandbox.push.apple.com"; /** APNs Port */ private static final...
import javapns.Push; import javapns.notification.PushNotificationBigPayload; public class MainApnsSend { public static void main(String[] args) throws Exception { try { int N = 1; String tokenArray[] = new String[N]; tokenArray[0] = "d065aaf2d65e16a9b46b919168a173466bde8c3bfed4aa8e38825ee1a4750611";...