Hi! I get the < BINARY CONTENT> method in the response. The application cannot use the HTTPS protocol at the moment, are there any other solutions to the problem? Colleagues from another forum suggested that it might be a matter of json-rpc, could it be true? The problem is relevant for any size of the response body
<scala.version>2.13.11</scala.version>
<gatling.version>3.9.5</gatling.version>
gatling-maven-plugin-demo-scala
4.6.0
Request example
val deletingDocuments = http("/api/v1/docType.json")
.post("/api/v1/docType.json")
.body(StringBody(
"""
{
"id": "1",
"jsonrpc": "2.0",
"method": "delete",
"params": {
"id": "#{id_documents}"
}
}
"""))
Headers
val commonHeaders = Map(
//"Content-Type" -> "application/json; charset=UTF-8",
"Accept" -> "*/*",
"Authorization" -> "<jwtToken>",
"Accept-Encoding" -> "gzip, deflate, br",
"Connection" -> "keep-alive",
"Host" -> "isupd-gateway.api.akkuyu.test.csp",
"User-Agent" -> "Chrome/119.0.0.0, Safari/537.36",
//"Version" -> "HTTP1/.1"
)