Tagged Questions

14
votes
3answers
3k views

WCF Service Reference .datasource files

What are the .datasource files that are automatically generated by "Create Service Reference" in Visual Studio? The comment in the file is this: This file is automatically generated by Visual ...
11
votes
6answers
9k views

What does this WCF error mean: “Custom tool warning: Cannot import wsdl:portType”

I created a WCF service library project in my solution, and have service references to this. I use the services from a class library, so I have references from my WPF application project in addition ...
5
votes
2answers
171 views

WCF to ASMX binding much slower returning large data than standard web reference

I am binding to an existing ASMX web service using a WCF service reference. I have a method that returns a DataSet object that contains a string of 500k length. As a standard "old-school" web ...
5
votes
4answers
5k views

How to configure WCF in a separate dll project

Aloha I'm developing a web application (ASP.NET 3.5) that will consume a number of web services. I have created a separate dll-project for each web service: these projects contains the service ...
4
votes
4answers
88 views

Object instances in static classes

I am developing a web application with multiple WCF service references. Currently, each time we need to make a call to a service we do the following(as an example): Service.ServiceClient ...
4
votes
1answer
75 views

Is there a simple way to add a service reference to one assembly but keep the client config in another?

I'm aware of the drawbacks of simply adding WCF service references (later I intend to create client proxies another way), but for now I need to add a service reference to a Silverlight assembly but ...
4
votes
3answers
1k views

Can I add a Service Reference with netTcpBinding in WCF?

Is it possible to add a service reference in visual studio, which generates the local proxy class to call the WCF service when using the netTcpBinding? As I understood it, the service reference ...
4
votes
1answer
814 views

What are these WCF service reference files

When I add a WCF service reference in Visual Studio 2008, a directory named Service Reference\ServiceReferenceNamespace is created. In this directory, there's files named Service.xsd, Service1.xsd, ...
3
votes
2answers
141 views

Why should I use Visual Studio service references over svcutil?

So it seems like I have a couple of major options when getting WCF service proxy code into a project in Visual Studio: Use Visual Studio's built-in tooling for Service References Use a simple ...
3
votes
1answer
179 views

Alternative to service reference

I am trying to assist one project team to streamline their work by fixing some of the pain points. One of the pain points they have in their code is that, they are using WCF service via service ...
2
votes
2answers
65 views

WCF common types not reused

Hint: This questions has many duplicates, but none of the solutions works for me. What I have is a web service and a client, both having references to a shared assembly "DataModel". I'm creating the ...
2
votes
1answer
31 views

Is having an instance of serviceclient at every viewmodel a good idea?

I have to refactor an application which has at almost every model and codebehind file an instance of serviceclient, and some of them use a serviceclient property from App.xaml.cs (Silverlight 4) What ...
2
votes
1answer
132 views

How to speed up start up performance of WCF client

I have implemented a simple standalone WCF service with a basicHttpBinding binding. I created a client and generated the client stub code by using Add Service Reference. The first time the client call ...
2
votes
3answers
2k views

How do I use WCF reference with MVC3 (razor) model?

I have a WCF Service and a MVC3(razor) web site. All my data comes from the WCF Service. I have my controllers and views but, how do I use the model with this structure ? for now, I call my method ...
2
votes
2answers
279 views

When I use “Add Service Reference”, I can't see optional method parameters

I'm working on a WCF Service. I have one service operation Function getValues(Optional verbose as Boolean) as List(of String). This works: ' First, add a file reference that contains the iRM ...
2
votes
4answers
786 views

WCF: Updating Service Reference gives duplicate config entries

I have a WPF application using service references to a WCF service. When doing updates on the service I need to update the service reference, so I right click it and hit "Update Service Reference". ...
1
vote
1answer
51 views

Difference between manually creating a client proxy and referencing a MSMQ WCF service?

In most examples of WCF services that use MSMQ transport it is always preferred to create a proxy manually using svcutil in Visual Studio command prompt rather than simply adding a Service Reference. ...
1
vote
0answers
253 views

WCF: Add Service Reference does not generate client proxy code

I am trying to walk through this project sing Visual Studio 2010 Express http://www.codeproject.com/KB/windows-phone-7/Text_to_speech_in_wp7.aspx?display=Print to test Windows 7 phone text to ...
1
vote
2answers
66 views

Autogenerated enum definition causing problems on client side

I have a situation like this, where i have WCF Service (VS2008) Hosted somewhere Main Solution (VS2005) which has a Consumer Project of type 'class Library' with the Service reference to this WCF ...
1
vote
1answer
159 views

WCF Service Reference not working?

I have created a RESTful WCF service (thanks to StackOverflow). I have created a test client, it's a simple .aspx page with 5 textboxes and a submit button. When I enter the data into the textboxes ...
1
vote
1answer
80 views

Silverlight ServiceReference causes MethodAccessException

I have a WCF operation MyGetVersion() that returns a System.Version. When debugging a call to it from a Silverlight service reference, I verified that the service returns the correct System.Version ...
1
vote
1answer
213 views

WCF Add Service Reference

I am wanting to know how to add more then just one interface type in a service. at the moment i can only get one to show . I have a few other interfaces i would like to see appear under the service ...
1
vote
2answers
132 views

Update Service Reference Address based on Configuration?

During debugging I added a bunch of service references pointing to services on the Debug machine. Is there any way to automatically regenerate the service references based upon the Configuration? I'd ...
1
vote
1answer
496 views

Compilation errors in Reference.cs after adding a Service Reference caused by multi-part namespace

I hit this weird namespace issue when adding my first 'Service Reference' to a client project in Visual Studio 2010. If my project's default namespace uses two or more parts, e.g. MyCompany.MyApp ...
1
vote
1answer
215 views

