<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">I have an ASP "page" that was used to do an UpdateLine in UC 4.x. &nbsp;I'm going to upgrade to UC 6.1.3 and was wondering if how this ASP code needs to be Modified in order to work (this AXL call is triggered by a UCCX IVR Script); Here is the coding in the ASP file of how I think it needs to look in order to successfully do this for 6.1...I'm not a programmer so any help here would be greatly appreciated...<div><br></div><div><div>var CCMip = Request.Form("CCMip").Item;</div><div>var Authorization = Request.Form("Authorization").Item;</div><div>var strXML = Request.Form("strXML").Item;</div><div>var ContentLength = strXML.length;</div><div>var strResp=null;</div><div>var objXMLReq1 = new ActiveXObject("MSXML2.ServerXMLHTTP");</div><div><br></div><div>objXMLReq1.open(<b>"POST", "<a href="HTTPS://">HTTPS://</a>" + CCMip + "8443/axl/", "False"</b>);</div><div>objXMLReq1.setRequestHeader("Authorization","Basic " + Authorization);</div><div>objXMLReq1.setRequestHeader("Content-type","text/xml");</div><div>objXMLReq1.setRequestHeader("Content-length", ContentLength);</div><div>objXMLReq1.send(strXML);</div><div>objXMLReq1.waitForResponse(5);</div><div>strResp=objXMLReq1.responseText;</div><div>objXMLReq1=null;</div><div><br></div><div>Response.Write(strResp);</div><div>Response.Write("\r\n");</div><div>Response.End;</div><div>%></div><div><br></div></div></body></html>