How can I create a WebService without the presence of an .ASMX file? (No WSE 3.0 or WCF)
For example, my web service looks like
[WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class myService : System.Web.Services.WebService {
Note:
He published well how to create and implement a common HTTP handler via web.config like:
// Concept.Handler1Class namespace Concept { public class Handler1Class : IHttpHandler { //...
and web.config
<handlers> <add name="myHandler1" verb="GET" path="myThing.aspx" type="Concept.Handler1Class" />
In the above example, there is no physical .aspx file.
I want to do the same with my web services: so that they exist only in compiled code without a front-end accompanying file.
Thanks.
source share