Hi,
You can do by making use of HTTP Send BY MAKING USE OF aCTIVEX oBJECT Msxml2.XMLHTTP.5.0. You can create a SOAP Request and call using the object created by MSXml.
var xmlHttp = new ActiveXObject("Msxml2.XMLHTTP.5.0");
xmlHttp.open("POST",url,false);
xmlHttp.setRequestHeader('Content-Type', 'text/xml; charset=utf-16');
if (urn.charAt(urn.length-1) == '/')
xmlHttp.setRequestHeader("SOAPAction", urn + name);
else
xmlHttp.setRequestHeader("SOAPAction", urn +"/"+ name);
try
{
xmlHttp.send(xmlSoapRequest);
}
Hope it may help you since it can be used as generic that for any webservice
get back if any clarifications.
Sudheer