Using JSON in a "GET" HTTP Request
I'm working to interface with our data retrieval engine. I can submit a job perfectly fine using a POST request like this: request = New HTTP Request(
url( "http://fc8tdbitmapconvs07:11111/daas/" ),
Method( "POST" ),
Json( Load Text File( ctfn ) )
);
data = request << Send; 'data' contains the response from the server and all is well.-------------------------------------------However, when I try and c...