Format:
Recent snippets matching tags of rest
class Program { static void Main() { // I have an application in my IIS Site called "ZeroConfig", where the service from http://codepaste.net/s5hwyv is running HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create("http://localhost/ZeroConfig/Service.svc/HelloWorld/test/helloworld"); req.Method = "POST"; req.ContentType = "text/plain"; Stream reqStream = req.GetRequestStream();
546 Views
no comments
<%@ ServiceHost Language="C#" Debug="true" Service="Service" Factory="System.ServiceModel.Activation.WebServiceHostFactory" %> using System; using System.IO; using System.ServiceModel; using System.ServiceModel.Web; using System.Text;
680 Views
no comments
/* Google jquery CDN <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> */ $.ajax( { type: "POST", contentType: "application/json; charset=utf-8", url: "services/FeedService.svc/ServiceMethod", data: '{"param1":"data1" , "param2":"data2"}',
189 Views
no comments
<system.serviceModel> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="True"/> <services> <service behaviorConfiguration="SyndicationServerBehavior" name="SimpleBolg.services.FeedService"> <endpoint behaviorConfiguration="AjaxBehavior" binding="webHttpBinding" contract="SimpleBolg.services.IFeedService"/> </service> </services> <behaviors> <serviceBehaviors>
153 Views
no comments
routes.AddRoute<OrdersResource>("/Orders"); routes.AddRoute<OrdersResource>("/Orders/{Order}") public class OrdersResource { //dependencies can be injected public OrdersResource(IRepository<Order> orderRepository) { } public JsonResponseMessage GetOrders() {} // allows explict mapping for contentneg based on return value
703 Views
no comments
using System; using System.Collections.Generic; using System.Web; using System.Web.Mvc; using Westwind.Utilities; using System.ServiceModel.Syndication; using CodePasteBusiness; using System.Text; using System.Collections;
2127 Views
no comments
Subscribe
Discuss
News
About
New Snippet
Recent Snippets
My Snippets
Favorites
Web Code
Search