Posts

Showing posts from January, 2012

Featured Post

List Of Maven Commands

Creating Maven Projects mvn archetype:create -DgroupId=com._3kbo -DartifactId=application (create a project for building a jar file ) mvn archetype:create -DgroupId=com._3kbo -DartifactId=webapplication -DarchetypeArtifactId=maven-archetype-webapp (create a web app project for building a war file) mvn archetype:generate (Select the number of the desired archetype.) Building, Testing, Packaging and Installing to the Repository mvn clean            (cleans the project, i.e. delete the target directory) mvn compile        (compiles the source code) mvn test              (if required compiles the source code, then runs the unit tests) mvn package       (compiles, tests then packages the jar or war file) mvn clean install  (cleans the project, compiles, tests, packages and installs the jar or war file) mvn install       ...

Android training course offered by me

Syllabus: Android Training Course Chapter 1: Introduction to Android o   A little Background about mobile technologies o   Android – An Open Platform for Mobile development o   Native Android Application o   Android SDK Features o   Open Handset Alliance o   What does Android run On? o   Why Develop for Mobile? o   Why develop for Android? o   Android Development Framework o   Android Application Architecture o   Android Libraries Chapter 2: Developing for Android: Your First Android application o   Developing for Android o   First Android application o   Using Eclipse o   Running and Debugging o   Developing for mobile devices o   Android development Tools Chapter 3: Android Applications and Activities o   Creating Application and Activities o   Application Manifest Introduction o   Android Application Life Cycle o   Application Priority and process states o   Externalizing res...

JMS Jboss program

TestConsume.java ----------------------- import  java.util.Properties;   import  javax.jms.Destination; import  javax.jms.JMSException; import  javax.jms.Message; import  javax.jms.MessageConsumer; import  javax.jms.MessageListener; import  javax.jms.ObjectMessage; import  javax.jms.QueueConnection; import  javax.jms.QueueConnectionFactory; import  javax.jms.QueueSession; import  javax.jms.Session; import  javax.naming.Context; import  javax.naming.InitialContext; import  javax.naming.NamingException; import   com.kony.ua.dto .*;   public   class  TestConsume  implements  MessageListener {              private   static  InitialContext  ic = null ;        private   static  QueueConnectionFactory  qcFactory = null ;        private   stati...