I currently have a web service function in php that accepts a few parameters. When I call this function if I do not provide all the parameters, all my parameters are misplaced. See the following example:
function myWebService(param1, param2, param3, param4){}
//from .net using c#
calling myWebService :
param1 = "zxcxzc"
param2 = "zxcxzc"
param4 = "zxcxzc"
i did not pass param3, so when my function will get the parameters it will be like this:
param3 will have the contents of param4.
i have check and debug in .net everything seems find. Also i called this soap function using php and its fine. I notice that when i pass an empty string in a parameter it works properly but not when there is no parameter.