Hi Mike,
Error "The SQL returned the following error: An expression of non-boolean type
specified in a context where a condition is expected, near 'GROUP'." only means that SQL qeuery was written incorrectly. Usually SQL requests are written like following
SELECT fullname,phone FROM customer WHERE fullname='Alocet' GROUP BY fullname,phone
but if you make a mistake in your query and write something like following (there are tons of possibilities to write an incorrect SQL, this is just an example.)
SELECT fullname,phone,SUM(VacationHoursSecondsAvailable) FROM customer WHERE fullname='Alocet' GROUP BY fullname, phone, SUM(VacationHoursSecondsAvailable)
then you will get the error you've got. Unless you can reproduce the error by directly entering the values into our web service, I can't help. My guess the problem you are entering is in the values you entered into group by statement is somehow modified by third party service you are using, causing an invalid output.
Also, from the description you have given of an application you are trying to build, I see no problems with using our MethodAPI service directly, which will be not as a painfull as using it through third party application.
Thank you
Victor