This is my project diagram:
- MyWCFService
- (...)
- web.config
- Friends.Implementation
- Friends.svc
- Friends.svc.cs
- Friends.svc
- Friends.Contract
- IFriends.cs
My endpoint of service:
<service behaviorConfiguration="ServiceBehaviour" name="Friends.Implementation.Friends">
<endpoint address="" behaviorConfiguration="web" binding="webHttpBinding" contract="Friends.Contract.IFriends" />
</service>
My question is: How can I call this service? When I had that service in "Service" folder in MyWCFService project, it was easy - just localhost:XX/Services/Friends.svc
.
And now, how can I run it, if everything is in separate class libraries?
Regards