Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

I am getting an error while consuming wcf service from my wpf application.

I created a proxy for wcf service and from there i am accessing wcf service in view model of my wpf application.

Exception i am getting as follows:

"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."


Thanks,
Kishore
Posted
Comments
Pete O'Hanlon 1-May-13 10:32am    
There's not a lot we can do to help you here. You need to make changes at the server end to see what's going on there.

1 solution

It's difficult to tell from the exception you listed. You need to set the includeExceptionDetailInFaults to True in the app.config, to see more detail exception and go from there.

<configuration>
<system.servicemodel>
<behaviors>
<servicebehaviors>
<behavior name="debug">
<servicedebug includeexceptiondetailinfaults="true">



.....
.....
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900