c# - Compact Framework communication with WCF without NETCFSvcUtil generated proxies -
c# - Compact Framework communication with WCF without NETCFSvcUtil generated proxies - is possible communicate wcf service without using netcfsvcutil generate proxy? i'm trying phone call wcf service on mobile using compact framework. i not want utilize netcfsvcutil generate proxy particular reason. i have sample code on mobile side test out : // contract defined @ client side (mobile device) public interface iservice1 { string getdata(int value); } public partial class form1 : form { public form1() { initializecomponent(); } private void button1_click(object sender, eventargs e) { seek { string address = "http://192.168.30.88:8731/design_time_addresses/wcfservicelibrary1/service1/"; // throws here .... var channelfactory = createdefaultbinding().buildchannelfactory<iservice1>(new system.service...