Dear,
I have written code as below to upload a document in to Laserfiche using c# asp.net asp.net. I have clarification how to upload FileUpload1.Content file. I have used below code, but it will not help. Because it use only List XML paths. Please advise any sdk method is availabile to obtain this solution.
importEngine.RootPath = "\\";
importEngine.VolumeName = "GTSLFDEV2VOL";
importEngine.IgnoreErrorAndContinue = true;
//string filename = FileUpload1.PostedFile.FileName;//Path.GetFileName(FileUpload1.FileName);
//FileUpload1.SaveAs(Server.MapPath("~/bin/") + filename);
DocumentImporter DocImporter = new DocumentImporter();
ImportOperation importOp = importEngine.BeginProcess(FileUpload1.FileContent);
//wait util the operation is complete, whether or not it is successful