InterPSS is written in Java. While you can use any Java IDE, we recommend you to use either Eclipse or NetBeans IDE. Both are open source IDE and can downloaded freely from www.eclipse.org or www.netbeans.org.
Make sure you have Java SDK installed on your computer. You can check your Java installation by launching a CMD window from Start/run/cmd. Type the following command
java -version
to make sure that your have Java version is 1.5.0_07 or above. If you do not have Java on your computer, please go to SUN Java Distribution Site to download Java JDK 5.0 updateX and install it to your computer.
Please download and install NetBeans IDE. Currently we are using version 6.0 for InterPSS development. Please do the following to verify your NetBeans installation:
public static void main(String[] args) {
System.out.println("Hello InterPSS");
}
...
run:
Hello InterPSS
BUILD SUCCESSFUL (total time: 1 second)
(Todo ...)
XML is one of the foundation technologies for InterPSS. You can learn XML basics on-line from W3 Schools. In particular, take the following two learns:
You can examine InterPSS XML Schema after you are comfortable with XML document and XML Schema concepts. You can also use Eclipse to check out ipss.xml project and view the schema in a graphic mode.
There following are recommended Java readings