Tagged Questions

4
votes
2answers
932 views

What is wrong with adding a service reference when consuming WCF in Silverlight?

This article talks about consuming WCF services in Silverlight, but claims: There will be no proxies, no generated code, no 3rd party utilities, and no disgusting "Add Service Reference" usage. What ...
2
votes
2answers
90 views

Do you use ServiceReferences in LoB applications?

Do you use auto-generated WCF service references in line of business applications? Or do you roll your own? And why? EDIT For anyone looking to roll their own, I found this article which may prove ...
1
vote
0answers
335 views

Reference Shared Silverlight Assembly with slsvcutil.exe

I have several WCF services being consumed by different Silverlight applications. I am currently using slsvcutil.exe with a pretty standard setup to generate my Silverlight proxy objects: ...
0
votes
0answers
212 views

Add ServiceReference error on Silverlight

I'm trying to add a ServiceReference to a Silverlight app, but I'm getting this error: The HTML document does not contain Web service discovery information. Metadata contains a reference that cannot ...
0
votes
2answers
818 views

Silverlight - WCF get clientaccesspolicy on localhost

I have a Silverlight application which uses WCF for its communications with the server. Both Silverlight and WCF are running on the local machine (localhost). When the Silverlight makes a call to the ...
0
votes
1answer
734 views

When adding Service reference to a Silverlight 4 application ServiceReferences.ClientConfig file is generated empty

I've a WCF service hosted over SSL(https) whose web.config is like this: <system.serviceModel> <services> <service name="MyProject.HTMLService" ...