Ok, let's provide a small Jolie script to go with the sodepprintertest

app.

svn path=/branches/work/~ervin/sodep/; revision=922138
This commit is contained in:
Kevin Ottens 2009-02-06 14:28:49 +00:00
parent c66c5cefad
commit 82f10bbf0d

View File

@ -0,0 +1,15 @@
include "console.iol"
inputPort PrinterService {
Location: "socket://localhost:10000"
Protocol: sodep
RequestResponse:
printInput
}
main
{
printInput(input)() {
println@Console(input)()
}
}