Hi, I have created a WCF service in my project and I have some classes on the server side that I use on the servers side and on the client side via reference.
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Runtime.Serialization;
using System.Linq;
using System.Text;
using System.Collections.ObjectModel;
namespace DataEntities {
[DataContract]
public class PlanEntriesData
{
private ObservableCollection<entry> entries;
public PlanEntriesData()
{
entries = new ObservableCollection<Entry>();
}
[DataMember]
public ObservableCollection<Entry> Entries
{
get { return entries; }
set { entries = value; }
}
public string helloWorld()
{
return "hello";
}
}
}
The problem is on the client side the object has no helloWorld() method. Can anyone help me with how to get the methods ?
best regards sushiBite