🏠
ENG
Great Britain >

XML-RPC Packages - Utilities - Hello

Introduction

This service says hello to the client by returning the name of the caller with the string "Hello " infront of it. The service is designed as a simple method for training users on developing web-services.

Method Detail

Global settings for all services can be found here.

The method name is utils.hello.

This service takes one parameter a string with the user's name and returns one parameter, the submitted string with the string "Hello " inserted before it.

Method Request

<?xml version="1.0"?>
<methodCall>
  <methodName>utils.hello</methodName>
  <params>
    <param>
      <value>
        <string>Phil</string>
      </value>
    </param>
  </params>
</methodCall>

Method Response

<?xml version="1.0" encoding="ISO-8859-1"?>
<methodResponse>
  <params>
    <param>
      <value>Hello Phil</value>
    </param>
  </params>
</methodResponse>