Tagged Questions
6
votes
3answers
2k views
How do I generate C# code from WADL files?
I am looking for a code generator than can generate C# code to access RESTful web services described by WADL files in a way similar to how wadl2java works.
Doing som searching I came across the ...
5
votes
2answers
931 views
Difference between WSDL 2.0, WADL & XRD?
WSDL 2.0: www.w3.org/TR/wsdl20/
WADL www.w3.org/Submission/wadl/
XRD www.oasis-open.org/committees/download.php/35274/xrd-1.0-wd10.html
All three can be used a REST API descriptors. What's the ...
4
votes
1answer
218 views
RESTful service description
From what I understand, I need to use WADL to describe a RESTful web service. Still, I have read many answers in relevant posts, where users are strongly opposed the use of WADL.
What are the ...
4
votes
5answers
947 views
Should I describe REST services in a machine readable format?
Most REST interfaces I see are described with a simple web page describing the URL, the method, accepted input and returned result. For example the Amazon S3 or the Twitter API documentation.
But why ...
2
votes
3answers
164 views
REST web service WSDL?
I am implementing a web service and I have implemented both a REST and SOAP version to see which suited my needs.I have decided to choose REST because of its simplicity and that I will probably be ...
1
vote
1answer
354 views
Is it possible for Spring RESTful services to privde a WADL or something similar?
Situation:
We are planning to build a set of new services a long side a set of old SOAP (Spring, apache CXF) web services. Our customers are used to being able to use ?wsdl to get a wsdl describing a ...
1
vote
1answer
285 views
Is it possible to use WSDL with a REST webservice?
I am new to the area of web-services. Is it possible to use WSDL with REST bindings? Or should I use WADL?
1
vote
1answer
345 views
creating stub files using a wadl file in j2me
Hello
i want to create stubs using a WADL web service.
i know how to create stubs from wsdl file using stub generator, wscompile
even from netbeans j2me web service client
but i have a WADL file ...
1
vote
2answers
1k views
Restful service in .NET with WADL instead of WSDL
I used WCF to create a restful web service in .NET, by means of a .svc file. The web application automatically produces a WSDL file. AFAIK, the WADL is more natural for a restul web service.
How ...
1
vote
1answer
444 views
Documenting POST parameters with WADL
Looking at the current version of the WADL proposal, I couldn't quite figure out how to document POST request parameters (with application/x-www-form-urlencoded encoding).
I've seen something like ...
0
votes
0answers
96 views
“Cannot access WADL” message occurs when ever i try to test RESTful webservice?
when I test service, i get Cannot access WADL message on my IE9 browser and on Firefox 5, I don't get this error. But in both case i can't access left pane where the services should be listed. What is ...
0
votes
1answer
529 views
How to wadl2java these days?
I have real difficulty finding commandline tool to convert WADL to java. No matter how much I try to google, follow blogs or java.net doc, there is no real download link. (links are broken or ...
0
votes
1answer
685 views
Can I get application.wadl file using RESTeasy?
I need get WADL file for RESTful service. I know that in case using jersey it's available as http://localhost:8080/application.wadl. But I use RESTeasy.
Can I do the same in my framework case?
...
0
votes
1answer
110 views
Representing arbitrary hierarchies in WADL
I am modeling a REST API and part of the API will represent resources that are
organized into an arbitrary hierarchy of nodes with values and sub-nodes (kind
of like a file system or the windows ...