Tagged Questions
The servicereference tag has no wiki summary.
4
votes
2answers
930 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 ...
2
votes
1answer
2k views
How can I update the ScriptManager from a .ascx Web User Control in DNN?
I've created a Web Service that I need to use in my .ascx page. I can't just add this:
<asp:ScriptManager ID="OWUScripts" runat="server">
<Services>
<asp:ServiceReference ...
1
vote
1answer
82 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
151 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
102 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
1answer
298 views
Refreshing service references updates the app.config
Every time I make changes to my WS and update the reference in Visual Studio, VS overwrites my app.config with additional unnecessary information. So when I start my client afterwards, I get this ...
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
448 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
1answer
2k views
Why does Sharepoint 2010 Web Reference work, but Service Reference does not
Sharepoint is setup to use NTLM authentication.
When I reference http://myserver/Sites/Ops/_vti_bin/Lists.asmx?WSDL as a Web Reference, I can call the methods and get valid responses.
When I ...
1
vote
2answers
207 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
424 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
0answers
211 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
1answer
128 views
Web Reference or Service Reference in Business layer, where is the published url?
I have a solution that uses caching to trigger some action in the business project within my solution. I would like to call a web service from this project and was going to add either a web or service ...
0
votes
2answers
811 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
731 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
1answer
254 views
Mock/Fake ASP.NET Service References and QUnit testing
I'm just getting into QUnit testing, and have run into a problem on my first page :S
We use ASP.NET Service References to take advantage of async data loading on html pages, creating a reference to a ...
0
votes
1answer
265 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 ...
0
votes
1answer
62 views
Multiple Servers with identical services
I have a dozen servers in different locations all running the same web service application but each going against their own SQL Server DB. I am writing a desktop application that consumes the web ...
0
votes
1answer
501 views
Custom attributes with Service Reference proxy (.net 3.5 c#)
I added a custom attribute to an enum that I was using as part of a web service. When I add the web service as a service reference to a win forms application the custom attributes do not appear in the ...
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 ...