Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
718 views

DataContractJsonSerializer DateTime implicit timezone conversion

I have a date time in the database and I retrieve it from the database using Entity Framework, I then pass out the data via JSON API through the DataContractJsonSerializer. The time in the date time ...
3
votes
3answers
1k views

Transaction in REST WCF service

We are having a REST WCF service. we want the save operation on this REST service to be in transaction. Is there a way to pass Transaction object over the wire to REST WCF service?
2
votes
1answer
211 views

WCF Restful Service - Send File with Multiple fields in one requert

I am in the process of developing a WCF Restful Service. One of the requirements of the WCF is to allow a client to upload an image file and several input parameters that may contain multiple values. ...
2
votes
2answers
369 views

Using Ninject with RESTful WCF webHttp Service

Does anybody out there know how to use Ninject with a WCF webHttp Service created using the WCF REST Service Template Extension? My project is using Ninject extensively and I want to implement a ...
2
votes
2answers
271 views

WCF Restful Web Service Client Limits

I would like to implement a high-traffic restful .NET 4.0 WCF service which can handle a large number (maybe 2,000) requests a minute. I understand I will need to have the hardware to handle this ...
2
votes
1answer
460 views

Using JSON.NET with RESTful WCF service in .NET 4

Has anyone got a RESTful WCF service (in .NET4) successfully using JSON.NET to do serialization/deserialization? What's the best approach?
2
votes
1answer
2k views

Consuming WCF Rest services with visual studio 2010?

I am used to using soap services where you add a service reference and it creates strong types classes (return types) of each method.. Of course REST doesn't work like this How do i consume a WCF ...
2
votes
4answers
637 views

How are RESTful WCF services secured so that only the calling application can call them?

I have an application that uses Silverlight and ASP.NET as a front-end. It retrieves data from the server by calling some RESTful WCF services that are hosted there. I'd like to prevent the curious ...
1
vote
3answers
48 views

How to make restful calls from server?

Hi i have a restful project and I make rest calls from client side. But for a case I need to make restful calls from server side. How can i do that?
1
vote
1answer
118 views

RESTful service and user maintenance - url structure and commands question

I'm designing restful service and one of the entities to maintain - user accounts. I'm doing it in .NET and using membership provider. Here is what I have: /users/ GET - returns list of users ...
1
vote
5answers
101 views

How to generate load on IIS?

I want to start using load balancers, database replication and sharding, cloud computing. I know I can follow many tutorials, that's no problem, but I don't know how to generate sufficient traffic to ...
1
vote
1answer
936 views

upload image to Database by using WCF Restful service

