there is a simple webservice in my testing IIS: http://localhost/Service1.asmx?op=Add
[WebMethod]
public int Add(int a, int![B)]()
{
return a + b;
}
how to invoke it through AutoIT script?
[WebMethod]
public int Add(int a, int

{
return a + b;
}
how to invoke it through AutoIT script?