now I'm trying to conduct load test with gatling.
I have been trying create gatling's simulation script via gatling recorder and
it was going well.
but, when I executed that, I encountered file not found error below although there are files
(in this case /step1/0006_request.json is exist)
request_6: Failed to build request: Resource /step1/0006_request.json not found 
there are many json files and that error occurred some of specific post requests. every requests which is failed are composed following setting.
- using request header 'headers_6' below
- using RawFileBody method (even if this is obvious thing because content-type is 'application/json')
I already have been using 12 hour over and I have to finish my task in a timely manner.
I'm so sorry about that I can't share my application which is target of this issue.
if anyone have any idea or kindly want to more detail please ask me.
val headers_6 = Map(
        "Content-Type" -> "application/json",
        "Origin" -> "applicationServerURL")
.exec(http("request_6")
            .post("requestUrl")
            .headers(headers_6)
            .body(RawFileBody("/step1/0006_request.json"))
            .resources(http("request_7")
additionally, I checked json files which were created by gatling recorder on 'resource' directory, them contains only one char 'X'.
this means Gatling recorder doesn't capture request json file's content?
env:
Gatling version gatling 3.5.1
Used Browser: FireFox
file not foundon gatling, - prepare123