I am using WCF restful service to upload image to my databse Code: [OperationContract] [WebInvoke(Method = "POST", UriTemplate = "AddDealImage/{id}")] long AddDealImage(string id, ...
1
vote
1answer
193 views

is WCF REST Starter Kit no longer the way to go ahead and creat Restful services?

maybe the question is so lame but this thing is confusing me a lot. there is a screencast series on http://msdn.microsoft.com/en-us/netframework/wcf-screencasts and WCF Starter kit in use there. But ...
1
vote
2answers
798 views

RESTful WCF json request and json response returns null

I am trying to build a sample for RESTful WCF. The request and response is JSON. The response that I get is: {"FirstName":null,"LastName":null} I need to get proper response. Here is the code: ...
1
vote
1answer
466 views

WCF Rest naming conventions for methods and URIs?

I wonder if anyone can confirm the naming convention that i am using is correct, i have just started and really don't want to get into a bad habit Here is what i have ... (see comments) basically i ...
1
vote
1answer
278 views

Resful WCF Service and LINQ

Came across an interesting issue with the WCF Restful Webservice I am writing. It seems to be caching the LINQ data objects somehow. I will try to explain... This is my first venture into ...
1
vote
1answer
389 views

wsimport and Android or any other ProxyGenerator for android?

I am currently developing an Android app i previously developed for IPhone. My Backend is built using WCF service with basichttpEndpoint, i also enabled RESTful methods for better support with other ...
1
vote
4answers
487 views

WCF WebHttpBinding Testing Tool

I'm developing WCF RESTful Services and looking for a testing tool/invoker for calling these services without writing client code. Can anybody refer me to a tool for invoking RESTful services ...
0
votes
2answers
52 views

Is WCF the way to go for a RESTful webservice in MS environment

I want to learn doing RESTful webservices. I have surfed the web some hours and think that I have a good overview over what RESTful services are and now want to build my first service-application. I ...
0
votes
1answer
116 views

WCF 4.0 REST IIS Hosted Long Running Operation No Response after 1 hr

I have an IIS Hosted WCF REST 4.0 service. When I execute a rest operation that takes over an hour to run it never returns a response to the client. Instead I receive the following exception after 4 ...
0
votes
2answers
387 views

WCF REST service 400 Bad Request

I have WCF RESTful service and Android client. Server replies with 400 when I do bigger request. It seems that I have 65k limit issue like in here or in other million posts on same problem. However, ...
0
votes
0answers
114 views

Calling Restful Service using JQuery

Here's the service. [WebGet(UriTemplate = "{city}", ResponseFormat=WebMessageFormat.Json)] string FormatAddress(string city); public string FormatAddress(string city) { return city; } ...
0
votes
2answers
166 views

Implementing REST in WCF

I have a existing WCF in .NET which is consumed through wsdl and proxy classes. Soon, there will be multiple consumers and the load on the WCF will be pretty high. I was asked to develop a new WCF ...
0
votes
1answer
110 views

WCF and WebGet - Error when requesting files with extension

I have configured a simple method in my service that just sends back what you requested : [WebGet(UriTemplate = "/{fileName}")] [OperationContract] string GetFile(string fileName); And when I ...
0
votes
1answer
47 views

Is this considered RESTful?

I am writing a simple web page for our existing web site that will only be used by the web site admin to delete all images from a certain directory on the server. He would browse to this page from his ...
0
votes
1answer
202 views

WCF Restful service - image not showing

I have an restful webservice (WCF Rest service termplate 4.0 C# - VS 2010). The service runs very good, but if I want to show an image in the browser, which is in root directory of webservices, I see ...
0
votes
0answers
371 views

forbidden:403 error while using wcf restful service

I am trying to consume wcf restful service. The code is as follows: private static string SendRequest(string uri, string method, string contentType, string body) { string ...
0
votes
1answer
139 views

changing the parameter value in IparameterInspector WCF RESTful

I am trying to change the value of the parameter in IParameterInspector while doing the validation. The parameters that are string, works fine. But I need int as parameters. and if the parameter is ...
0
votes
2answers
620 views

wcf restful service method invoke error for http post

I have a simple restful wcf service which I have created just for fun. I tried the invoke the post method but I am failling. here is the summary; this is my service contract interface; namespace ...
0
votes
1answer
374 views

WCF rest client - Post timeout

I am newbie to WCF rest. I have two operation contracts, a POST and GET Method. In my client, i use HttpWebRequest and try to access the operation contract. Whenever i access the POST method ...
0
votes
0answers
336 views

How to enable gzip compression in a windows Azure worker role?

Quick version: How do you enable gzip compression on a WCF WebHttpBinding endpoint? Long version: I am developing a worker role to be hosted in Windows Azure. My intent is to define the endpoints ...
0
votes
1answer
291 views

WCF/RESTful DataContract deserialization issue

I am trying to implement a restful service in WCF, but am having issues in that the service is unable to deserialize the xml being passed to it. It is trying to map the root element to the operation ...
0
votes
1answer
561 views

WCF Restful Client throwing “The remote server returned an unexpected response: (405) Method Not Allowed.”

I am a newbie at WCF. I created a WCF restful service in VS2010 (WCF service appl). It was targeted for Framework 4.0. I hosted this service on local IIS with appl pool set for framework 4.0. When I ...
0
votes
2answers
459 views

Accessing HTTP status code while using WCF client for accessing RESTful services

Thanks to this answer, I am now able to successfully call a JSON RESTful service using a WCF client. But that service uses HTTP status codes to notify the result. I am not sure how I can access those ...
0
votes
0answers
3k views

WCF RESTful service Endpoint NOT Found

I have try to write a soap and RESTful WCF service, since it is the first time, find some source from internet, then get through some errors but this error stops me. locally run VS ...
0
votes
1answer
95 views

Site / book / resource to learn web services in java

I m new to java web services. since there are so many standards and so many things.I am unsure where to start..this is for all the professionals out there, if any of you know any of the resources ...
0
votes
1answer
214 views

Changing JSON response root node message in WCF

I created a REST GetTime Service in WCF and the service returns JSON as the response message. Also the WebMessageBodyStyle is set to wrapped so it would have an ID associated with that data it ...
0
votes
2answers
641 views

KISS: Simple C# application which communicates with a RESTful web service

Following the KISS principle, I suddenly realised the following: In .NET, you can use the Entity Model Framework to wrap around a database. This model can be exposed as a web service through WCF. ...