Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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

Including a service reference from a class library

I have a C# class library and a startup project (a console app). The class library includes a service reference to a web service. When I try to run the project, I get an InvalidOperationException ...
5
votes
2answers
170 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
87 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
74 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
813 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
139 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
178 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 ...
3
votes
1answer
599 views

VS 2010 Beta 2 - unable to update service reference

I'm upgrading a project from VS2008 to VS2010B2 For some reason, after the project was upgraded, the code generated by the reference is missing, and I cannot re-create the code by reconfiguring the ...
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
131 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
1answer
132 views

Use/generate methods signatures with int[] insted of ArrayOfInt on .NET web service

I have a ASP.NET web service (.asmx) with methods that receives int arrays (int[]) and nullable int arrays (int?[]) as parameters. I also have a test web application for consuming this web service via ...
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
277 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". ...
2
votes
1answer
2k views

Calling WebService using Service Reference and Maintain Session

I have a asp.net web-service which I use from my ASP.NET website. I can call it from raw Javascript or jQuery to post/get data. The web-service is enabled with session so that only authorized users ...
2
votes
3answers
2k views

How to obtain OSGi service references from a Servlet that is registered in OSGi HttpService?

It seems natural that a HttpServlet running in OSGi environment (i.e. registered in OSGi HttpService) would want to call some OSGi services to accomplish it's tasks. The question is how to obtain ...
1
vote
1answer
50 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
1answer
52 views

WebService won't update through ServiceReference

I have two projects in my Visual Studio solution: The one is a WcfService Application project and the other one is an ordinary C# Silverlight project with a ServiceReference to access the Web Service ...
1
vote
0answers
249 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
128 views

How can you control the file names for .NET Service References?

Windows has a limitation of 259 characters in paths. Unfortunately, this is starting to cause problems for us due to some of our Service Reference names. For example, we have our TFS branch with an ...
1
vote
1answer
582 views

Custom tool warnings when using VS2010 service reference

I am trying to get going on using First Data's Global Gateway Web Service API. The first strange thing is that I need to download the wsdl and xsd files to my local machine. Then use the local ...
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
158 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
2answers
460 views

VS2010 Add Service Reference missing (Unable to add Service Reference)

I have an issue that seems to be identical to this question. I am unable to add a service reference to any project in Visual Studio. I went so far as to format the entire computer, re-install ...
1
vote
1answer
212 views

“Add Service Reference…” to xsd

I can create a service reference in Visual Studio 2010 to an xsd. That reference downloads all the linked xsd files. However, I have 2 problems I'd like to see if there are solutions: The URL for ...
1
vote
1answer
211 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
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
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
213 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
255 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
319 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 ...
1
vote
0answers
275 views

silverlight service reference from wsdl - methods missing

I'm successfully creating a Service Reference for a silverlight application by pointing to a local wsdl file. The preview pane shows the 6 methods avaialble in this wsdl. However, the generated ...
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
24 views

Call from Service Reference to Java Web Service returns nothing

I'm new to using Service Reference in Visual Studio, and I'm trying to consume a Java Web Service. I've added Service Reference using the wizard. The wizard built the proxy code and added endpoints to ...
0
votes
1answer
27 views

Multipart messaging in .NET with service references c#

I have looked for hours and haven't found an answer to what I would imagine is a somewhat common issue. I have a lot of data (string[2000000]) that I want to send across to a service via a service ...
0
votes
1answer
23 views

Visual Studio/.NET Service Reference HTTP Version

I am adding a "service reference" to my project and we are experiencing an issue we believe may be due to a variance in the HTTP version (1.0 vs. 1.1). Does anyone know which version is used by ...
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
52 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
77 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" /> ...

1 2