Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
alex_stone
Creator
Creator

Submit request to the QMS via HTTP

Can we submit the request to QMS via HTTP?

e.g.

CONST QMS = "http://localhost:4799/QMS/Service"

REQUEST ="<Global method=""GetTimeLimitedRequestKey"" />"

Dim xmlHttp

Set xmlHttp = CreateObject("Microsoft.XMLHTTP")

xmlHttp.open "POST",QMS,false

xmlHttp.setRequestHeader "Content-Type","text/xml"

xmlHttp.setRequestHeader "Content-Length", Len(REQUEST)

xmlHttp.Send REQUEST

WScript.Echo xmlHttp.responseText

1 Reply
alex_stone
Creator
Creator
Author

I can not post my discussion.