8a28c219b3
for each service we embed (Location: "local"). Reuse the same socket accross the whole sodepmetaservicetest suite... Interestingly it's now broken as Jolie insists in closing the socket after each method call (fmontesi is kindly investigating this). svn path=/branches/work/~ervin/sodep/; revision=923506
18 lines
244 B
Plaintext
18 lines
244 B
Plaintext
include "console.iol"
|
|
|
|
inputPort PrinterService {
|
|
Location: "local"
|
|
Protocol: sodep
|
|
RequestResponse:
|
|
printInput
|
|
}
|
|
|
|
main
|
|
{
|
|
printInput(input)(result) {
|
|
println@Console(input)();
|
|
result = "success"
|
|
}
|
|
}
|
|
|