
walter

walter.paludet@synaptica.info

9 February 2010
In questo articolo illustrerò brevemente gli strumenti utilizzati, un pò di storia
e la soluzione al problema nato utilizzando Delphi7 in combinazione con Prism.
Il client del webservice è sviluppato in Delphi:
Delphi è un ambiente di sviluppo software per applicazioni Microsoft Windows (Win32),
sviluppato originariamente da Borland e ora di proprietà della Embarcadero Technologies.
Delphi 7, pubblicato nell’oramai lontano 2002, [...]

Riccardo

riccardo.casatta@synaptica.info

1 December 2008
What’s Axis?
In order to install Axis you must have:
Apache tomcat installed. Tomcat home (this tutorial use version 5.5)
Java JDK installed. Java 1.5 Home (this tutorial use JDK 5.0 Update 16)
Now starts the installation:
Download Axis from here (this tutorial use version 1.4)
Download JavaBeans activation framework JAF
Unpack Axis archive to your deploy directory.
Copy [...]

Riccardo

riccardo.casatta@synaptica.info

13 June 2008
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: [...]