Quick Server example with Eclipse IDE.
First of all include jar file in your java project. Let’s create main class to listen on specific port. import java.io.File; import java.io.IOException; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import java.util.logging.FileHandler; import java.util.logging.Level; import java.util.logging.Logger; import java.util.logging.SimpleFormatter; import
What is Quick Server? Need for QuickServer.
Introduction : Quick server is more powerful open source java library to create TCP based server application. It’s functionality is similar to java.net.ServerSocket. It’s multi-threaded TCP based server. Need for QuickServer : In any programming language socket is the most important
jQuery autocomplete doesn’t work anymore after updating JSF components
When I change the drop-down and update any JSF components, then jQuery autocomplete does not work anymore. How is this caused and how can I solve it? JSF CODE <ace:selectMenu value=”#{MenuBean.cityList}” valueChangeListener=”#{MenuBean.ChCountry}”> <f:selectItems itemValue=”cityList.id” itemLabel=”cityList_nm_city” /> </ace:selectMenu>

How to integrated Openlayers Map into web application?
first of all we need to dowload Openlayers API from here: http://openlayers.org/api/OpenLayers.js And then add to reference in to your web application. 1. initialize: JavaScript File[Code]: Make function like this in to Javascript file which is used in to your
Query for uploading CSV file in postgreSQL database
Question : I need to SQL query for uploading CSV file in database I have one CVS file and I need to update this file direct in table . Solution: COPY tableName FROM ‘{filepath}\\{fileName}.CSV’ DELIMITERS ‘,’ CSV; Details: