I need to consume PHP web service in asp.net. In this regard i take following steps:-
Finally click the Add Web Reference button


With the reference added, I put a button on my form, and added the following button click event handler:
private void button1_Click(object sender, EventArgs e)
{
HelloTesting htesting = new HelloTesting();
string s = htesting.hello("hello");
MessageBox.Show(s);
//string s = mc.mc_config_get_string();
}
Error is:- htesting.hello() takes 1 arguments. How do i able to resove it?
Afzaal Ahmad ZeeshanPosted Jun 13, 2015, 2:17 AM
ANUJ AroraPosted Jun 13, 2015, 12:57 AM
ANUJ AroraPosted Jun 12, 2015, 7:18 AM
Afzaal Ahmad ZeeshanPosted Jun 12, 2015, 7:05 AM