What's the simplest way to provide a portable, locally running webservice server application?

Posted by derFunk on Programmers See other posts from Programmers or by derFunk
Published on 2012-09-07T08:41:32Z Indexed on 2012/09/07 9:48 UTC
Read the original article Hit count: 132

Filed under:
|
|

We have a bigger website running that offers a JsonRpc web service.

For offline demonstration purposes I want to realize a portable, locally running webserver with a minimalistic feature replication of the live webservice, and bundle this together with Html files which do Ajax requests to it. This local server executable should have as little dependencies as possible.

It's gonna be run and presented by non-devs on non-dev Windows machines, so I would prefer having a simple executable plus the service code - whereas language doesn't matter as long as it is .NET, PHP or Java.

I'll need a small database behind which probably will be Sqlite.

It's important to say that for some reasons we cannot use the original web service code, but we have to rewrite it new for the local demo server, this is why I want to put minimal effort in the local server tech.

An installer for distribution is not mandatory, it's okay to have a zip file with an executable in it which starts up the local webserver.

What would you recommend realizing these requirements?

I've done some research already, but would love to here your opinions and get some pointers!

© Programmers or respective owner

Related posts about Windows

Related posts about web-services