Using RestAssured with Tomcat form authentication
Tomcat provides an easy to setup mechanism for authentication using forms. This is very useful for providing authentication for web applications, however, it is not very convenient for testing (or even using) REST interfaces programatically. The main problem is in...
Read MoreSumo Select GWT Wrapper
ITEN Engineering is releasing another component as public download. We have developed GWT wrapper for great SumoSelect jQuery widget. Original widget is written in jQuery and can be found on the following link. Component is fully integrated within GWT environment...
Read MoreMulti Level Push Menu for GWT
ITEN Engineering is releasing a set of GWT components used by our product. So far we have developed some new or adapted existing components that are still not available in GWT world. Over time, those components have grown and become...
Read MoreHow to register Genson with Jersey
Genson and Jersey overview Jersey is a great library for developing RESTful web services. It is possible to use many different media types for representing data; if some media type is missing, additional libraries can be registered. Genson is a...
Read MoreMyBatis and PostgreSQL problem with generated keys
UPDATE: keyColumn is the key to the solution Below described problem can be solved by using keyColumn property of MyBatis, as described here. Using keyColumn property it is possible to specify name of the autogenerated column, so it will be...
Read MoreGenson JSON format for byte arrays
Genson is a small and flexibile library for Java to JSON and vice versa conversion. Main advantages of this library are speed, size and easy of use. It is very easy to configure Jersey to work with genson – all...
Read MoreHow to integrate Copy Cloud Service with Microsoft Office
Office 2013 has capabilities of integration with cloud service. Default installation provides integration with SkyDrive and Share Point, however, it is documented how to add additional cloud services on the following link. Adding another cloud service is done via registry;...
Read MoreConfiguring branch for pull in Eclipse
If it is not possible to pull from Eclipse EGit and the error message is as below: The current branch is not configured for pull No value for key branch.master.merge found in configuration Add the following to the .git/config file:...
Read MorePostgreSQL sequence fixing
Each SERIAL field in the database table is associated with sequence which tracks generation of new values. Sequence is basically a counter that calculates the next value of the SERIAL field. If values in the table are inserted by omitting...
Read MoreJersey in GWT web application
Jersey is a fremework for creating RESTful services according to JAX RS api. JAX RS itself is only specification of the interface, while Jersey is implementation. In simple words, Jersey allows easy creation of REST services. This means that services...
Read More