web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / Nishant Rana’s Weblog / Calling a asp.net webservic...

Calling a asp.net webservice from an asp page

Nishant Rana Profile Picture Nishant Rana 11,325 Microsoft Employee

Say we have created a simple web service like this

[WebMethod]
public string Hello(String name) {
return “Hello “+name ;
}

Now we want to call the web service from inside our asp page,

for this we can make use of the following code

<%
Dim myPostData
Dim name
name=”Mickey Mouse”
myPostData=”name=” & name
Dim xmlhttp
Dim postUrl
postUrl = “http://servername/MyService/Service.asmx/Hello&#8221;
Set xmlhttp = server.Createobject(“MSXML2.XMLHTTP”)
xmlhttp.Open “POST”,postUrl,false
xmlhttp.setRequestHeader “Content-Type”,”application/x-www-form-urlencoded”
xmlhttp.send strWebServideDetails
Response.Write(“<b>This is the message i recieved</b>” +xmlhttp.responseText)

%>

Bye



This was originally posted here.

Comments

*This post is locked for comments