Hi friends
I am trying to get data from WCF service by using javascript ,HTML5 but not able to get it .
so any body aware of wcf service javacript . could you share your experience . which method is correct
for calling WCF service . How can i pass NTLM to wcf for getting authentication.
I tried sample code for connect with WCF getting eror but if i pass local xml its working fine .
<script type="text/javascript">
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","URL",false,username,password);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
Regards
vijayakumar