I have a windows forms application that references a WCF service.
When I try run a method in the service I keep on getting -
The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.
The code that is trying to run
Any ideas?Code:IRWSEORankingDBService.SEORankingDBServiceClient client = new IRWSEORankingDBService.SEORankingDBServiceClient(); List<IRWSEORankingDBService.Customers> custList = new List<IRWSEORankingDBService.Customers>(); custList = client.GetCustomerList();
Kev.


Reply With Quote

