Can an asp.net mvc application also have a web service?

前端 未结 6 1421
你的背包
你的背包 2021-02-09 06:42

I have an asp.net mvc application and now I need to add a web service to go along with it. What is the best solution for this? Just create a new web service project and add it

6条回答
  •  执念已碎
    2021-02-09 07:43

    If you want to use a regular ASP.NET asmx web service, it's certainly possible. Here's an example from Scott Hanselman that does just what you are asking about and it throws in some other ASP.NET technologies for good measure.

    All you have to do is File -> New Item -> Web Service and it should work like a regular ASP.NET application in your Mvc project.

提交回复
热议问题