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...
A Technology Blog About Code Development, Architecture, Operating System, Hardware, Tips and Tutorials for Developers.
Saturday, July 17, 2010
Friday, July 9, 2010
JNI WITH UBUNTU
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();
...