plasma-framework/private/qtjolie-branch/tests/math.ol
Kevin Ottens 8a28c219b3 Turn on service embedding in metaservice, no need to open a new socket
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
2009-02-08 21:12:45 +00:00

16 lines
177 B
Plaintext

inputPort MathService {
Location: "local"
Protocol: sodep
RequestResponse:
twice
}
main
{
twice(number)(result) {
result = number * 2
}
}