-1
votes
0answers
9 views

How to Use MSMQ with WEB API? [closed]

I have developed a REST API for transaction processing. I need to queue transactions and process them through MSMQ. My problem is giving the response to the client for particular http request. Can ...
0
votes
2answers
27 views

The remote server returned an error“ (400) Bad Request. ContentType = ”text/xml; charset=utf-8"

I have a simple WCF POST that posts a simple XML to the service. This is the service contract. ` [ServiceContract] public interface ITest { [OperationContract] [WebInvoke(Method = "POST", ...
0
votes
1answer
36 views

The created svc Service is always SOAP

i am trying to create REST webservice: Print.svc: <%@ ServiceHost Language="C#" Debug="true" Service="WcfService1.Print" CodeBehind="Print.svc.cs" %> IPrint.cs: [ServiceContract] public ...
0
votes
1answer
41 views

.Net Web API throw exception/return response/return error response for 404/400 response?

I am developing some restful web service using .net web api. I need to return 404 (NotFoundStatus) or 400 (BadRequest) to the client for some scenarios. It seems like that there are many ways to do ...
0
votes
0answers
38 views

504 Error in .NET Web API

We have a 4 servers that have the Web API installed on and are sitting behind a Network load balancer. When I use Fiddler to make a request to the NLB address, it fails with a: [Fiddler] ...
2
votes
0answers
50 views

ServiceStack: repalce web service with message queue

I'm working on a project that provides some API for getting information about our partners' products. Every search request to our site has to make n other requests to partners sites, collect and ...
0
votes
0answers
22 views

HttpWebRequest crashes into InternalEndGetResponse when making a POST request to Skydrive oauth2.srf

I almost managed to integrate Skydrive in my xna wp game, I'm opening a WebBrowserTask to fill in credentials and accepting scopes on the Live Connect site, redirecting to my php page to store the ...
0
votes
1answer
40 views

how to grant write permissions to an web api application in IIS?

I simply have a web api application on IIS server that simply writes to text file on C:\FileStorage\test.txt however when I call this webservice I get the internal 500 error, after expanding the ...
0
votes
1answer
35 views

Wcf web get method execute twice

I have the above [OperationContract] [WebGet(UriTemplate = ...
2
votes
0answers
53 views

Fail to consume WCF service in Android

I am trying to POST data to my database using WCF service but can't seem to figure what is wrong with my code, I have tried different solutions but all of it seems to fail. I am new to android ...
-4
votes
0answers
45 views

How to implement update notification for RESTful service client [closed]

I want to implement update notification for client. Below are the details. Clients are browsers making calls to RESTful WCF service. Server is implemented by .Net WCF RESTful service. Backend is SQL ...
0
votes
0answers
36 views

Is there any JIRA OAuth implementation example in .NET?

We are working on a Jira extension platform in .NET, and we want to provide user access to some secure datas (like download attachments). So we are trying to implement JIRA OAuth Authentication in ...
0
votes
0answers
25 views

How to run different versions of a database-driven WPF client concurrently in .NET?

In a data-intensive .NET WPF application we access a shared MS SQL database. The client continuously collects large amounts of data during production and reads/writes them directly to one central ...
0
votes
2answers
50 views

Converting AJAX REST call to a C# .NET

I have a AJAX call that works perfectly at local server. I'm trying to make the same call via C# (from another application/domain) but I'am very confused. This is my webmethod: [WebMethod(true)] ...
-1
votes
0answers
27 views

working with CMS API and consuming with .net

I am working on a E-commerce website which is run by CMS. I have to create additional functionality on the website. I am given the REST API of the CMS. I am on dilemma on how to consume it on visual ...
0
votes
0answers
48 views

How many custom headers Can I have in a request?

I was wondering if can I have custom headers requireds on my web api application. I don't know too much about headers, http protocols and etc. After reading a little, I thought on required the code ...
-1
votes
0answers
43 views

Windows forms application consuming mySQL data served using rest services from php [closed]

I want to build a windows forms application that would interact through rest services, served from php, with a MySQL database. The client application should perform CRUD operations, through ...
0
votes
0answers
48 views

.NET web service wrapper for multiple data sources

I am asked to develop (from scratch) a REST web service in .NET that wrapps calls to various data sources: Databases (SQL, DB2, Oracle, etc) Other web services (SalesForce, Microsoft CRM, etc) Flat ...
0
votes
1answer
36 views

State pattern in the domain could affect service layer badly

We have N-layered application which we try to design with DDD in mind. The app is exposed as a REST service. We have a domain entity that utilizes state pattern. The interface for state is like this ...
1
vote
0answers
49 views

Using Microsoft Enterprise Library 5.0 Logging Provider for Service Stack

I have a project based on ServiceStack framework and I want to use the Logging provider for Microsoft Enterprise Library 5.0, here are the steps I followed: (1) Installed the Service Logging ...
1
vote
0answers
39 views

Getting Price before sending Twilio message

I am using the Twilio .NET Helper Library and want to be able to determine the price of a call or SMS message before I actually send it. For example, if it is a SMS message that will go to a UK ...
0
votes
0answers
46 views

Post media in RestSharp doesn't work

I want to attach a file to post request, but it doesn't work. public override string Post(string url, object payload) { IRestRequest request = CreateRequest(url, Method.POST); ...
1
vote
1answer
121 views

wcf rest Service Post method with json format

This is my code for wcf web services [OperationContract] [WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "json2")] ...
1
vote
3answers
352 views

Android Image upload to C# .NET REST service

I know this question has been asked a lot on stackoverflow and its all over the internet, but it seems that there is never a common or best solution to upload an image from multi-platform to .NET REST ...
2
votes
1answer
83 views

HttpWebRequest Response Stream only returns 64k of data

We're using the Web API to provide a RESTful service to our application, which at the moment is using WPF and so requires a service client. The problem we're having is that when the response size ...
0
votes
0answers
66 views

Unable to POST xml with larger base64 image to commerical REST web service

I've have a .net client application that sends thousands of images (as a simple XML structure where one of the tags holds a base64 image string) to a large commercial web business via their REST API. ...
0
votes
2answers
80 views

How to call Rest ful webservice using httpWebRequest and PostData

I have created a restful webservice like below Opertation Contract [WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped,ResponseFormat = ...
1
vote
1answer
93 views

Nancy : use array of data from POST request

I need to send an array of object from my web application to my Nancy web service in order to update my database. Sending just an object, it works fine : in my web method, I get the data using ...
0
votes
1answer
33 views

Best approach for generic filtering/sorting with REST

We are building a .NET-based REST API that will be used by our single-page JavaScript app and potentially other consumers in the future. The app will have many grids displaying data and allowing the ...
0
votes
2answers
72 views

Deploy REST service without access to IIS

I have developed a .NET REST web service in C#. While I have plenty of C# experience, I unfortunately do not have much understanding in deploying such a service in a web hosting environment. Due to ...
0
votes
0answers
45 views

JQuery ajax fails with a secure REST url with an expired certificate in a mobile app

In a HTML5 mobile app (using Phonegap), the JQuery ajax calls fail with a https REST service url with an expired certificate. I cannot install an unexpired certificate on the server and need to make ...
1
vote
2answers
77 views

WCF Rest Change name of root return element

I have [OperationContract] [WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Xml, RequestFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = ...
4
votes
1answer
170 views

Is it possible to have a REST url parameter with an ampersand?

Using the System.ServiceModel libraries for routing, I have a REST service with a simple template that looks like "{searchTerm}?opt={someSearchOpt} So the call would look like: ...
0
votes
0answers
252 views

Upload and Download a File with Web API

I need to upload a File , process it and then download the processed file within the same POST request. I didn't find a lot of documentation about Web API covering my requirement, so I've come up ...
1
vote
0answers
47 views

WCF Always append session token

I am appending a token to every request I make to my REST service. For example, to get information about a user, you would do: /Service.svc/users/12174?auth_token=138eac01291378f But to achieve ...
1
vote
2answers
379 views

Referencing system.web.cors

I'm trying to implement cors support in my Web API. I have read a couple of blog posts on this topic, but I can't seem to find System.Web.Cors.dll or System.Web.Http.Cors.dll Is there something I ...
0
votes
1answer
37 views

Cant find DispatchOperation by name in WCF Extensibility for GET Request

I recently ran into an issue that is throwing me for quite a loop. I have implemented a custom AuthorizationManager in WCF which first must pull the operation by name. The WCF services are exposed ...
0
votes
1answer
98 views

Custom Method in WCF Odata Entity

I would like to add a custom method to one of Entity in my WCF OData project. Currently i have my service up and running. For all tickets : http://local.host/api/TicketService.svc/Ticket For one ...
0
votes
1answer
63 views

Returning dynamic/generic object or POCO

So when I am writing a Web API I was thinking how to handle a situation when an error occurs. How should I inform the consumer what happened and how to correct it. I have an error object that I ...
1
vote
1answer
128 views

REST with hypermedia frameworks for .NET

Looking to start a web API project and wondering which of the (two?) frameworks would allow me to go further in Richardson Maturity Model with the least amount friction. Perhaps a link to a HOWTO?
1
vote
2answers
514 views

PayPal REST API .net SDK - 400 Bad Requests

I'm working in the sandbox and using the PayPal REST .net SDK method Payment.Create with a CreditCard object. When all parameters are valid and using the test CC number from ...
0
votes
2answers
102 views

How to point a website to localhost or hostname

How can I make the website point to a local host instance of a webservice if running through visual studio but point to the server using the hostname when running on iis. I have a ASP .Net web apis ...
0
votes
0answers
63 views

How to support indefinitely many hierarchy levels in a WCF WebInvoke UriTemplate attribute?

Say I have this WebInvoke attribute... [WebInvoke(Method = "GET", UriTemplate = "MyRoot/{path}/?x={x}&y={y}")] Calling …/MyRoot/a/?x=1&y=2 works fine, but …/MyRoot/a/b/c/?x=1&y=2 ...
0
votes
1answer
339 views

IIS 7.5 Restful service returns Error 411 - length required from .net client but not fiddler

I'm using a Microsoft Stack: Windows Server 2008 R2 / IIS 7.5; .NET 4.0 Setting up the service on localhost, the client call the operation without a hitch. Setting up the service (originally as a ...
5
votes
1answer
133 views

Now that WebServiceHost2Factory is dead, how do I return error text from a WCF rest service?

I've seen several references to WebServiceHost2Factory as the class to use to effectively handle errors in WCF Rest services. Apparently with that class, I just had to throw a WebProtocolException and ...
1
vote
0answers
101 views

Good options for building RESTful API in .NET 4.5? [closed]

What are the .NET API options and pro and cons for building a RESTful API that exposes operations on datasets. Ideally the option would support: Agnostic backend (could be SQL, File System, Hadoop, ...
1
vote
1answer
117 views

MediaFire Rest API session signature SHA1?

I'm trying to connect to MediaFire using their API. According to the documen the get_session_token request one of the required parameters is: signature: a SHA1-hashed string that contains the ...
2
votes
1answer
146 views

javascript Error in REST WCF url from Jquery using jsonp

I am getting javascript error when I try to execute REST WCF Service from jsonp. Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET ...
0
votes
0answers
66 views

send an image without using Stream through rest service

i tried to upload a image via stream through rest wcf service and i succeed in it.in normal wcf service also we are using stream right.so what is the advantage while we are using wcf rest rather than ...
0
votes
0answers
72 views

Rest Service WCF Interpret Message and Tutorial Suggestion

I am a complete beginner in wcf and REST and struggling to find a comprehensive tutorial on google.I am doing a tutorial from ...

1 2 3 4 5 11