I am using TestComplete 7. In this for configuration I have to post XML on web at specified IP and port address. I am using C++ Scripting language. How can I do this? or if there is other way to do same using interface and without scripting??

link|improve this question

80% accept rate
1  
C++ script????? – Tony The Lion Apr 19 '11 at 12:02
@Tony: It's a proprietary language used in the automated testing tool TestComplete. Basically, it's JScript/JavaScript with square bracket notation. – Helen Apr 19 '11 at 12:27
@Tony: yes. As TestComplete gives you facility that you can write your routines in the form of C++ script. After that you can use those Script in your test cases. – Ali Ahmed Apr 19 '11 at 12:30
@Ali: Can you elaborate on what you mean by "post XML on web"? Upload an XML file to a web site? Pass an XML file to a web service? Something else? – Helen Apr 19 '11 at 12:31
@Helen: I want to post XML like the following; "<?xml version="1.0" ?> <Config> <Video_Input_Source>IP CAM 3</Video_Input_Source> </Config>" to an IP address and port. Actually we have IP cameras on networks. I am writing automated test cases for their testing. But before testing we have to configure IPcameras for testing. we can configure them by posting XML. – Ali Ahmed Apr 19 '11 at 12:37
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Looks like you need something like this:

  XmlHttpRequest = new ActiveXObject("MSXML2.XMLHTTP.3.0");
  XmlHttpRequest.open("POST", "http://camera.ip/configuration_page", false);
  XmlHttpRequest.send("<?xml version="1.0" ?> <Config> <Video_Input_Source>IP CAM 3</Video_Input_Source> </Config>");

This is JScript. This code will work in a C++Script TC project. But there may be problems with the "new ActiveXObject" statement in a C++ application if you put the code there. So, you will need to modify the code to use a different way to create the same "MSXML2.XMLHTTP.3.0" object in your C++ app. The idea remains the same.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.