-
Recent Posts
Categories
Archives
- July 2023
- April 2023
- March 2023
- February 2023
- January 2023
- November 2022
- October 2022
- September 2022
- August 2022
- July 2022
- June 2022
- May 2022
- April 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- October 2021
- September 2021
- August 2021
- July 2021
- June 2021
- May 2021
- April 2021
- March 2021
- February 2021
- January 2021
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- April 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- September 2019
- August 2019
- July 2019
- June 2019
- May 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- July 2018
- June 2018
- May 2018
- April 2018
- March 2018
- February 2018
- January 2018
- December 2017
- November 2017
- October 2017
- September 2017
- August 2017
- July 2017
- June 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
Meta
Tags
- arduino
- aws
- best practices
- boot
- booting from grub
- c / c+
- cloud computing
- DIY
- docker
- dos
- encryption
- FOP
- grub
- hardware
- howto
- humor
- java
- linux
- load testing
- medicine
- oldschool
- online shopping
- open source
- paranoid
- pcbuilding
- performance testing
- political activism
- politicians
- programming
- review
- scripting
- security
- soapbox
- strangelaws
- surveillance
- tinfoil hat
- UK
- vaccine
- virtual computing
- virus
- web services
- websphere
- windows
- wordpress
- XSL-FO
Tag Archives: java
Simplicity in development or syntactic sugar
Computing is a pretty big field so it is not always possible to stay on top of every little (or big) framework or enhancement that comes down the line. I am happy to be involved in software development so I … Continue reading
coding like it is 1996
It is a sad fact but I don’t always get to pick the tools I use at work. Just today I felt like my colleague and I woke up in 1996 – back when java 1.6 was released. The client … Continue reading
Maven simple example
Maven was briefly described in my previous post. In this post I will do a few small examples for actually using Maven. One of the main things about Maven is the idea of the artifact. The artifact is a file, which … Continue reading
Maven the alternative build tool
Why maven Maven is a tool for building software. Doesn’t there already exist a number of tools for doing this exact task? Two different tools that do this are the classic make utility or the much newer Apache Ant. The make utility … Continue reading
interrogating your code – dipping your toes into java’s reflection
Perhaps the coolest programming language ability that I was never allowed to use was reflection in Java. Why? Well, thats another story. What exactly is reflection? Well, reflection is a set of low level methods that can be used to … Continue reading
Posted in programming
Tagged java
Comments Off on interrogating your code – dipping your toes into java’s reflection
Restful services in Java – 360 degree of restful client
Always try and use the most appropriate tool for the task. The Apache HTTP server or web server is a program for serving the html web pages to the client who requests them. Tomcat is a application server that is actually … Continue reading
Posted in programming, Setup From Scratch
Tagged java, programming, web services
Comments Off on Restful services in Java – 360 degree of restful client
Restful services in Java – 360 degree of restful server
This is the blog final entry for a restful service web server. I have attempted to create more than your typical “foo” “bar” type example program. My final blog on restful services will be a fairly complete service that could … Continue reading
Posted in programming
Tagged java, programming, web services
Comments Off on Restful services in Java – 360 degree of restful server
Restful services in Java – client and server
My previous restful client example and server example were perfect, well, not exactly. They worked but they pretty much assuming a perfect world. That is to say that there is never a communication error or a server error. This small … Continue reading
Posted in programming, Setup From Scratch
Tagged java, programming, web services
Comments Off on Restful services in Java – client and server
Restful services in Java – simple client example
I suppose that a restful server isn’t all that useful unless there is a way to query this information back and use it in some useful way. It is easy enough to test this out the server from the command … Continue reading
Posted in programming, Setup From Scratch
Tagged java, programming, web services
Comments Off on Restful services in Java – simple client example
Restful services in Java – simple server example
There are probably a lot of ways to create web services programs but the simplest way I could think of was to create a project using Eclipse and Jersey. It turns out that restful services are really easy to summarize but … Continue reading
Posted in programming, Setup From Scratch
Tagged java, programming, web services
Comments Off on Restful services in Java – simple server example