Tagged Questions
2
votes
2answers
92 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
105 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
1answer
162 views
How to get all WebMethods of a WebService pointed by a ServiceReference.Path
In my ASP.NET application, I use the ServiceReferenceCollection to carry a set of WebServices, and in the code-behind, I'm asked to figure out all the public WebMethod(s) and corresponding arguments ...
1
vote
2answers
108 views
OData and ApiKey url-parameter through ServiceReference
ApiKey is used to control the usage and it is affixed as an url parameter (implemented using somewhat modified version of this solution). Question is, how to go about appending this parameter when ...
1
vote
2answers
212 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
454 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
1answer
277 views
Webreference vs servicereference. Only one works ? Serialization?
I've got two applications.
One uses webreference to my webservice, and second use servicereference to my webservice.
There is metohod which I'm invoking:
[WebMethod]
public Car[] GetCars(string ...