I am using the following code and creating a dll using this. First time the send method woirks fine. From then onwards its giving the old values not the updated values
Dim xmlHttp As MSXML2.xmlHttp
Set xmlHttp = New MSXML2.xmlHttp
Dim response as string
response = xmlHttp.readyState
sUrl = "MyUrl"
xmlHttp.open "GET", sUrl, False
xmlHttp.setRequestHeader "Content-Type", "text/xml; charset=utf-8"
response = xmlHttp.readyState
xmlHttp.send
response = xmlHttp.readyState
response = xmlHttp.responseText
.....
Set xmlHttp = Nothing
Thanks Asha