Tagged Questions
The operationcontract tag has no wiki summary.
3
votes
1answer
228 views
WCF - Customized WDSL generation
I spent hours trying to do some customizations in the wsdl generation, without results.
I got stuck mainly because I could not find a clear sample for what I want to do (I may have missed something).
...
3
votes
3answers
971 views
WCF: Same Faultcontract on many methods
Take for example a project with 10 services and 20 methods on each service.
All services inherit from a base services which has a security check. The first thing each method does is to make a call to ...
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
2answers
178 views
WCF service method unavailable in WCF Test Client because it uses type
I am trying to use the WCF Test Client to test a WCF service I have built.
The service has one method "SubmitRequest".
[OperationContract]
Response SubmitRequest(Request request);
When I load up ...
2
votes
1answer
69 views
Can I call multiple operation contracts when ConcurrencyMode is Single
I have a WCF service with 3 operation contracts. I set [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Single)] for this service. My basic doubt is can I able to call all the 3 service at a time or ...
2
votes
1answer
178 views
How to rename xml root in WCF response? [closed]
Possible Duplicate:
WCF REST: remove prefix “ArrayOf” for wcf method response
I have defined a simple WCF service in c# like this:
[ServiceContract]
public interface ...
2
votes
2answers
371 views
WCF Generics - Why do DataContract and CollectionDataContract allow formatted naming, but not DataMember, OperationContract or ServiceContract?
Basically as the title says:
[DataContract(Name = "{0}Item")] //This will format properly
public class GenericItem<T>
{
[DataMember(Name = "The{0}")] //This will NOT format properly
...
2
votes
2answers
135 views
WCF Rest .svc throws error when viewing directly, but works otherwise
I have a WCF rest service with two OperationContracts as follows:
[OperationContract]
[WebGet(UriTemplate = "ping/")]
Message PingServer();
[OperationContract]
...
2
votes
0answers
100 views
Write UriTemplate to help documentation for a WCF serivce
We're using the standard visual studio documentation to document methods and parameters which are published to the .xml file generated when compiled.
However, it would be extremely helpful to include ...
2
votes
1answer
359 views
Does WCF UserNamePasswordValidator require checking PrimaryIdentity.IsAuthenticated?
Currently I have a service that uses a UserNamePasswordValidator to authenticate the client user. The code for the validation goes as follows:
public override void Validate(String userName, String ...
2
votes
2answers
1k views
How to specify a parameter of an OperationContract as required
I wonder how I can specify a parameter of an OperationContract method in WCF as required so that the generated xsd contains minOccurs="1" instead of minOccurs="0".
Example:
...
2
votes
3answers
439 views
How to create generic WCF OperationContract to retrieve data from a SQL table
I've been given the task of creating a .net interface for a table that will be retrieved a database.
One of the obvious things that the interface must do is retrieve data from the table.
So.... I ...
2
votes
2answers
444 views
In WCF, is it better to have multiple operation contracts or to have only one operation with polymorphic data contract?
I was wondering if it was better in WCF to use multiple operation contracts or to have only one operation contract with a polymorphic data contract.
Let me give you a small example :
...
2
votes
2answers
3k views
WCF OperationContract - which generic collection type should I expose?
I have a WCF web service that has a method that returns a generic collection. Now, my question is: Should I expose it as ICollection<T>, List<T>, IList<T>, IEnumerable<T> or ...
2
votes
5answers
2k views
WCF MessageContract Inheritance
I am fairly new to WCF and just have a question on how to correctly get MessageContract inheritance working. A simplified version of my setup is as follows - a "base" message type, and then another ...
1
vote
1answer
38 views
WCF service with 4 input parms and 3 out parms gets reordered by Add Service Reference in Proxy Class Project
I've looked in SO and elsewhere and seen questions posed about this along with some answers that still make no sense to me in my case.
I'm refactoring my working VStudio 2010 solution which has:
...
1
vote
1answer
323 views
Designing WCF Contracts (Operation / Data)
I am currently looking to design some WCF services and wanted to get the community's opinion on the best way to handle operation / data contracts.
I have 2 basic operation contracts, the first ...
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
1answer
492 views
What is the use of “AsyncPattern” property of “OperationContractAttribute” + wcf?
Thus for used ajax enabled wcf services to get records from DB and display it in client without using AsyncPattern property of OperationContractAttribute....
When should i consider AsyncPattern ...
0
votes
1answer
128 views
WCF XmlSerializerFormat and OperationContract: nested soap parameters serialization
After reading the post XmlSerializer with specified pattern not working I try to implement such a service : OperationContract with the XmlSerializerFormat. But my Soap message contains an additional ...
0
votes
2answers
389 views
WCF OperationContract - What's the point of Action and ReplyAction?
[ServiceContract(Namespace = "http://schemas.mycompany.com/", Name = "MyService")]
public interface IMyService
{
[OperationContract(Name = "MyOperation")
OperationResponse ...
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
1answer
235 views
Operation Contract with Different Source or Action Url
Our third party API provides two different web services but have identical methods, models. Nevertheless they only differ on URIs (Web Service Path, Action Path [Operation Contract].
So I have ...
0
votes
2answers
315 views
IIS seems to think an Android HttpPost is a GET
UPDATE: These problems were caused by a reverse proxy performing a 301 redirect. Altering the url to the destination of the redirect fixed the issue.
I am struggling to make a POST request from ...
0
votes
3answers
292 views
Getting Gibberish instead of Hello World from a service with webHttpBinding
Here is a trivial example that is supposed to return "Hello World" string. However, a browser displays something like SGVsbG8gV29ybGQ=. Which is the right way to return plain text from an ...
0
votes
1answer
263 views
Cookies in wcf service OperationContract
Is it possible to read cookies in the OperationContract of a wcf service? I am trying to read a cookie value in the contract method, but its always empty. If I read the same cookie from a .aspx page, ...