Hi,
Firstly I would like to thanks for your help but is is not the answer that I want. Maybe I don't make it clear enough and it makes you to be confused.
Allow me to specify again my case:
- I have an POST request which aims to authenticate user's login and password.
- This request body is the following one:
<root><type>SQL</type><p1>cpt_tm45</p1><p2>smart</p2><p3>0</p3><p5></p5><p6></p6><p7></p7><p8>00000000-0000-0000-0000-000000000000</p8><p9></p9></root>
- And as you can see, value in p1 represents user login and the one in p2 represents user password.
- Now, I have a csv file containing user login and password. Format of this file is:
cpt_tm46;smart
cpt_tm47;smart
=> So, I would like to have something like <root><type>SQL</type><p1>@username</p1><p2>@password</p2><p3>0</p3><p5></p5><p6></p6><p7></p7><p8>00000000-0000-0000-0000-000000000000</p8><p9></p9></root>
, and @username and @password are extracted from my csv file.
This will help me to have a request body like this:
<root><type>SQL</type><p1>cpt_tm46</p1><p2>smart</p2><p3>0</p3><p5></p5><p6></p6><p7></p7><p8>00000000-0000-0000-0000-000000000000</p8><p9></p9></root> if the first line is read
AND
<root><type>SQL</type><p1>cpt_tm47</p1><p2>smart</p2><p3>0</p3><p5></p5><p6></p6><p7></p7><p8>00000000-0000-0000-0000-000000000000</p8><p9></p9></root> if the second line is read
Could we do that with any feature of LoadComplete?
Regards.