Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF Error - Could not find default endpoint element that references contract 'UserService.UserService'

Tags:

c#

.net

wcf

Any ideas how to fix this?

UserService.UserServiceClient userServiceClient = new UserServiceClient();             userServiceClient.GetUsersCompleted += new EventHandler<GetUsersCompletedEventArgs>(userServiceClient_GetUsersCompleted);             userServiceClient.GetUsersAsync(searchString); 

.

<system.serviceModel>     <bindings>         <basicHttpBinding>             <binding name="BasicHttpBinding_UserService"                       maxBufferSize="2147483647"                       maxReceivedMessageSize="2147483647">                 <security mode="None" />             </binding>         </basicHttpBinding>     </bindings>     <client>         <endpoint address="http://localhost:52185/UserService.svc"                    binding="basicHttpBinding"                    bindingConfiguration="BasicHttpBinding_UserService"                    contract="UserService.UserService"                   name="BasicHttpBinding_UserService" />     </client>     <behaviors>         <serviceBehaviors>             <behavior name="Shell.Silverlight.Web.Service3Behavior">                 <serviceMetadata httpGetEnabled="true" />                 <serviceDebug includeExceptionDetailInFaults="false" />             </behavior>         </serviceBehaviors>     </behaviors>     <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>     <services>         <service behaviorConfiguration="Shell.Silverlight.Web.Service3Behavior"                   name="Shell.Silverlight.Web.Service3">             <endpoint address=""                        binding="basicHttpBinding"                        contract="Shell.Silverlight.Web.Service3" />             <endpoint address="mex"                        binding="mexHttpBinding"                        contract="IMetadataExchange" />         </service>     </services> </system.serviceModel> 

Could not find default endpoint element that references contract 'UserService.UserService' in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element.

Resolved!

I didn't mention that this was a Silverlight application. I had the wcf reference in a DLL which had it's own "ServiceReferences.ClientConfig" file. I moved the contents of the DLL's ServiceReferences.ClientConfig to the main silverlight project and it worked.

like image 263
NotDan Avatar asked Mar 31 '09 00:03

NotDan


1 Answers

I had a run in with the same problem. My application was also a Silverlight application and the service was being called from a class library with a custom UserControl that was being used in it.

The solution is simple. Copy the endpoint definitions from the config file (e.g. ServiceReferences.ClientConfig) of the class library to the config file of the silverlight application. I know you'd expect it to work without having to do this, but apparently someone in Redmond had a vacation that day.

like image 196
sprite Avatar answered Oct 14 '22 11:10

sprite