Hi, fairly new to javascript.

I am trying to make an https call to a web-service using XMLHttpRequest object in javascript. i successfully made a regular http call but having trouble getting the https working. The https call requires an ssl cert so any ideas how to attach the cert for this call ?

Code:
url2="https://myServer/axis2/webService/...";		
envelope2 =
		'<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">'
...