Can I use the ServiceStack web service with .net framework 3.5 web forms ?
Is it possible to have a small example, because I tried to go through https://github.com/ServiceStack/ServiceStack/wiki/Your-first-webservice-explained and stopped at "Let's look at the AppHost configuration method" and I did not know what to do ?
How did I read this as a web API, and since ServiceStack works under 3.5, so I guessed that I could use it, or did I get it wrong?
Update: The answer was that I needed to create an AppHost and add it to Application_Start :
public class Global : System.Web.HttpApplication { public class HelloAppHost : AppHostBase {
Link and FULL example can be found here: http://servicestack.net/ServiceStack.Hello/
source share