Forum Discussion

elin1986's avatar
13 years ago

rest - raw request drops full path if param contains space

This previously worked in soapUI 4.0.1 but in soapUI 4.5 and soapUI Pro 4.5 it is not possible to perform a GET on a rest service if one of the params contains a space as the raw request chops off the full path, this is preventing a lot of calls that I require to make!

e.g.
end point = http://url.co.uk
full path = /rest_service/{param1}
param1 = test 1

raw request = GET http://url.co.uk/ HTTP/1.1

however this should have been
raw request = GET http://url.co.uk/test+1 (or test%201) HTTP/1.1