I'm about to start building WCF web service, and i would like to structure solution in such way that is would be:

  1. Easy to develop - i would like so that developers on my team could just get sources, build, and start service, probably best would be to have possibility to start it as console app?

  2. Easy to host this service later in IIS, WAS or windows service.

I was thinking about having this projects:

  • Shared (for web service interface)
  • WebService (for actual implementation of web service and svc file)
  • ConsoleHost (for hosting web service in console app)

Will there be any problems with such approach? What could be things that i should consider in advance? Maybe there is better structure?

I would appreciate any insights and links to resources that could help me chose right structure.

p.s. web service itself is simple, but this approach would be reused for more services.

link|improve this question

69% accept rate
feedback

2 Answers

up vote 5 down vote accepted

What I tend to do is to place all my interface definitions in one assembly/project, all the service implementations in another assembly project, and the hosting environment, whether it be console, IIS (ie the .svc files) or windows service or whatever, in a separate assembly.

link|improve this answer
can different hosting environments be in one assembly? Or you are doing separate assembly for each hosting environment? – Andrej Slivko Jun 10 '11 at 9:56
+1 for this approach – DaveRead Jun 10 '11 at 9:58
@qrow - a separate assembly for each hosting environment. Generally these assemblies don't have much in them - .svc and web.config for IIS/WAS hosting, console app for self-hosting. That way you are not mixing up the concerns pertinant to each hosting environment. – Xhalent Jun 10 '11 at 10:09
is it possible to share configuration options (web.config or other way) between different hosting environment assemblies? – Andrej Slivko Jun 10 '11 at 10:24
@qrow - In a few projects I have worked we have loaded runtime configuration parameters from a database table. That way, it is independent of the hosting environment. – Xhalent Jun 10 '11 at 10:44
feedback

With this information, I say this structure looks fine.

You might also consider creating a separate ServiceModel assembly to store all your custom behavior and WCF. They could then be reused for other projects

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.