I found the issue. It was the size of the JSON data being returned and asp.net defaults to basically 100kb. I added the below code to my web.config and now it works!
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="50000000"/>
</webServices>
</scripting>
</system.web.extensions>
Thanks microsoft for the worthless error message “Internal Server Error”.