Is there anything I'm missing here, or is there something special that needs to be done to get postAttachment to work using ECL.WS
//THIS WORKS
//ListResult list = eclWS.GetList(eclServiceSession, ListContentsType.Blank, new ListFilter(), "", "", 1, 100);
//Console.Write(list.Data);
//THIS DOESN’T WORK – WHY?
FileStream inputFile = File.OpenRead("C:\\");
BinaryReader reader = new BinaryReader(inputFile);
eclWS.PostAttachment(eclServiceSession, "",EclWSSvc.AttachmentOwnerType.Folder, "C:\\",reader.ReadBytes((int)(inputFile.Length)));