Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to initialize class in WCF?

suppose i just want to make a sum of two member in a class

i have coded in iService like

[DataContract]
class Sample
{
    public int i { get; set; }
    public int q { get; set; }
}

[OperationContract]
public int Sum(Sample obj);

and in service

public int Sum(Sample obj)
{
}

what added coding require to make that run, as i am confuse with the class declaration in both the pages?

share|improve this question
1  
you need to put DataMemberAttribute on your properties – Pencho Ilchev May 22 '12 at 8:36
sorry i missed that out. but in service page it shows the absence of sample object(that is obvious as i dnt have class their) but do we need to add class declaration again on service page? or some other way?> – user1386919 May 22 '12 at 8:39

1 Answer

up vote 2 down vote accepted

Usually, it would be set up like below. You should clearly separate the service from the data contracts.

[ServiceContract]
public interface ISampleService
{
        [OperationContract]
        int sum(SampleData obj);
}

public class SampleService : ISampleService
{
        public int sum(SampleData obj)
        {
           // logic here
        }
}

[DataContract]
public class SampleData
{
       [DataMember]
       public int i { get; set; }

       [DataMember]
       public int q { get; set; }
}
share|improve this answer
thanks sir now it is working. – user1386919 May 22 '12 at 8:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.