// Sample echo service to demonstrate the JMS transport in the WSO2 Mashup Server // Instruct the Mashup Server that the echo function expects parameter whos value would be a String echo.inputTypes="string"; // Instruct the Mashup Server that the echo function return a value which would be a String echo.outputType="string"; function echo(param){ // Simply log the message system.log("Invoked echo function."); return param; }