TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Iqrar Ali
NA
259
3.1k
I want to deploy web service on IIS 7.5 with framework 4.6.1
Dec 22 2016 11:00 AM
I have created a web service in vs2013 that retrn sum of 2 numbers
public
class
SampleWebService : System.Web.Services.WebService
{
[WebMethod]
public
int
SumOfNums(
int
First,
int
Second)
{
return
First + Second;
}
}
and build it with framework 4.6.1.
and now i deployed it on IIS 7.5 but it gets error
how to fix this error
Reply
Answers (
1
)
Help me in this IIS error
How to build a SOAP API