開発者は、外部 Web アプリケーションによって使用されるカスタム SOAP Web サービスを実装する必要があります。 開発者は、Web アプリケーションによって使用されないヘルパー メソッドを Web サービス クラスの実装に含めることを選択します。 どのコードセグメントがクラスとメソッドの正しい宣言を示していますか?
正解:B
In Option B, the webservice keyword is used to declare the class and the specific method updateRecords. This is correct because: * The helper method helperMethod is private and not exposed to the external application. * The webservice method updateRecords is declared global static, making it accessible externally.