public svMainDoc GetMainDoc(string stGuidConnect, string stGuidCard) { svMainDoc oMainDoc = new svMainDoc(); //Controllo se non è stato aperto già un File di Log bool newcon = false; //istanzio l'oggetto SvAol.Session SVAOLLib.Session oSession = new SVAOLLib.Session(); try { if (stGuidConnect.Length != 0) { //Assegno la stringa di connessione oSession.GUIDconnect = stGuidConnect; // dichiaro l'oggetto SvAol.Card per la Card SVAOLLib.Card oCard = new SVAOLLib.Card(); //Imposto la scheda con GUID Card. oCard.GuidCard = _Logger.FormatID(stGuidCard); oCard.GUIDconnect = stGuidConnect; oCard.LoadFromGuid(); SVAOLLib.Document oDocumento = oCard.Document; if (oDocumento.FileSize > 0) { oMainDoc.Filename = oDocumento.Name + "." + oDocumento.Extension; oMainDoc.Extension = oDocumento.Extension; if (oDocumento.IsSigned == 0 && oDocumento.IsSignedPdf == 0) { oMainDoc.IsSigned = false; oMainDoc.oByte = (byte[])(oDocumento.ViewAsArray(0, 0)); } else { oMainDoc.IsSigned = true; oMainDoc.oByte = (byte[])(oDocumento.GetSignedDocumentAsArray()); } } } } catch (Exception e) { throw new Exception(String.Format("{0}>>{1}>>{2}", "GetMainDoc", e.Source, e.Message), e); } finally { if (newcon) { oSession.Logout(); } } return(oMainDoc); }
public bool SetMainDocByteArr(string stGuidConnect, string stGuidCard, byte[] docData, string sDocName) { //Controllo se non è stato aperto già un File di Log SVAOLLib.Session oSession = null; bool newcon = false; bool SetMD = false; // valore da restituire try { //controllo se sono già connesso, in caso contrario mi connetto e ritorno la stringa di connessione if (stGuidConnect != null) { //istanzio gli oggetti Svaol oSession = new SVAOLLib.Session(); SVAOLLib.Card oCard = new SVAOLLib.Card(); SVAOLLib.Document oDocument = null; //assegno la connessione oSession.GUIDconnect = stGuidConnect; Object varData = new Object(); // Se la GUIDCard non è formattata lo faccio ora stGuidCard = _Logger.FormatID(stGuidCard); //Imposto la scheda a cui aggiungere il documento oCard.GUIDconnect = stGuidConnect; oCard.GuidCard = stGuidCard; oDocument = (SVAOLLib.Document)oCard.Document; //Specifico il file da importare oDocument.Name = sDocName; // Imposto l'estensione string ext = Path.GetExtension(sDocName); oDocument.Extension = ext.Substring(1, ext.Length - 1); oDocument.Insert(docData, docData.GetUpperBound(0) + 1, 0, docData.GetUpperBound(0) + 1, 1, 0); SetMD = true; } } catch (Exception e) { throw new Exception(String.Format("{0}>>{1}>>{2}", "ERRORE : SetMainDoc", e.Source, e.Message), e); } finally { if (newcon) { oSession.Logout(); } } return(SetMD); }