Using feed with http multipart upload

I am trying to use the feed variable in the parameter name for a multipart upload. Are they any suggestions you have that will allow me to do the following? It seems to be taking a string and not an EvaluatebleString.

val step = chain
.feed(csv(“test.csv”))
.exec(
http(“Upload Images”)
.post("/")
.header(“X-PID”, “${pid}”)
.upload("${pid}_taco.tga", “taco.tga”)
)

Thanks,
Gabe Hicks

Hi Gabe,

You’re right, param name should be an EvaluatableString.

I opened the issue, fixed it and uploaded a SNAPSHOT:
https://github.com/excilys/gatling/issues/644
https://github.com/downloads/excilys/gatling/gatling-charts-highcharts-1.3.0-SNAPSHOT-bundle.zip

Cheers,

Steph

2012/8/16 Gabe Hicks <gabe.hicks@gmail.com>