Download Unveiled! - DownloadHelper!

DownloadHelper is a tool for web content extraction. Its purpose is to capture video and image files from many sites.
Just surf the Web as you are used to, when DownloadHelper detects it can do something for you, the icon gets animated and a menu allows you to download files by simply clicking an item
For instance, [...]

A look at my Environmental Variables in windows XP

In windows and linux you can see all the environmental variables by using “set” command at the command prompt. Here is the output of set command on my desktop(Windows XP). C:\Documents and Settings\deshpand>set ALLUSERSPROFILE=C:\Documents and Settings\All Users APPDATA=C:\Documents and Settings\deshpand\Application Data CATALINA_HOME=C:\Program Files\Apache Software Foundation\Tomcat 5.0 CLASSPATH=.;C:\j2sdk1.4.2_08\bin; C:\jboss\server\default\deploy\axis.war\WEB-INF\lib\axis.jar; C:\jboss\server\default\deploy\axis.war\WEB-INF\lib\axis-ant.jar; C:\jboss\server\default\deploy\axis.war\WEB-INF\lib\jaxrpc.jar; [...]

Soap and Axis + Installing Axis

What is SOAP?
SOAP is an XML-based communication protocol and encoding format for inter-application communication. Originally conceived by Microsoft and Userland software, it has evolved through several generations; the current spec is version,SOAP 1.2, though version 1.1 is more widespread. The W3C’s XML Protocol working group is in charge of the specification.
SOAP is widely viewed as [...]

Installations - Tomcat, Jboss, Active BPEL

1. Tomcat:
What is Apache Tomcat?
Apache Tomcat is the servlet container that is used in the official Reference Implementation for the Java Servlet and JavaServer Pages technologies. The Java Servlet and JavaServer Pages specifications are developed by Sun under the Java Community Process.

A Java servlet container is required to run Macromedia Flex and Tomcat is [...]

Setting Environmental Variable in Linux

Environmental variables are set in Linux using “export” command at the command prompt.
They can be viewed using “set” command at the command prompt.
1. JAVA_HOME: Java SDK: (required for Tomcat, else you can set the path to your JDK in PATH variabl
# export JAVA_HOME=/usr/java/j2sdk1.4.2
2. CATALINA_HOME: Java SDK
# export CATALINA_HOME=/usr/local/jakarta-tomcat-4.0.5
3. CLASSPATH: Jars to be referenced
# export CLASSPATH=/opt/lib/alpha.jar:/opt/lib/beta.jar:/opt/lib/test.jar
Now [...]

Installation - MySQL and JDBC, JDK

Installing and Configuring MySQL and JDBC driver in Windows:
http://www.stardeveloper.com/articles/display.html?article=2003090201&page=1
Installing and Configuring MySQL and JDBC driver in Linux:
JDK Installation
Find the compatible JDK for your OS from:
http://java.sun.com/j2se/1.5.0/system-configurations.html
Installing JDK 1.x on Windows:
1. Download the appropriate JDK (.exe)from
https://sdlc1b.sun.com/ECom/EComActionServlet;jsessionid=
0A7FFCE7000309A58F5AF40743F20ADA
2. Run the .exe and specify the location where you want to install [Eg. C:\j2sdk_1.4]
3. Add the path of JDK in [...]

Installing JRE Plugin with Mozilla (Windows, Linux, etc)

To install JRE Plugin with Mozilla (Windows, Linux, etc) refer:
http://plugindoc.mozdev.org/faqs/java.html
In linux, to link the jre plugin, use the following command:
[root]# ln -s /usr/java/jdk*/jre/plugin/i386/
ns7-gcc29/libjavaplugin_oji.so /usr/lib/mozilla-1.4.2/
plugins/

FAQ’s - Java

What is the difference between jre, jdk, sdk?
JRE, ‘Java Rutime Environment’ performs the execution of java programs but JDK, ‘Java Development Kit’ which contains the java compiler is helpful in developing java based programs. Infact one or more JRE’s along with various development and deployment tools are present in a JDK.
JRE is [...]