Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
255 views

Use of MessageContract crashes WCF service on startup

I'm trying to add a MessageContract to my WCF service, similar to what's going on in this question: WCF: using streaming with Message Contracts Here's the exception I get: The operation 'UploadFile' ...
3
votes
2answers
2k views

Can a WCF Operation that takes a single array as a parameter use MessageContracts?

I am trying to replace an asmx WebService with a WCF service. My primary goal is to keep the SOAP message the same. The caller is not .NET, and would require significant re-work to take minor changes ...
2
votes
2answers
185 views

WCF when to use MessageHeader rather than passing variable in function argument

I am reading about MessageContract & MessageHeader and trying to understand the use case of sending some info in MessageHeader and not use it just as a function parameters?
2
votes
1answer
65 views

How to ignore the property of the base class in the derived class while using the XmlSerializer?

I have a class like this: [Serializable] public class Structure { #region Constants and Fields /// <summary> /// The description. /// </summary> ...
2
votes
2answers
260 views

Method parameter is missing in WCF proxy class

I have a WCF method defined as below: [OperationContract] Message GetSourceData(SourceDataQuery sourceDataQuery); And actual implementation is something like this: public Message ...
2
votes
2answers
215 views

How can I convert an XML file to an instance of a MessageContract class?

I'm attempting to test a [MessageContract] class against an existing sample message, and I'm looking for a way to simplify development by reading the sample message file into an instance of my ...
2
votes
2answers
890 views

WCF: Data contract being converted to message contract

My WCF service exports a single operation, marked with the catch-all action and reply action so that it represents a common entry point to the service: [ServiceContract] public interface IService { ...
2
votes
0answers
421 views

WCF Serialising Enums using Message Contracts

I have some web services that use Message contracts. It's probably worth mentioning that for these services, I cannot shift to Data contracts... One of my types specifies a property whose type ...
2
votes
3answers
340 views

Webservice Response is turned into ref parameter when using MessageContract

I have defined the following Interface [ServiceContract] public interface IHealthProducts { [OperationContract()] ResponseClass OrderSelfSignedHealthCertificate(); } Which returns the ...
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
0answers
14 views

Is it possible to have WCF OperationContracts that do and do not used streamed transfer within the same service?

I have a set of operations that are defined within a single ServiceContract and now two of them have been switched over to take and return MessageContracts directly which contain a Stream body as ...
1
vote
2answers
120 views

Put a MessageContract as MessageBodyMember in other contract in WCF

Can I use recursive MessageContract in WCF ? for example : I need to post some parameters, one of the parameters is an array of file stream. this is My OperationContract : DomainResult ...
1
vote
0answers
660 views

WCF “Always generate message contracts” does not generate MessageContract

I'm importing a WSDL as a service definition (inbound to my service), and for whatever reason the client is formatting the request such that WCF cannot deserialize it without the proxy classes having ...
1
vote
1answer
295 views

MessageContract serialization with DCS

Is there a way to make the DataContractSerializer serialize a [MessageContract] the same way it appears when transmitted over SOAP? I have a class that appears as follows on the wire for a WCF call: ...
1
vote
1answer
1k views

WCF DataContractSerializer doesn't pick up contract attributes… why not?

I have the following type which I use as a message contract in WCF: [MessageContract(IsWrapped = true, WrapperNamespace = "http://example.com/services", ...
0
votes
1answer
52 views

Does the message contract provide interoperability across different languages?

I am reading about WCF services. I am new to the WCF services. I read that WCF provides interoperability. I want to know in which context it provides the interoperability. Is it providing the ...
0
votes
1answer
60 views

WCF Message contract versioning

I would like add a new MessageBodyMember to my MessageContract which refers to a new Datacontract. Will there be an issue? what is the best way to handle message contract changes? how to know whether ...
0
votes
4answers
126 views

How to serialize nested types in WCF response?

Scenario: I'm in the process of creating a WCF service that exposes user data. An instance of User has a property called Role. If I omit this property, the service works; if don't omit the property, ...
0
votes
0answers
112 views

MessageHeaderAttribute and Actor Property

I am mastering my WCF knowledge. Currently I am reading some nice WCF book and got stack into a black hole. I am trying to understrand a MessageContractAttribute and MessageHeaderAttribute (which ...
0
votes
3answers
169 views

How can I generate a custom SOAP message

I have a site that give me this xml response on my GET request: <ServerUnits> <State Name="ServerName" Date="2008-04-01" > <Users> <User login="someUser1" ...
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
1answer
366 views

WCF Service Wsdl Error: operation references a message element that has already been exported

We have a WCF service that has two operations (Operation1 and Operation2) with the same message contract. When you access the Wsdl (Get/Http) we get this error: System.InvalidOperationException: An ...
0
votes
0answers
109 views

MessageContract to return a polymorph object

I have a service like this [ServiceContract] public interface IMyService { [OperationContractAttribute(Action = "*")] GenericResponse MyMethod(Message myRequest); } [MessageContract] public ...
0
votes
1answer
327 views

WCF MessageContract List Serialization

I have the following MessageContracts to use as a request: <MessageContract(WrapperName:="get")> _ Public Class GetRequest Inherits BaseAuthenticatedRequest Protected _typeName As ...
0
votes
0answers
425 views

Sending Soap Header from WCF service

I do migration from ASP.NET web service to WCF. Current code is like this: Server Side public class MyType { public int x; public string s; } public class MyService : WebService { public ...
0
votes
1answer
436 views

WCF MesageContract - customizing outgoing SOAP message - multiple bodies

I have to call a Web service that is extremely demanding (unstandard) regarding the SOAP message format that it chooses to process. I have no control over the server side implementation and there is ...
0
votes
1answer
1k views

Send information in Soap Header to WCF service in C#

i want a web application to create a service reference to my WCF service, insert information to the header of the soap call and call my WCF method. i read about MessageContract attribute and declared ...
0
votes
2answers
170 views

How do I work directly with the XML in WCF Message Contracts?

I'm working with WCF, implementing a very (VERY) complex set of interactions (that we've been handed by a committee controlled by people who have never heard of computers) over SOAP. I will be ...
0
votes
2answers
824 views

WCF Message Contract and Streaming

I'm going boarder line crazy, I have been working with this for over a day and still have no idea why it doesn't work, I have a MessageContract that I'm using to send out a stream, but I get the ...
0
votes
1answer
589 views

WCF DataContractSerializer Behavior

I'm seeing some unusual behavior when using the DataContractSerializer. I have defined a message contract like so: namespace MyNamespace.DataContracts { [MessageContract(WrapperName = "order", ...
0
votes
1answer
474 views

Problem with MessageContract, Generic return types and clientside naming

I'm building a web service which uses MessageContracts, because I want to add custom fields to my SOAP header. In a previous topic, I learned that a composite response has to be wrapped. For this ...