I've get this the message below when surfing in to my webservice. I've read at many places that I should add HttpGet and HttpPost in my webconfig, but it's already there. I have tried using two methods that looks the same, returns the same type, but have one less input parameter and then one works good, and one get "The test form is only available for requests from the local machine".
I know it has nothing to do with number of parameters, because I have one more method with even more parameters but it works fine..
Why is it different behaviors?
The test form is only available for requests from the local machine
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
//This gets "The test form is only available for requests from the local machine"
[WebMethod]
public int DoSomething(string param1, string param2, string param3, string param4, bool param5, DateTime param6, DateTime param7,
double param8, double param9, string param10, string param11, int param12, int param13,
string param14, int param15,DateTime? param16)
{
return 0;
}
//This method works fine
[WebMethod]
public int DoSomething2(string param1, string param2, string param3, string param4, bool param5, DateTime param6, DateTime param7,
double param8, double param9, string param10, string param11, int param12, int param13,
string param14, int param15)
{
return 0;
}
EDIT: The cause of the problem seems to be nullable parameter