Have Visual Studio share a namespace with multiple service references

Is there any way possible short of hand-coding the Reference.cs file, to get Visual Studio to allow multiple service references to share a namespace? I am developing a client application that makes ...
1
vote
1answer
256 views

WCF: Dynamic address for service reference on client

Basically, I have an application that needs to consume a WCF Service (Calculator.svc). While in debugging, the service is being hosted on my local machine, but in release the service is being hosted ...
1
vote
0answers
372 views

WCF service reference stopped generating code for one project

I have references to two different WCF services in a project. I updated the reference for one of the services, and now no code is generated for it. The references.cs file just has the "this is ...
1
vote
0answers
223 views

Can't access a wcf service from Windows 7, but I can from XP or Vista

I have a WCF service running on Server 2008 standard that works fine when calling from an XP client or Vista. I can compile the program (using VS2010, WPF) from an XP system and it will run fine on ...
1
vote
3answers
320 views

Using ICollection property with WCF Service

I have a class, ExpenseInfo that includes an ICollection<String> property: public ICollection<String> WhoOwes { get; private set; } I have a WCF service that returns objects of type ...
0
votes
0answers
18 views

Content type does not match? application/xml vs text/xml (or application/soap+xml)

I'm having trouble getting data after having created a service reference for a third party web service I am attempting to get information from. When I create the request and call the method, this is ...
0
votes
1answer
37 views

which files should be added to Souce Control (Service Reference)

When i added service reference to my .Net project (right click->Add Service Reference), VS created a folder with the Service name and created bunch of files (listed below). I am not sure which files ...
0
votes
2answers
35 views

Generate client for only one of the Service Contract interfaces available on a WCF service

I am currently refactoring a large WCF service which consisted of one service contract interface ("SCI" from here on) used by multiple different client applications. I have split up the SCI so that ...
0
votes
1answer
27 views

How do you add a WCF service reference with a fixed port?

I have a WCF service being hosed by a Windows Service with this in the app.config <services> <service behaviorConfiguration="serviceBehavior" name="AgileServer.AgileService"> ...
0
votes
1answer
53 views

Generating Silverlight service reference - how to tell what is causing proxy classes to be generated

I have a large object structure that I'm wanting to share between a .Net4 backend and a Silverlight 5 front end. I've created two class library projects of the appropriate type, and have my object ...
0
votes
0answers
78 views

.NET SOAP Serializing Unbounded Sequence

We have a WSDL which contains the following type definition: ... <xsd:complexType name="OrderItem"> <xsd:all> <xsd:element name="source" type="xsd:string" /> ...
0
votes
1answer
56 views

Developing a web service and consumer at same time

Using Visual Studio 2010 professional I'm creating a WCF web service and a MVC 3 web site that will consume that web service. How would I reasonably go around doing that. Should I keep them as ...
0
votes
1answer
102 views

Code Only WCF Hosting has “localhost” in the link to the wsdl

I have a wcf service that I am self hosting in an console app. When I run the service and deploy it to a machine (call it MyWCFRunningMachine) I can go to the "You have created a service" page. ...
0
votes
0answers
47 views

Why Can't I update my Service Refrence

I changed my WCF service, and for some odd reason, I can't seem to update my service reference. It was working before. I changed my Service, and I expected to just update the service reference and ...
0
votes
3answers
315 views

How do you consume a RESTful WCF service from an ASP project using a service reference?

I am developing a RESTful WCF service which I then want to consume from a separate ASP.net Project. Is it possible to use a service reference from within the ASP project to consume the service using ...
0
votes
1answer
100 views

WCF Web services and constructors

I wrote a couple of simple web methods (as a part of WCF service) that use a couple of (more complex) classes as input/returned parameters. Each web method attributed by [OperationContract], each data ...
0
votes
1answer
122 views

WCF - DataContract by copy/paste original code or by auto-generated code for shared abstract class?

[DataContract] public abstract class FooBase { [DataMember] public int Bar { get; set; } } That is a base class that I use as the base class for other classes that are also DataContracts. ...
0
votes
3answers
94 views

WCF - any way to mark an attribute as ignored?

Basically if I have the following: [DataContract] public class Foo { [MyCustomAttribute(...)] [DataMember(IsRequired = true)] public int bar { get; set; } } How can I get it so that the ...
0
votes
1answer
392 views

WCF Error - Reference.cs is blank (empty)

I added the service reference in my project and it has created all required wsdl files. But when I looked at the reference.cs file, I found it blank. -Anil
0
votes
2answers
273 views

Why does Silverlight Add Service Ref. use eventing instead of IAsyncResult?

Ye Olde Add Web Reference generates XXXAsync calls to services that use eventing to inform the caller that the call had completed. Add Service Reference in something like a WPF or console app, when ...
0
votes
3answers
130 views

When to add a service reference?

I'm building a WCF service that will get deployed to a server running IIS. I can add the service reference from the current solution and use it fine. If I deploy the service to that particular ...
0
votes
1answer
265 views

Changing “web reference” to “service reference” changes method signature

I'm helping out a colleague on this one so if I'm missing some details that's why. We have an asp.net 3.5 web application calling a WCF service. Originally the app used a "Web Reference" to register ...
0
votes
1answer
807 views

Add Service Reference to WCF Service within Same Project

Is it an acceptable programming practice to add a Service Reference to a Project where the Service being referenced is defined within the same VS Project? (Service and Service Reference are in the ...
0
votes
1answer
320 views

Service Reference namespace becomes unknown after I 'Update' the service reference

Service Reference namespace becomes unknown after I 'Update' the service reference. Has any one else encountered/resolved this issue? The changes I make to the Service Reference code are sometimes so ...