thayalan
Posts: 1
Nickname: thayalan44
Registered: Dec, 2004
|
|
Access a method in another server using xmlhttp
|
Posted: Dec 11, 2004 2:42 AM
|
|
|
Advertisement
|
Shown below is ASP Code sample that tries to access a method,CreateUser in the server called,
"http://smallbutsmart.basis.com.au" using the protocol,XMLHTTP. Can you explain to me why this
Code does not work and showing the correct Code Sample?
<% dim objXMLHTTP set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP") objXMLHTTP.Open "Post", "http://smallbutsmart.basis.com.au", false 'objXMLHTTP.SetRequestHeader "Content-type", "text/html" 'objXMLHTTP.CreateUser "abc","123","Scriven","1","001","qms" objXMLHTTP.Send %>
|
|