I am creating a web service that has 150+ different functions. I would like to be able to split the web service into different categories: User, Account, and Content. Is there a way for me to do that while keeping them under the same service? I know I can create 3 different asmx services but I would like it if I could do something like Services.User.MyFunction() in C# and something similar in javascript ajax.
I am creating a web service that has 150+ different functions. I would like
Share
No, you can either have one huge service or many smaller services. However, you could use URL Rewrite to allow the address
Services/User/MyFunctionexecute theServices.MyFunction()method.With that said, I would recommend splitting the service into multiple services.