from the stone

picasso tribute

Associate your program with file extension

article source : http://www.delphi3000.com/articles/article_525.asp?SK=
author : Igor Siticov

For creating file associations you should make some registry changes and inform Windows explorer about your changes.

For launching your program as default for all unregistered file types just associate it for “*” file type.

The following unit includes realization of function for creating file association.
See comments in source for details.

 

unit [...]

JNI Interface used to integrate static C++/Delphi Library in Java

Today i found some great post to make an integration between JAVA and static library genetated with C++ using JNI.
post links :
http://forum.java.sun.com/thread.jspa?threadID=786600&messageID=4484880

http://www.inonit.com/cygwin/jni/helloWorld/

stay tuned
ivan…

Deploying web service with Java and Axis

In this article we see how can we deploy a web service, you need to have apache, tomcat and axis up and running.

To publish a simple webservice:
Create a simple text file, for example “Somma.jws” like this

public class Somma {

public int somma(int a, int b) {

return a+b;

}

}

Put this file in the axis directory, for example: [...]