I have a method that looks like:
<WebMethod()> _
Public Function Search(ByVal q As String) As String
Updating from .net 2.0 to 3.5 appears to have broken this.
We're doing data.split() on the value returned, and that's generating a error - it looks like the value returned is now a json structure, not a simple string.
Is there a way to revert to the prior behavior?