Hello All,
I am tring to consume a Java web service in ASP.NET(c#) application.
In the web service, the web method 'checklogin' accepts 2 string parameters only, with return type a boolean variable.
But, when I use that method in my ASP.NET application it shows me 4 parameters in the definition namely 2 string parameters(which should be there) and extra 2 boolean type OUT parameters. Out of these 2 extra OUT parameters, in the 1st parameter I get the return variable of the web method which I called/used and in the 2nd parameter, its showing nothing (means its showing default value).
e.g. the actual definition for the web method is -
bool checkLogin(string username,string password)
and the definition I am getting at the time of calling that method is -
checkLogin(string username,string password, out bool return, out bool returnspecified).
Can anybody please figure out that where the actually
problem is? In the Java web service or in the .NET application and why its showing 2 extra parameters?
Thanks in advance.
Ashish R.