Last change
on this file since 286 was
83,
checked in by djay, 14 years ago
|
Move hello.js Services Provider file into cgi-env and correct zcfg using the new syntaxe
|
File size:
369 bytes
|
Line | |
---|
1 | |
---|
2 | function hellojs(conf,inputs,outputs){ |
---|
3 | outputs[0]["result"]["value"]="Hello "+inputs[0]["S"]["value"]+" from the JS World !"; |
---|
4 | //SERVICE_SUCEEDED |
---|
5 | return Array(3,outputs); |
---|
6 | } |
---|
7 | |
---|
8 | function hellojs1(conf,inputs,outputs){ |
---|
9 | outputs[0]["result"]["value"]="Hello "+inputs[0]["S"]["value"]+" from the JS World !"; |
---|
10 | //SERVICE_SUCEEDED |
---|
11 | return {"result":3,"outputs": outputs}; |
---|
12 | } |
---|
13 | |
---|
Note: See
TracBrowser
for help on using the repository browser.