Hi, I'm using JMeter 5.3. I start a netcat session on my localhost like this: nc -l 15000 Now in JMeter i put a TCP-Sampler with a text and want to sent this to localhost:15000Doing so i see that JMeter sends the text to my localhost - but - it does not terminate. It is waiting for the EOL byte value. Well i then put for the EOL the value 10 (which is \n) and start again.Now after recv. the data i had to press enter which will send the EOL Byte to JMeter.
So basically i can send TCP data - but i have to press enter every time to send the EOL back to jmeter - right?How can i avoid it? I tried some other options like "close connection" or set a timeout for the reponse. But no success. Can anyone help?It can't be so hard to send TCP-Data to a nc listener to localhost right? Well what i can do right now is something "stupid".I can do an os process sampler in JMeter and just let execute the nc command to send my text to my localhost. But i dont want to use os-sampler like this to be honest i can do a bash "one line" skript fot this insted of jmeter os-sampler.
