views:

37

answers:

2

I want to bind POSTed form values to parameters in my WCF operation in the same way that ASP.Net MVC allows me to do.

So, for example if my form has "customer.Name" and "customer.Age" parameters, I want to make a standard HTML POST to a named endpoint/operation that takes a customer parameter and have it instantiated and populated like MVC can do...

It looks like I can use WebInvoke and its UriTemplate property to map simple parameters - does anyone know if a more MVC-like model-binding way is possible?

Thanks, Mark.

A: 

The Model Binder in ASP.NET MVC is open source, permissive. Potentially, you can co-opt it to perform your model binding for you.

Robert Harvey