I've got an old web forms that is to be extended with some ajax functionality. I've upgraded to .net 4, but wondering what approach to go for when creating new services.

I don't have to much experience with writing wcf services, and it seems way much simpler just writing a the service using a simple cshtml file like this:

@{    
    var db = Database.Open("MyConnectionString); 
    var data = db.Query("SELECT * FROM MyTable WHERE Col1 = @0", '123');
    Json.Write( new { results=data}, Response.Output);
}

What are the pitfalls using this strategy compared to creating a wcf service?

Thanks for any help

Larsi

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Based on your comment to CodeCaster, I think you're confusing the concepts of web service and web method. If all you're doing is adding Ajax to your app, then you want web methods, which are action methods that return json. And, since you're using webpages, then your approach is perfectly valid.

link|improve this answer
Thanks for your comments, and yes, you're right about me confusing conceptes and I guess I'm also also comparing apples and oranges. – Larsi Nov 22 '11 at 21:19
feedback

Using WCF, you could do:

[OperationContract]
public UserNow GetCurrentUser()
{
    string UserName = Membership.GetUser().UserName; 
    string UserToView = Request.Params["UserToView"];
    //do a bunch of things.
    return UserNow;
}

The advantages?

  • It's strongly typed (you can't return a string or boolean or new FooBar() or just nothing at all, while you can Response.Write all or nothing you like)
  • A WSDL is generated, which clients can consume so they'll know what operations they can execute and what data types are sent
  • Using WCF, you can easily add another binding to support another range of clients (basicHttp and wsHttp for webservices, netTcp for communicating more efficiently with other clients written in .NET) while you don't have to change any of your code

And there are probably a ton of other things I'd forget.

link|improve this answer
Hi! Thanks for answering. Yes, agree with all of the advantages, but in my case the context is an existing web app, no new clients - I just want to do some quick changes for a more ajax style app. I updated the sample to better show the advantages with a non-strong typing approach. – Larsi Nov 22 '11 at 18:23
@Larsi as with Mystere Man's answer, in this case, given the conditions, your approach is a perfectly valid one. – CodeCaster Nov 22 '11 at 20:29
feedback

One consideration not mentioned in the other responses is the performance of Json.Write. It works well for small record sets w/ a few columns, but I've noticed that it is appreciably slow w/ even as few as ~70 records and 10 columns. This is especially important in the context of a web application that you are "Ajaxifying" where you typically are trying to make the application more responsive to user interactions. In these cases I'll typically use Json.Write just to get a proof of concept working, but then will end up going back and modifying the razor page to loop through the returned records and building the JSON string w/ a StringBuilder and write that to the output.

I don't know the performance of WCF, but if it's faster than looping a string builder, you might add that to the list of benefits above (to be weighed against the complexity of setting it up).

link|improve this answer
I have also seen that it is slow. Was not sure if it was a problem on my pc. Thanks for your comments. – Larsi Jan 12 at 21:48
feedback

Your Answer

 
or
required, but never shown

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