The code is complete, it's time to try it out.
To run the Java project, compile the driver class and
the Axis-generated classes, then run the driver class.
Note:
|
If you get any error messages about missing classes when
compiling or running the project, make sure your CLASSPATH is
set up according to the instructions in Prerequisites.
|
To compile and run the Java project
Compile the driver class and the Axis-generated classes.
javac -sourcepath "."
Run the DoGetAccountBalance class.
java DoGetAccountBalance
The command response should be similar to the following:
Account balance: $0.00
To run the C# project, use Visual C#'s one-step compile and run feature.
To compile and run the C# project
Press the F5 key.
The project compiles, and a console window opens to
display the results. The output should be similar to the
following:
Account balance: $0.00
Press Enter to exit...
Press the Enter key to terminate the program and return to Visual C#.
To run the Perl project, execute the script from a command prompt.
To run the Perl project
Enter the following command in a command prompt:
perl GetAccountBalance.pl
The command response should be similar to the following:
Account balance: $0.00
To run the PHP project, execute the script from a command prompt.
To run the PHP project
Enter the following command in a command prompt:
php -q GetAccountBalance.php
The command response should be similar to the following:
Account balance: $0.00
To run the Python (SOAP) project, execute the script from a command prompt.
To run the Python (SOAP) project
Enter the following command in a command prompt:
python GetAccountBalance.py
The command response should be similar to the following:
Account balance: $0.00
To run the Python (REST) project, execute the script from a command prompt.
To run the Python (REST) project
Enter the following command in a command prompt:
python GetAccountBalance.py
The command response should be similar to the following:
Account balance: $0.00
To run the Ruby (SOAP) project, execute the script from a command prompt.
To run the Ruby (SOAP) project
Enter the following command in a command prompt:
ruby GetAccountBalance.rb
The command response should be similar to the following:
Account balance: $0.00
To run the Ruby (REST) project, execute the script from a command prompt.
To run the Ruby (REST) project
Enter the following command in a command prompt:
ruby GetAccountBalance.rb
The command response should be similar to the following:
Account balance: $0.00