After you have developed an application in Java you want to make it accessible to as many potential users as possible. The Java ecosystem is pretty big but there are still 2 very large groups out there who will not be using it – non-technical users and non-Java developers. So how can you make your Java application accessible to them?
1. Non-technical users
This group are not interested in whether your program is written in Java, Ruby, C or any other language. The difference is meaningless to them. They will only be able to make use of it if you can offer them a non-technical way to utilise the application. The obvious way is the Internet. The Glassfish application server offers a fantastic way to provide a simple web page with which they can use to interact and control your Java program.
Glassfish itself provides all the infrastructure and the secure, magic door. It is written in Java, actively developed and has a fantastic community. Visit the glassfish website or follow Arun Guptas twitter feed for lots of useful links.
Glassfish allows you to write some simple linking code so that the web page can become the input and output for your page. We have used it to provide a simple GUI frontend to our PDF to HTML5 and SVG converter at http://glassfish.idrsolutions.com .
2. Non-Java developers
There are lots of developers using something other than Java for a whole variety of reasons. You can make your software available to all of them by turning your Java program into a web service. Using a simple XML based web communications system any program (regardless of what language it is written in) can communicate with your Java program. This is the idea behind our new PDF cloud converter. Click here for the first blog article explaining how to connect.
So are you making your Java application available to the whole world or limiting it to the Java ecosystem? Do you have an tips on sharing it?
Latest posts by Mark Stephens (see all)
- Saving your settings in our online PDF to HTML5 and SVG converter - May 20, 2013
- PDF teasers – how would you handle this stack problem? - May 15, 2013
- Where do your PDF objects start in a PDF file? - May 8, 2013
- Version 5 release – Swing and javaFX - April 26, 2013
- Which languages should have examples when documenting a web service? - April 24, 2013
