Hi,My requirement is:Need to submit form to two different methods doGet
and doPost.doGet will authenticate the request by asking to enter
username and password.After successful authentication we need to call
doPost to submit the data of form.I tried using Get(url); and
Post(url,data,type); methods of FormCalc but i am not able to retrive
the attribute and its value using Post.my FormCalc script
isGet("https://server:port/servlet"); //I am able to call doGet method
successfullyPost("https://serve...