I'm trying to you a web service with my MVC3 controller. This service has an optional parameter, such as

Service.GetObject(int id, DateTime? date)

But when I try to call it will a null value , like

Service.GetObject(id, null)

I get this error.

$exception {"Object cannot be cast from DBNull to other types."} System.Exception {System.ServiceModel.FaultException}

Please help if you can.

link|improve this question

74% accept rate
feedback

2 Answers

It looks like the service is trying to cast from DBNull to some other type (DBNull != null) and since the code you show has no notion of DBNull it's hard to say what the problem is but it doesn't look like it's in the client code

link|improve this answer
feedback

You should't have to even use null for the second parameter in your call.

http://blogs.msdn.com/b/simonince/archive/2011/02/02/asp-net-mvc-3-optional-parameter-routing-issue.aspx

link|improve this answer
OP is calling a service from his controller it's not an action with an optional parameter – Rune FS Sep 14 '11 at 17:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.