Bom dia
Download do xml da NFe de terceiro depois de manisfestado esta dando erro pcnRetDownloadNFe
try
try
// XML da NF-e
StrAux := RetornarConteudoEntre(Leitor.Grupo, '<NFeZip>', '</NFeZip');
StrDecod := DecodeBase64(StrAux);
StrStream.WriteString(StrDecod);
FretNFe.Items.FNFeZip := UnZipMsg(StrStream);
// XML do Protocolo da NF-e
StrAux := RetornarConteudoEntre(Leitor.Grupo, '<protNFeZip>', '</protNFeZip');
StrDecod := DecodeBase64(StrAux);
StrStream.WriteString(StrDecod);
FretNFe.Items.FProtNFeZip := UnZipMsg(StrStream);
except
on e : Exception do
begin
Raise Exception.Create(e.message);
end;
end;
finally
FreeAndNil(StrStream);
end;
Comentando estas linhas desse try
// XML do Protocolo da NF-e
// StrAux := RetornarConteudoEntre(Leitor.Grupo, '<protNFeZip>', '</protNFeZip');
// StrDecod := DecodeBase64(StrAux);
// StrStream.WriteString(StrDecod);
// FretNFe.Items.FProtNFeZip := UnZipMsg(StrStream);
funciona perfeitamente o download.