A Technology Blog About Code Development, Architecture, Operating System, Hardware, Tips and Tutorials for Developers.

Saturday, July 17, 2010

TOMCAT SSL CONFIGURATION IN UBUNTU

11:12:00 PM Posted by Satish , , , , No comments
This post is made considering the the system is having jdk 6 and Tomcat 6 installed and "JAVA_HOME" environment variable is set. Bellow are the steps to configure tomcat to listen https port (8443) 1. Create a certificate keystore by executing the following command. It will ask few questions. It will also ask one password to enter. You have to remember this password as you need to specify...

Friday, July 9, 2010

JNI WITH UBUNTU

5:18:00 PM Posted by Satish , , , 1 comment
Most of the native methods are written in "C". The mechanism to integrate "C" code with a Java program is called the Java Native Interface(JNI). Java Client to call native method : package org.satish.chapter_13; public class NativeDemo {     int i;     public static void main(String[] args) {         NativeDemo ob = new NativeDemo();    ...