Manne,
I'm not sure what information would be useful. I'm running REST requests exclusively. For example, I ran a single POST test step, and my Tomcat log shows:
127.0.0.1 - - [11/Oct/2013:09:53:13 -0400] "GET / HTTP/1.1" 404 955
127.0.0.1 - - [11/Oct/2013:09:53:38 -0400] "POST /authentication/rest/authentication/validate HTTP/1.1" 200 9986
I'm not sure why it runs this extra GET first. Later on I ran another POST request, and this time it ran the extra GET request second:
127.0.0.1 - - [11/Oct/2013:10:06:04 -0400] "POST /file/rest/file HTTP/1.1" 200 1967
127.0.0.1 - - [11/Oct/2013:10:06:04 -0400] "GET /file/rest/file HTTP/1.1" 401 954
It doesn't interfere with my testing, but I don't know why SOAPUI is running them.
-Jacob