Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hullo

I trying to devlop a facebook application with ASP.NET MVC and the facebook API.

For authentication with facebook I have the following code

public FacebookAttribute()
    : base()
{
    ActionParameterFacebookSession = "facebookSession";
    ActionParameterFacebookService = "facebookService";
}
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
    FacebookApplicationSettings settings = FacebookSection.GetApplication(ApplicationName);
    ApplicationKey = ApplicationKey ?? settings.ApiKey;
    Secret = Secret ?? settings.Secret;

This was working before, but now I get the error below ***strong text *Server Error in '/' Application. No parameterless constructor defined for this object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.MissingMethodException: No parameterless constructor defined for this object.

On investigation, i notice that the MVC bits now have the ActionFilterAbstract class as below (Note the constructor is protected, hence causing the error)

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
public abstract class ActionFilterAttribute : FilterAttribute, IActionFilter, IResultFilter
{
    protected ActionFilterAttribute();

    public virtual void OnActionExecuted(ActionExecutedContext filterContext);

IS this a bug in ASP.NET MVC RC1, beacuse this code worked in ealier releases? Is this the best way to handle a scenario like this?

share|improve this question
a) Does your FacebookAttribute inherit directly from ActionFilterAttribute? b) Can you post the stack trace? – Alexander Shirshov Feb 3 '09 at 14:48
The ActionFilterAttribute class has always been abstract, so that shouldn't break you. Perhaps your project is referencing multiple versions of the MVC assembly? If you could post the entire class definition for your type + the stack trace of the exception, that would help us debug. – Levi Feb 5 '09 at 4:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.