Hello world
Method hello_world is used for testing Maventa API-connection.
Return value(s)
This method returns “Hello world!” string.
Authentication
This method does not need any authentication, nor API key.
Arguments
This method does not take any arguments.
Example code
1 require 'soap/wsdlDriver'
2
3 serv = SOAP::WSDLDriverFactory.new("https://secure.maventa.com/api/wsdl").create_rpc_driver
4
5 begin
6 # Lets test are we working at all
7 result = serv.hello_world
8 puts result.to_s
9 end