I have a non-wcf service with a method public Attachment GetData(); In WCF client he

Attachment has the following structure.

public partial class Attachment
    {
        public Include include;
        public string contentType;
    }

[System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://www.w3.org/2004/08/xop/include")]
public partial class Include
    {
        public System.Xml.XmlElement[] element;
        public string href;
        public System.Xml.XmlAttribute[] attribute;
    }

The corresponding structures in non-wcf service are,

struct attachment
{
    struct Include;  
    char *contentType; 
};

struct Include
{
    unsigned char *ptr;
    int size;
    char *id;       
    char *type; 
    char *options;  
};

When I call this method from my WCF client, it returns the following XML in AfterReceiveReply(...);

<attachment contentType="">the data comes here ... </attachment>

But I can not find the data in my structures. How do I get this?

Is it necessary to have similar structures at both server and client end?
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.