Tagged Questions

0
votes
3answers
22 views

What is the difference between category/category_id/item_id and category?category_id={}&item_id={} in REST?

I just began looking at REST and was wondering what the basic difference between the two representations was. The first one looks pretty nice to me and the second one has to pass s …
0
votes
1answer
206 views

Using grails to connect to a flex web service…

I have a grails application that will be rendering an html page into a pdf file and I have a flex application sitting on a server that is going to accept REST parameters and constr …
1
vote
1answer
90 views

lightweight RESTful PHP server

I want to write an extremely lightweight PHP server which handles data requests from remote clients. The data returned is tabular (like that of data read from a CSV file or a datab …
0
votes
0answers
36 views

Debugging RESTful WCF Service

I am attempting to debug a RESTful WCF service I've created using a web browser as my client. Initially things go well however after stopping the debug session and making some chan …
1
vote
2answers
115 views

Online RESTful Web Service Demo

I am looking for online RESTful Web Service Demo and not good examples of RESTful API. Are the following links the only available demos? http://mooshup.com/mashup.jsp?author=kei …
0
votes
2answers
101 views

Web server that does not allow PUT and DELETE?

I am trying to implement a REST protocol and have realized in trying to debug that my webserver is disallowing the PUT request. I have tested and confirmed this further by running …
1
vote
5answers
127 views

Is there a webservice/API to grab a screenshot of another website?

I'm writing a webapp where I want to display screenshots of other websites. Is there any free service out there that does this? I'm thinking something RESTful, for example if I w …
5
votes
3answers
855 views

Which to choose: ASP.NET MVC or RESTful WCF?

With ASP.NET MVC, it is common to have AJAX code(e.g. jQuery) to invoke web service from server to without page refreshing. It's natural to make web service RESTful. It seems that …
2
votes
2answers
158 views

Can I use WCF Starter Kit HttpClient with confidence?

I would like to start using the WCF Rest Starter Kit's HttpClient to build clients for my Restful WCF services and I was wondering... If anyone is currently experience any proble …
3
votes
5answers
139 views

Restful web services

What do you need to avoid in setting up a Restful interface to make sure you have not turned it into an RPC?
2
votes
3answers
483 views

Unresolved Host Exception Android

I'm trying to call a RESTful web service from an Android application using the following method: HttpHost target = new HttpHost("http://" + ServiceWrapper.SERVER_HOST,Serv …
0
votes
3answers
285 views

Can I call REST web services from Windows Mobile app

Hello, I would like to build a simple REST web service (using Ruby on Rails). However, I would like to be able to call this service from a Windows mobile app. Is that possible? or …
1
vote
2answers
251 views

how to pass complex queries in rest???

If I understand correctly, in rest style, every query (that is, every action on every resource that does not modifies the resource's state) should be enconded in the querystring, u …
0
votes
2answers
179 views

How can I send date object from Adobe Flex to RESTful rails?

Hello, I'm working on an Adobe AIR project that use the Ruby on Rails as RESTful web service as the back end. I have found a lot of examples that show how can I send the data to o …
0
votes
2answers
357 views

Why is this WCF service not recognizing the UriTemplate parameter?

I've created the following RESTful WCF service, which works just fine when running it in VS. [OperationContract] [WebGet(ResponseFormat = WebMessageFormat.Json, UriTemplate …