Hi guys.
Anyone know why doesn't this work ?
public class test : IHttpHandler, System.Web.SessionState.IRequiresSessionState
{
public void ProcessRequest(HttpContext context)
{
Dynamicweb.Security sec = new Dynamicweb.Security();
sec.ExtranetLogin("test", "test");
context.Response.Write("ok");
}
}
The stack tells me it fails at
Dynamicweb.Security.ExtranetLogin(String username, String password, Boolean onlyActive, Boolean impersonateUser, Int32 impersonateUserID, Boolean loginIfPwdEncrypted)
with a Object reference not set to an instance of an object.
I have read about others having the problem but no solution
Info :
1. User passwords is NOT encrypted.
2. DW : 8.7.2.2
A related question. I was trying to figure out what line it failed on in Dynmiacweb.dll, so i downloaded the symbols and put them in /bin. But i can't seem to get more detailed information about the error. Anyone know how to do this in DW / Visual stuido so we can get the exact line errors occour?