Waqar Alamgir
Waqar Alamgir

Reputation: 9968

Creating DLL from asmx web service

I have created a web service as asmx which is running properly. Now I want the service binary in DLL format. How can I generate it?

Upvotes: 0

Views: 4118

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038900

How can I generate it?

You can't do that. The code behind of the service could be in a separate assembly but the .asmx file itself need to be part of an ASP.NET application which is hosting this service.

Upvotes: 2

Related Questions