0
Can you share the test project which you are working on. I can fix it and give it for you.
0
I can't get it to work. It keeps telling me that it can't find my contract. I'm thinking the service does not know to look for IMyTestClass in MyTest.dll. Can I tell it in what dll to look for the code?? If so how?
0
It should work. Give it a try. Let me know if you are facing any issues.
0
What if I want to add more than one dll, but I make the namespace the same? I'm going to give it a try.
0
You dont have to do that. You have to specify the proper namespace of the interfaces project in the endpoint like
<endpoint address="" binding="basicHttpBinding" name="BasicHttpBinding_IServiceName" contract="<Interface Namespace>.InterfaceName">
Keynote is the projects namespace should be mentioned properly.
Even in the .svc file you need to mention proper namespace
<%@ ServiceHost Language="C#" Debug="true" Service="<NameSpace of service methods>.Name of service method class" CodeBehind="path of service method class file" %>
0
Can you elaborate a little more? What do I need to do in the config file? I'm assuming just adding an extra endpoint won't do it?
0
It can be done. You can event put data contracts, operation contracts in separate project. You have to configure the web.config properly.