#!/usr/bin/perl -w use strict; use diagnostics; # Remove from production code use SOAP::Lite; # Pass the command-line argument for capitalization my $result = SOAP::Lite -> uri('Text/Caps') -> proxy('https://localhost:8080') -> capitalize($ARGV[0]) -> result(); # Print the result print "Result = '$result'\n";