0
votes
3answers
25 views
ASP.net web form - post data to a controller in an MVC site
This may be a stupid question, but anyway... I have an MVC site and a legacy ASP.net web forms site. I have a controller action on my MVC site that I would like to (programatically) POST to from my …
3
votes
3answers
62 views
Are RESTful Web services right way for re-using infrastructure?
There is one controversy I see in using Web APIs (RESTful service) to access remote infrastracture. I would be grateful, if you could comment it. The recommendation coming from the article "RESTful …
2
votes
4answers
93 views
Does a MySQL, PHP, JSON framework exist?
I'd like to query a MySQL database via a RESTful service with the middleware being PHP. I'd like the output to be JSON. I'm a beginner in those areas. Are there any frameworks or scripts that can do …
0
votes
1answer
14 views
Is WebProtocolException included in .net 4.0?
The WCF starter kit has WebProtocolException to throw exceptions in WCF. Is this included in .net 4.0?
0
votes
1answer
64 views
How to make this concept RESTful?
I have a controller dealing with sending SMS Messages, and it's set up as a default resource. Now, business requirements have changed and we want to offer the user three different ways of sending the …
0
votes
1answer
21 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
2answers
87 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
55 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
56 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
22 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
117 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 …
1
vote
6answers
89 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
0answers
105 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},
…
0
votes
1answer
50 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 …
1
vote
0answers
23 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 …
