Problem sending JSON data from JQuery to WCF REST method

后端 未结 5 742
小蘑菇
小蘑菇 2020-11-30 01:27

I\'m having some trouble getting jquery to post some json data to a rest method I have on my WCF service.

On the WCF side, here\'s the operation contract:

         


        
5条回答
  •  旧巷少年郎
    2020-11-30 02:04

    Update:

    Try putting .svc after MyService so that the URL reads

    http://localhost/MyService.svc/PostSomething
    

    I was working on this the other day myself, and came across a post on Rick Strahl's blog:

    http://www.west-wind.com/weblog/posts/324917.aspx

    This works flawlessly for me, so give it a try!

    Hope that helps! :)

提交回复
热议问题