ContributionsMost RecentMost LikesSolutionsRe: JSON Property transfer passing the wrong value from RawRequest Very strange... I also have version SoapUI version 5.4.0. But thanks again for the help and your time. Re: JSON Property transfer passing the wrong value from RawRequest Here is one example: This is a dummy request with id: This is how the raw request is: POST ### HTTP/1.1 Accept-Encoding: gzip,deflate Content-Type: application/json Content-Length: 22 Host: ### Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5) Cookie: ### Cookie2: $Version=1 Authorization: Basic ### { "id":3900356170, } And this is how the value is when taken with PropertyTransfer: Can you replicate this behavior? I also tried using the function currentTimeMillis, but the value transferred was always different as well. "id":${=System.currentTimeMillis()} Re: JSON Property transfer passing the wrong value from RawRequest Thanks Lucian for the quick feedback. Really appreciate it. I understand your suggestion and it should probably work, will give it a try. But still it is not what I was expecting from the tool. Going in a bit more details this is how my test case is today: REST call #1 (where random number is created) Property transfer (where random number is retrieved and where a parameter from REST response from step 1 is also retrieved) REST call #2 (where random number is used together with parameter from REST response) So it would all fit under these 3 steps. With the addition of groovy script, then it would be 4 steps instead. Groovy script to create random number REST call #1 (where random number is used as a parameter) Property transfer (where a parameter from REST response from step 1 is retrieved) REST call #2 (where random number parameter is used together with parameter from REST response) Would be good to know if there is a way around using just the 3 steps and if this can be considered as a bug in the tool (as this works fine using SOAP requests). Otherwise, would go with your suggestion with the 4 steps. Thanks once again. JSON Property transfer passing the wrong value from RawRequest Hi, I am using SoapUI 5.4.0. I have a REST request where one random ID is automatically generated within the request (using RandomStringUtils). Code would look like this: "id":${=org.apache.commons.lang.RandomStringUtils.randomNumeric(12)} This works fine. I then need to use this exact same id , in another request. Idea is to use Property Transfer to send this id to a testSuite parameter and then in the second request I can use the parameter instead. In Property Transfer, in the Source part i choose the first call, in Property i choose RawRequest and PathLanguage I choose JSONPath. Then I just write the parameter I want to transfer, in this case: $id For some strange reason, whenever I transfer the parameter, a different value is passed instead of the existing parameter in the RawRequest. I have also tried to generate this id using the currentTimeMillis: "id":${=System.currentTimeMillis()}, And also having the same behavior, where the Id transferred by PropertyTransfer is not the same as the one in the RawRequest. I have tried the same procedure using SOAP, and had no problems there, thats why I suspect this is only related to REST/JSON. Have any of you experienced a similar situation? Any ideas to get this corrected? Thanks in advance!