Hire Offshore Wordpress Developers To Develop Your Websites

Wordpress is a CMS web application, based on PHP and MYSQL. Today many blog sites are built by using Wordpress all over the world. It offers many plugins, templates and layouts by which you can customize your websites very easily. Wordpress is not only used for the development of your blog sites but it can also be used for different kinds of web portals development as well. Websites related to shopping cart, news, online magazine, business and corporate can be developed perfectly using Wordpress...

What is the future of mobile recharge business?

Normal 0 false false false EN-US X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0;...

Resolve Error "unable to find valid certification path to requested target"

How to import certificate ?Sometimes while working on a client that works with an SSL enabled server running in https protocol, you could get error 'unable to find valid certification path to requested target' if the server certificate is not issued by certification authority, but a self signed or issued by a private CMS. To resolve this error, certificate must be import into trust center so application can use it to consume web service. All you need to do is to add the server certificate...

Use GridView in Android

Gridview is a ViewGroup that displays items in a two-dimensional, scrollable grid. The grid items are automatically inserted to the layout using a ListAdapter. In this tutorial, you’ll create a grid of image thumbnails. When an item is selected, a toast message will display the position of the image.1. Start a new project named DemoGridView.2. Find some photos you would like to use, Save the image files into the project's res/drawable/ directory.3. Open the res/layout/main.xml file...

Excel in Java using Apache POI

This tutorial shows how to create an excel file. There are other options to create excel files using a Java program but in this case we are going to speak about Apache POI which is probably one of the most important frameworks to manage office files. For example you can read and write powerpoint, word or excel files. HSSF is the POI Project's pure Java implementation of the Excel '97(-2007) file format. XSSF is the POI Project's pure Java implementation of the Excel 2007 OOXML (.xlsx)...

Geofence Creation on Map in iPhone

MkMapView Geofence CreationThis is basic requirement to have Geofence around a Location point on MKMapView. we may have Circular, square and Polygon type of geofence. By having that geofence any annotation(Marker) on MKMapView can be idenitifed as it is residing in that geofence or not , basis on that we can have our customized action. Before this you must have knowledge of rendering MKMapView and pointing Annotation on it (if no then please visit previous blogs for this Knowledge)...

Struts1 v/s Struts2

Struts 1 v/s Struts 2In the following article, we are going to compare the various features between the two frameworks. Struts 2 is very simple as compared to struts 1, few of its important features are: 1. Servlet Dependency Actions in Struts1 have dependencies on the servlet API since the HttpServletRequest and HttpServletResponse objects are passed to the execute method when an Action is invoked while in case of Struts 2, Actions are not container dependent because...