I have already added the references in the project, my code looks like this:
public string EnviaSefaz(XmlNode xml, string url, string metodo)
{
try
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
Servico01.NfeAutorizacao autorizar = new Servico01.NfeAutorizacao();
Servico01.nfeCabecMsg cabecalho = new Servico01.nfeCabecMsg();
cabecalho.cUF = "29";
cabecalho.versaoDados = "3.10";
autorizar.ClientCertificates.Add(Obter());
string retorno = autorizar.nfeAutorizacaoLote(xml).InnerText;
return retorno;
}
catch (WebException ex)
{
throw;
}
}
The result of this variable return is always: "2SEFAZBA_NFENW_v6.0.0999Rejection: Error not cataloged292018-05-03T23: 57: 40-03: 00"
WebService: link
Do you have any suggestions whatsoever? I already checked the website of the sefaz web services are active, I already validated the xml in their website and validated ok ...
grateful for the attention ...