Tagged Questions
4
votes
1answer
85 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 ...
3
votes
1answer
197 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
1answer
158 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
146 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
2answers
285 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 ...
1
vote
2answers
155 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
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
1answer
571 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
230 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
0answers
280 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
11 views
constructor of web service proxy crashes because app wants to load assembly that doesn't exist
I've created a web service proxy class using VS2010 "add web service reference" feature that generates .NET 2.0 reference . Could not create a proxy class using .NET 4.0 - the class is generated ...
0
votes
1answer
57 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
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
2answers
40 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
33 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
70 views
Difference between Project reference and Service reference in .NET
Whenever we are creating a .NET application we do consider several architecture like data access layer (DAL) or Business Layer (BL).
In these layers normally we write code to interact with database.
...
0
votes
1answer
126 views
Can a service reference reuse classes from the assembly that is adding the reference?
If the classes that I want to reuse are in another assembly, I don't have a problem.
But if I want to add a service reference to an assembly that contains classes I would like the service reference ...
0
votes
1answer
328 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 ...