SOLVED:Using TCP binding and JS transformation to write ebus value

Hi I am trying to write values to the ebus through the ebusd daemon.
Through telnet I managed to write ot values with no probs:

lraspOH201:~ $ telnet 192.168.3.67 8888
Trying 192.168.3.67...
Connected to 192.168.3.67.
Escape character is '^]'.
write  -c wolfcwl LuftmengeStufe1 75
done

I setup following item:

Number CWLStep3VolW "LuftmengeStufe1  [%.0f m3" {tcp=">[CHANGED:192.168.3.67:8888:JS(wolfWriteStep1.js)]" }

And following sitemap entry too:

Setpoint item=CWLStep3VolW minValue=50 maxValue=250 step=5
 

I created a tranformation JS

(function(i) {
//    logInfo("WolfWrite", "write  -c wolfcwl LuftmengeStufe1 " + i)
    return "write  -c wolfcwl LuftmengeStufe1 " + i + "\n";
})(input)

The things somehow are not working. I do not have any traces in the log that the transformation is called. neither the values are set
what am I doing wrong?
I guess logging is not possible there?

when I change the item:

Number CWLStep3VolW "LuftmengeStufe1  [%.0f m3" {tcp=">[192.168.3.67:8888:'JS(wolfWriteStep1.js)']" }


I get :

2017-07-06 12:52:09.915 [ERROR] [ing.tcp.AbstractSocketChannelBinding] - there is no channel that services [itemName=CWLStep3VolW, command=85.0]


Solved:
at least one entry has to be made in the tcp.cfg.
that is, although there default values mentioned in the description