korda
12-05-2008, 03:03 PM
I am getting this exception message in the following function below:
"Exception has been thrown by the target of an invocation"
Unfortunately it does not tell me much about what is happening. I know I am getting it when trying to make RPC calls...
void EventCallback(IAsyncResult asr)
{
...
catch (XmlRpcFaultException xmlrpcEx)
{
...
}
catch (Exception ex)
{
temp = ex.Message.ToString(); // handle the exception
}
}
"Exception has been thrown by the target of an invocation"
Unfortunately it does not tell me much about what is happening. I know I am getting it when trying to make RPC calls...
void EventCallback(IAsyncResult asr)
{
...
catch (XmlRpcFaultException xmlrpcEx)
{
...
}
catch (Exception ex)
{
temp = ex.Message.ToString(); // handle the exception
}
}