public static System.IO.Stream GetExportDefinition() { // System.IO.Stream xml = null; ShipScheduleTemplatesServiceClient client = new ShipScheduleTemplatesServiceClient(); try { xml = client.GetExportDefinition(); client.Close(); } catch (TimeoutException te) { client.Abort(); throw new ApplicationException(te.Message, te.InnerException); } catch (FaultException fe) { client.Abort(); throw new ApplicationException(fe.Message); } catch (CommunicationException ce) { client.Abort(); throw new ApplicationException(ce.Message); } return(xml); }