vote up 3 vote down star
1

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?

flag

3 Answers

vote up 2 vote down

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|flag
vote up 1 vote down

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

link|flag
that is a great way to create a standalone webservice in .net! – Shawn Simon 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. – jfeatherstone 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
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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