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 ...
3
votes
2answers
2k views

VS 2010 Error “Object reference not set to an instance of an object” when adding Service Reference for WCF Service

I have a VS2010 (RTM) solution which contains: WCF Service project Console WCF client project Class project for DataContracts and members Class project for some simple classes I successfully added ...
2
votes
3answers
3k views

System.Net.WebException: The request was aborted: the request was cancelled

I have a WCF service that has been giving me this error under load conditions (and I cant seem to recreate the error otherwise). we've been trying to find a way aroud it for about a week now with no ...
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
1answer
86 views

Add Service Reference doesn't appear in Visual Studio 2010

I created a new form project but when I right click on the project I don't see the Add Service Reference button on the menu. I've been reading something about adding a project guid opening the ...
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: ...
1
vote
1answer
451 views

Object hierarchy returned by WCF Service is different than expected

Good Day Everyone... My understanding may be wrong, but I thought once you applied the correct attributes the DataContractSerializer would render fully-qualified instances back to the caller. The ...
1
vote
2answers
209 views

What's the best way to mock a .net service reference, like Amazon's web services

I've generated some service references to Amazon, and I was wondering if there was a good, quick way to generate mocks against the whole thing, or I instead I have to implement a mock binding, and do ...
1
vote
1answer
429 views

HashSet in WCF

i'm using a HashSet in my WCF interface [ServiceContract] public interface IwcfServerSync { [OperationContract] void Test(HashSet<int> someHashSet); } When i create a service ...
0
votes
2answers
817 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" ...
0
votes
2answers
2k views

Update service reference not working

I'm using Visual Studio 2008 and have a WCF client working against a WCF service. They are both located in the same Visual Studio solution. After I've made a change in my WCF contract, I want to ...
0
votes
1answer
541 views

Can't re-add Service Reference Properly

I've got a WCF service up and running on a server. We have a proxy class that we add all service references to, and I tried to add my service reference there. However, it's not exposing all of the ...