Tech Tips
Random ramblings on technical topics.
Monday, November 25, 2013
OAuth authentication to Box.com via node.js
›
Below is some code that implements a 'hello world'-level integration between a node.js app and the box.com 2.0 API. Box uses OAuth...
Saturday, November 23, 2013
Force Redirection of HTTP to SSL in Tomcat
›
If you have a particular app within Tomcat that you want to restrict to SSL access, this can be accomplished with a couple edits. web.xml ...
HTTP Basic Auth on Node.js
›
Implementing HTTP Basic Auth on node.js is a fairly simple exercise if you're using the express.js module. On the server side, you ut...
Tuesday, November 19, 2013
Implementing HTTP Basic Auth with Java Jersey REST services
›
Server Side Given we're using Jersey (a servlet) to implement the REST services, a logical place to implement HTTP Basic Auth would be...
Monday, November 18, 2013
Implementing REST services with Java Jersey and Apache Tomcat - Client Side
›
Continuing from the previous post, below is some sample code implementing a Jersey client to invoke an HTTP GET to the server /** * Java ...
Sunday, November 17, 2013
Implementing REST services with Java Jersey and Apache Tomcat - Server Side
›
This is a multi-part discussion on how to implement RESTful web services interfaces using Java using the Jersey API. Jersey is an JAX-RS A...
Friday, October 25, 2013
SSL Configuration on Node.js for Server and Client sides
›
My previous post discussed how to simply generate a RSA private key and self-signed certificate. Those items will be used now to implement a...
‹
›
Home
View web version