Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Can I change namespace of WCF ServiceContract interface without changing the service?

Is there a way to change the .NET namespace of a WCF ServiceContract Interface yet still make the WCF service backwards-compatible with clients that are using the old (identical except for namespace) ...
3
votes
1answer
202 views

how to use MessageParameterAttribute in wcf

I wanted to know what is the use of MessageParameterAttribute in wcf. In my function: [OperationContract] public float GetAirfare( [MessageParameter(Name=”fromCity”)] string originCity, ...
3
votes
2answers
1k views

WCF contract changes that affect clients

I was curious if someone could outline which types of WCF contract (interface) changes on the server side would break a client trying to send in a message, and why. I believe WCF can handle certain ...
2
votes
1answer
150 views

Web Service Contract Design - Single-Responsibility

I'm curious as to see how most developers go about designing the contracts to their web services. I am quite new to service architecture and especially new to WCF. In short, I'd like to find out ...
2
votes
1answer
138 views

WCF - separating service contracts and partial deriving?

So, I've seperated my WCF service contracts into discrete contracts for re-use. I use to have IOneServiceContract that contained 3 functions: Function1, Function2, Function3. I've seperated this ...
1
vote
2answers
42 views

How to generate all datacontract class

I have build chat service with WCF. I have class that marked as datacontract attribute [DataContract] public class Message { string _sender; string _content; DateTime _time; ...
1
vote
1answer
104 views

WCF ServiceContract namespace update

I have the following WCF interface: [ServiceContract] public interface IUser { [OperationContract] string GetUser(); } Which I changed to this one: [ServiceContract(Namespace = ...
1
vote
2answers
60 views

Programatically discover a ServiceHost's Service Type

G'day, I've tried searching MSDN and here, but I don't think I can do this: Given a reference to a ServiceHost, is it possible to discover the type of the host it is executing? Something like ...
1
vote
1answer
258 views

Multiple endpoint with multiple contracts in WCF

Hi I have 2 service contracts IService1 and IService2 I want different endpoints for each service contract also I want to use only basichttpbinding. Suppose IService1 address is ...
1
vote
1answer
375 views

Provide ServiceKnownType during runtime?

I've got a working WCF interface using more than 100 ServiceKnownType in the contract like this: [ServiceKnownType(typeof(RowUser))] [ServiceKnownType(typeof(RowRegion))] ...
1
vote
2answers
1k views

WCF class implementing two operation contracts in different service contracts with same name

I have declared two service contracts as follows: [ServiceContract] public interface IContract1 { [OperationContract] double Add(int ip); } [ServiceContract] public interface IContract2 { ...
1
vote
2answers
1k views

How to expose service contract interfaces with multiple inheritance in WCF service on single endpoint

I have only simple data types in method signature of service (such as int, string). My service class implements single ServiceContract interface say IMathService, and this interface in turn inherits ...
0
votes
4answers
32 views

Get WCF Contracts implemented by a service

Is there any possibility as a client to get a list of contracts a WCF host exposes? I would like to query a service and to ask what interfaces it implements.
0
votes
2answers
45 views

WCF - contracts versioning (by example)

This should be easy for someone familiar with the best practices of versioning service/data contracts. I want to make sure that I will use this versioning in the correct way. So, let's say we have a ...
0
votes
2answers
37 views

Why do WCF services use interfaces as a Service Contract instead of an abstract class?

This is a question I got asked in an interview. When you create a WCF service, you get two files; "IService.cs" and "Service.cs". Why is it a class implementing an interface versus a class inheriting ...
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
0answers
21 views

ServiceContract Interface Inheritance

I have 2 service contract interfaces which one of them inherits the other. I want the inheriting interface to have a different namespace defined in the ServiceContract attribute. How can i do this? ...
0
votes
1answer
195 views

class implemeting service contracts base class for another class WCF

I have a class implementing a service contract. Another class being derived from this class and in turn implements another service contract Class A: a.IA { } Class B: A, b.IB { } How do I expose ...
0
votes
2answers
264 views

System.Exception.Data will not serialise on DataContract?

I have some WCF services using dataContracts and i wanted to I was hoping to pass a Exception with custom Dictionary< string , object > data in the Data property, but when i add any data on this ...
0
votes
1answer
128 views

WCF namespace usage

Ok - straight forward and simple question (2 part) - looking for a simple answer. In a WCF Service contract you can provide a namespace on your contract... Question is this: First - Why (for ...
0
votes
3answers
503 views

construct soap request from wsdl and service contract with jquery

I am trying to get data from a wcf web service using jQuery. My jQuery code is as follows: jQuery.ajax({ type: "POST", url: serviceWebPath, ...
0
votes
2answers
267 views

WCF - Generalizing Action String

I have to take some pre-defined WSDL's (I do not control these), and expose them on our device to reply to various SOAP/UPnP requests. Anyway, I have all of this working, but the problem comes ...
0
votes
0answers
53 views

REST wcf 4.0 endpoints?

Is it possible to have endpoints in REST WCF 4.0 services. Also do we need to create Service Contract interfaces? Please help. thanks in advance.
0
votes
1answer
227 views

WCF service contract and data contract

I have following code [ServiceContract(Namespace = "http://www.myweb.com/prod")] public interface IBaseService { [OperationContract] public string GetName(IDMessageContract ...
0
votes
2answers
151 views

Service contract design (operations signature)

I'm designing some services and I would like to get some feedback about the conventions I'm using. For all operations, I always define a 'Context' object and a 'Result' one, because of the following ...
0
votes
3answers
1k views

Generic ServiceContract

[ServiceContract] public interface ISecurities<T> : IPolicyProvider where T: EntityObject { [OperationContract(Name="GetAllSecurities")] IEnumerable<T> GetSecurities(); ...
0
votes
1answer
365 views

generate wcf server code from wsdl files

Greetings, I would like to generate some contract based on wsdl file. I used svcutil but I suspect it generated it wrong as all contract methods have void returned type. Is there any tool for this ...
0
votes
1answer
93 views

Can I find out what WCF methods are supported on the endpoint before calling it?

I have a versioning issue with a WCF service contract in which one of the many endpoints which are called for the operation is missing one method from the contract. My question is, how can I make ...
0
votes
2answers
524 views

wcf class implementing multiple service contracts

I have a class TestService which implements two service contracts called IService1 and IService2. But I'm facing a difficulty in implementation. My Code looks as follows: Uri baseAddress = new ...
0
votes
1answer
637 views

WCF ServiceContract and svcutil issue

I have a public interface auto-generated bu svcutil: [System.ServiceModel.ServiceContractAttribute(Namespace="...", ConfigurationName="...")] public interface MyInterface Then I have asmx web ...
0
votes
2answers
2k views

this Operation is not supported in WCF Test Client Error

Actually i implemented WCF service in IIS Host Using WCF Test Client tool I get this error: "this Operation is not supported in WCF Test Client". http://desbiz:49615/GestionProvision.svc Using ...