Reputation: 9968
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
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