up vote 3 down vote favorite
1
share [g+] share [fb]

I want to create a stand-alone (i.e. not hosted in IIS) web service in ASP.NET. Is this possible, and if so what's the best way to do it?

link|improve this question
feedback

3 Answers

So, you want to use ASP.NET to generate a web service, but you don't want to host ASP.NET using IIS. (For those reading this, the question was made clearer in an comment to Sir Psycho's response).

Then this article would be a good start:
http://aspalliance.com/articleViewer.aspx?aId=220&pId=

It describes how you can use System.Web.Hosting namespace to process asp.net from the command line, and output the resulting HTML (or in your case XML).

Assuming you want data returned like a normal web request, you will to set up a socket to listen on port 80, interpret the HTTP requests, then use code similar to that in the article to output the results as a response to the web request.

link|improve this answer
feedback

Open Visual Studio, start a new Project and select "web Service Application"

link|improve this answer
that is a great way to create a standalone webservice in .net! – Shawn Oct 31 '08 at 4:31
What if Visual Studio is already open? I don't think you thought through all the possibilities here. – MusiGenesis Oct 31 '08 at 4:34
by "Stand alone", I mean, it doesn't require IIS. What you suggested creates a standard IIS dll based webservice. – user32985 Oct 31 '08 at 4:36
@Sir Psycho: I edited his question, so your answer will look pretty irrelevant now. Sorry - I laughed when I read it. – MusiGenesis Oct 31 '08 at 6:46
feedback

I don't know if this answers the question exactly. If you want to create a webservice, is there a reasonable way to not require IIS but not have to handle data at a socket level.?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.