Using Let's encrypt SSL certificates with Java sender API
by ag0ny
Hi,
just want to let you know that you might hit a problem using an official
certificate from Let's encrypt ( https://letsencrypt.org/ ) in Wildfly
Applicationserver for securing UPS-console.
Sending messages directly from within the UPS-console and with curl
works. But using the Java sender API does not and leads to the following
exception:
http://pastebin.com/0BAPK2kw
The following software environment was used:
- Wildfly Full 9.0.2.Final
- JDK 1.8.0_74-b02
- UPS 1.1.0.Final
- UP-Java-…
[View More]Client-1.1.0.Final
The reason for this, as it seems, is that the root ca certificate for
Let's encrypt is not included in the cacerts of the original JDK from
Oracle. As a workaround you can just copy the cacerts from an actual
OpenJDK (Tested with OpenJDK-6 from Ubuntu 14.04) to
$JAVA_HOME/jre/lib/security/. Most preferably make a copy of the
original file before. :-)
Maybe this is useful for somebody else.
Cheers,
Sascha
[View Less]
9 years, 1 month
Adding ES6 to node sender
by Luke Holmquist
hello,
I just created a JIRA for the node ups sender,
https://issues.jboss.org/browse/AGJS-308, that tracks the addition of using
ES6(the next version of Javascript).
My thoughts were to use the new features where ever possible.
Since not every feature is available on all versions of node, we would use
Babel.js https://babeljs.io/ , to transpile that code back to ES5(the
version before es6 :)).
This transpilation would happen during an "npm publish" so users would
never really see a …
[View More]difference.
The cool thing about Babel is that we can specify which features we want
transpiled, so in the future this list of transpiled features would
hopefully get smaller and smaller.
The latest versions of node have a lot of new features in them, so it would
be nice to start coding that way. For instance, this plugin,
https://www.npmjs.com/package/babel-preset-node5 , is a preset for the
features that node 5 has.
wanted to get some thoughts on this.
-Luke
[View Less]
9 years, 1 month
Implementing AuthzModule (Android)
by Anuj Garg
Hey
I need to implement AuthzModule to modify some of its features which i am
not getting in Oauth2AuthzModule.
Spec I want to use key/secret instead of access token.
But wanna use Authzmodule only coz then I have to feed that to pipe and
found Authz more comfortable then Auth.
If you have any example for that it will be very helpful
9 years, 1 month
UnifiedPush GCM Canonical ID question
by Marc Cheptea
Hi Guys,
I've been looking trough the UnifiedPush documentation, however I can't
find an answer to my question.
I have an UPS 1.0.3 installation. When I register my application
multiple times (via install/uninstall) with GCM and UPS I'm starting to
get duplicate notifications.
According to various posts on SO
(http://stackoverflow.com/a/27073013/2853903) when an UPS sends a
notification to an re-registered device, GCM responds with a canonical
id. This canonical ID indicates that the …
[View More]device re-registered and all
new notifications should be routed to the new device token.
My question is: How does UPS handle this scenario?
As of version 1.0.3 it seems this case is ignored and devices keep
receiving notifications until GCM starts rejecting UPS queries.
Many thanks for your help!
--
Regards,
Mark
[View Less]
9 years, 1 month
iOS OAuth2 library throwing error on keychain read
by Michael Doo
In the Aerogear iOS OAuth2 library, getting an error when app enters
foreground after period of being in background. Specifically, in
TrustedPersistantOAuth2Session.swift, KeyChainWrap.read() is (very)
occasionally throwing errSecMissingEntitlement and then throwing the user
over to Safari for authentication. This is a show stopper bug for our app.
Some discussion of the topic and acknowledgement by Apple here:
https://forums.developer.apple.com/message/9225#9225.
Best,
Michael Doo
9 years, 2 months