Hi all,
When I upload a file that already exist in a folder and expect an error message throw the FaultException.
I get only following message. Why doesn't it return the detailed message like 'already exist....'?
------------------------------------------------------------------------------------------------------------------------------------------------------
Core.DispatchedServiceThrewException : Dispatched service DocumentManagement threw exception ? : ?
------------------------------------------------------------------------------------------------------------------------------------------------------
My code is here:
catch (FaultException e)
{
Console.WriteLine("Failed!");
Console.WriteLine("{0} : {1}\n", e.Code.Name, e.Message);
return;
}