public static Caloom5WStructure Get5W(Guid EventID) { BasicHttpBinding basicHttpBinding = new BasicHttpBinding(); EndpointAddress endpointAddress = new EndpointAddress("http://localhost:56071/CaloomMainService.svc"); ICaloomMainService service = new ChannelFactory< ICaloomMainService >(basicHttpBinding, endpointAddress).CreateChannel(); var serviceResponse = service.Get5W(EventID); return serviceResponse; }