Here's my call:
CallMfttService("ServiceLayer/FieldingManager.asmx/GetUICs",null, SetUicValues);
Here's the WebMethod:
[WebMethod]
[ScriptMethod]
public List<string> GetUICs()
{
UserManager user = new UserManager();
var currentUser = user.GetUser(Security.FieldingToolPrincipal.Current.Identity.Name);
List<string> uics = new List<string>();
uics = Data.FieldingManager.SelectUicByJpm(currentUser.Organization);
return uics;
}
I'm not exactly sure what the problem is.. I know it obviously doesn't like sending no paramters..I really don't know though.