I have a service that do this:
public bool AuthenticateUser(string strUserName, int nPasswordHash)
It's called from ASP.NET login page. Executed the code with debugger running on Visual Studio and NO exception reported/detected. However when I view with "SvcTraceViewer", I keep seeing:
"The body of the message cannot be read because it is empty."
Here's web.config of web service exposing authentication service:
... more ...
bindingConfiguration=""
name="Basic"
contract="xxxxx.SecurityServiceLib.ISecurityService">
name="MEX"
contract="IMetadataExchange" />
... more ...
Any idea? I been banging my head against the wall because of this for sometime and still bit stuck.
dev
Replies
Know the answer? Post it — somebody with the same question will find it here.