0
votes
1answer
121 views
Connect from iPhone to RESTfull WCF Service with Self Signed Certificate
Hi Guys,
I have an iPhone application which has to communicate with a RESTfull WCF service over a secured connection(HTTPS) with a self signed certificate.
The WCF service returns XML which is …
1
vote
2answers
132 views
RESTFul and Hibernate
Is there a tool that can create RESTFul java services from classes generated with hibernate tool?
1
vote
6answers
81 views
Need a better language/frameworks doing RESTful webservices
I'm developing out replacements for our company's web service stack.
The current stack was developed using SOAP and had some REST endpoints manually hacked in. It's a maintenance nightmare.
I can …
0
votes
1answer
14 views
CXF JAX-RS is causing BusException
After adding a RESTFul service using Apache CXF to my Spring (and Wicket) project I get the following exception:
org.apache.cxf.BusException: No binding factory for namespace …
1
vote
1answer
52 views
Rails RESTful Routing With ‘/’ and Slugs
I am looking to do something similar a wordpress slug where I have a URL like this while maintaining RESTful routing:
http://foo.com/blog/2009/12/04/article-title
The reason I am interested in keep …
3
votes
3answers
46 views
PHP using CURL: is there a way to emulate a cookie instead of saving it to a file?
I access a REST api service that utilizes a variable called session_id. The API calls for this to be stored in a cookie and I accomplish this as follows:
$ch = curl_init(); // initialize curl …
1
vote
2answers
55 views
Java RESTful class/library support without annotations?
Hi there,
I am looking for a simple Java library (having a friendly license; Apache2, MIT, BSD) that I could use for parsing http RESTful requests. I will be taking care of representing the resources …
0
votes
1answer
20 views
RESTful services and
Hello.
I have just read Resource-Oriented Architecture: The Rest of REST. The reasoning behind content negotiation is compelling, but there's one thing I sometimes need, which seems to be impossible …
7
votes
4answers
114 views
RESTful PUT and DELETE and firewalls
In the classic "RESTful Web Services" book (O'Reilly, ISBN 978-0-596-52926-0) it says on page 251 "Some firewalls block HTTP PUT and DELETE but not POST."
Is this still true?
If it's true I have to …
0
votes
2answers
234 views
Securing WCF REST service for use with iPhone application
Hi all,
I've a created a simple WCF REST service which I intend to consume from an iPhone application.
The service works fine but now I'd like to secure it.
In my test enviornment (IIS on Windows 7) …
0
votes
0answers
86 views
Extjs to call a RESTful webservice
Hello,
I am trying to make a RESTful webservice call using Extjs. Below is the code i am using:
Ext.Ajax.request({ url: incomingURL ,
method: 'POST',
params: {param1:p1, param2:p2},
…
2
votes
3answers
106 views
Does anyone know of an example of a RESTful client that follows the HATEOAS principle?
So by now I'm getting the point that we should all be implenting our RESTful services providing representations that enable clients to follow the HATEOAS principle. And whilst it all makes good sense …
0
votes
1answer
35 views
How to develop authentication with resteasy?
I'm making small web service(1) and I decided to use resteasy to make it. But I need to know what would be best practise to develop authentication with resteasy. And what kind of responses webservice …
3
votes
6answers
312 views
How to restrict JSON access ?
I have a web application that pulls data from my newly created JSON api.
My static HTML pages dynamically calls the JSON api via JavaScript from the static HTML page.
How do I restrict access to my …
1
vote
0answers
18 views
How to customize response structure when working with Axis2 REST web services?
Hi
I'm using Axis2 1.4.1 to expose RESTful web services. I need to return xml structure (or any other for example ATOM xml or RSS xml or JSON structure) of my choosing. Axis2 out of the box returns …
