Can anyone provide an example of how to create an endpoint address for WCF based timesheet service? I can't find an example in the documentation.
this is what i tried so far and it didnt work.
<endpoint address="http://servername/PWA/_vti_bin/PSI/ProjectServer.svc"behaviorConfiguration="basicHttpBehavior" binding="basicHttpBinding"
bindingConfiguration="basicHttpConf"
contract="SvcTimeSheet.TimeSheetClient"
name="basicHttp_TimeSheet" />
i am getting an error saying "the contract attribute is invalid"
tatiana