summaryrefslogtreecommitdiffstats
path: root/tags/java-M1-final/java/sca/containers/container.rhino/src/test/resources/org/apache/tuscany/container/rhino/rhino/RhinoE4XScriptTestCase.js
blob: 20dc2245f97a0a596b876cbd253bad7c11076133 (plain)
1
2
3
4
5
6
7
8
9
10
11
function process(inXML) {

   var greeting = "hello " + inXML..*::in0;
   var outXML = 
      <helloworldaxis:getGreetingsResponse xmlns:helloworldaxis="http://helloworld.samples.tuscany.apache.org">
         <helloworldaxis:getGreetingsReturn>{ greeting }</helloworldaxis:getGreetingsReturn>
      </helloworldaxis:getGreetingsResponse>;

   return outXML;
}