我正在mvc asp.net 5中开发Web服务。
我从dll使用SDK,但是当我从该dll调用函数时,它没有响应。它保持等待,不会引发错误。
我正在x86中进行编译。这是代码
public Respuesta TimbrarFactura(String ConceptoDocumento, String Serie, double Folio, String password)
{
try
{
int resp = SDK.fEmitirDocumento(ConceptoDocumento, Serie, Folio, password, "");
if (resp == 0)
{
return new Respuesta(true, "Se timbro el documento");
}
else
{
try
{
SDK.fError(resp, sMensaje, 255);
}
catch(Exception e)
{
}
return new Respuesta(false, sMensaje.ToString());
}
}catch(Exception ex)
{
return null;
}
}
我添加了一个try catch块来获取一些错误,但是从未输入过catch块。可能是什么原因造成的?