Hi Mike,
Can you clarify why you want this in a GUI object.?
I automated some web services using the http request object . See these threads:
http://smartbear.com/forums/f81/fp19/t65754/testing-curl-webserviceshttp://smartbear.com/forums/f74/t50150/How-can-i-do-a-HTTP-post-from-testcompletehttp://smartbear.com/forums/f81/fp7/t75732/TestComplete-web-service-communicationI used the eval statement so that I could parse the JSON object.
var reply = get_xml_string_representing_JSON();
eval ("replyObject = " + reply)
Log.Message( replyObject.value1):; etc. etc. etc.
I vastly preferred NOT using GUI objects to test this as it was much much faster.
Regards, Curt