JavaScript の onclick() イベントを使用して php スクリプトを実行する方法はないと読みましたが、他にどのような方法を使用できますか?
必要なのは、リモート SOAP クライアントへの接続を開始する php 関数を実行するためのボタンと、サーバーの「応答ステータス インジケーター」です。
<?php
ini_set("soap.wsdl_cache_enabled", "0");
$client = new
SoapClient("http://xxxx:8085/axis2/services/RegistrationService?wsdl",array('excepltions' => 0));
---- rest of codes omitted ----
?>