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…
Leggi tutto
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…
Leggi tutto
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
1 2 3 4 5 |
public class Somma { public int somma(int a, int b) { return a+b; } } |
Put this file in the axis directory, for example: /usr/local/apache-tomcat-6.0.13/webapps/axis the web service is already available…
Leggi tutto