vote up 0 vote down star

Hi guys,

I created my first WCF RESTful service with just one GetData so I can try, and it works perfectly in localhost, but when I add it to a hosting environment, I get:

Server Error in '/' Application.
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0234: The type or namespace name 'ServiceModel' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)

Does this means that I need to place the dll in the GAC to this work? Shouldn't work in the BIN forlder of my Service?

Here is how my service folder looks like:

Service.svc
Service.svc.cs
web.config
BIN
  Microsoft.ServiceModel.Web.dll
  Microsoft.ServiceModel.Web.pdb
  MyService.dll
  MyService.pdb
PROPERTIES
  AssemblyInfo.cs

What can I do in order to make this working?

flag

71% accept rate
Is the dll referenced in your web.config? – Stobor Jan 21 at 0:23
No, it is not ... how dumb is myself :/ grrrr... I completely forgot about that - to tired -, now I need to know how to add this DLL into the web.config :) – balexandre Jan 21 at 1:19

1 Answer

vote up -1 vote down

Try System.ServiceModel.Web. (rather than Microsoft.ServiceModel.Web).

What do you mean when you say it works perfectly in "localhost"?

link|flag
No. ServiceModel.Web is part of the REST starter kit/Dynamic Data. It's not a System namespace. – blowdart Jun 28 at 9:17

Your Answer

Get an OpenID
or

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