Hi Jean-Christophe, Could you describe how you used the *Info classes? Did you extend WadlServerResource or did you build an ApplicationInfo by hand in a regular resource?
Otherwise, the XSLT stylesheet provided requires a recent version of Xalan including EXSLT support. See this method for additional info: http://www.restlet.org/documentation/snapshot/jse/ext/org/restlet/ext/wadl/WadlRepresentation.html#getHtmlRepresentation%28%29 Best regards, Jerome Le 02/06/2010 00:50, Jean-Christophe Malapert a écrit : > Hello, > > I spend a couple of hours to try the WADL representation in RESTLET (the > RC3 and RC4). I cannot manage to get a whole WADL representation. In my > code, I described : > - the uri of the resource > - the mehods applied for each resource > - the parameter applied for each resource > - the returned status > > Basically, I have used MethodInfo, RepresentationInfo, ParameterInfo and > FaultInfo objects. When I ask for the WADL, I get only something like that : > ... > <resources> > <resource path="upload"/> > <resource path="{uuid}/read"/> > </resources> > > But I cannot get anything about the others parameter I described : > RepresentationInfo, ParameterInfo, MethodInfo > > > > Then, I generated a fake WADL by hand : > <?xml version="1.0"?> > <application xmlns="http://wadl.dev.java.net/2009/02"> > <resources base="http://localhost:8180/files"> > <resource path="private"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="private/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="test"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="test/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="myExperiment"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="myExperiment/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="public1"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="public1/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="public2"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="public2/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="busoc"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="busoc/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="redirectOutband"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="redirectOutband/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="%7Brr%7D"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="%7Brr%7D/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="toto"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="toto/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="%7Brr%7D"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="%7Brr%7D/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="%7Btt%7D"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > <resource path="%7Btt%7D/{id}"> > <method name="GET"> > <response status="200"> > <representation mediaType="text/html"/> > <representation mediaType="text/uri-list"/> > <representation mediaType="application/json"/> > </response> > </method> > </resource> > </resources> > </application> > > > and I tried to convert the WADL using the TransformRepresentation > object. For this,I used the XSLT included in the WADL extension. Only > one part of the WADL is generated : > .... > <a href="#resources">Resources</a> > // Here, a lot of empty lines > </li> > <li> > <a href="#representations">Representations</a> > <ul></ul> > </li> > </ul> > <h2 id="resources">Resources</h2> > // Here a lot empty lines > <h2 id="representations">Representations</h2> > </body> > </html> > > > I try to apply the XSL on the WADL using oxygen and the tranformation > works : > ... > <body> > <h1>My Web Application</h1> > <ul> > <li><a href="#resources">Resources</a><ul> > <li><a href="#d1e2">http://localhost:8180/files/private</a></li> > <li><a href="#d1e8">http://localhost:8180/files/private/{id}</a></li> > <li><a href="#d1e14">http://localhost:8180/files/test</a></li> > <li><a href="#d1e20">http://localhost:8180/files/test/{id}</a></li> > <li><a href="#d1e26">http://localhost:8180/files/myExperiment</a></li> > <li><a href="#d1e32">http://localhost:8180/files/myExperiment/{id}</a></li> > <li><a href="#d1e38">http://localhost:8180/files/public1</a></li> > <li><a href="#d1e44">http://localhost:8180/files/public1/{id}</a></li> > <li><a href="#d1e50">http://localhost:8180/files/public2</a></li> > <li><a href="#d1e56">http://localhost:8180/files/public2/{id}</a></li> > <li><a href="#d1e62">http://localhost:8180/files/busoc</a></li> > <li><a href="#d1e68">http://localhost:8180/files/busoc/{id}</a></li> > <li><a href="#d1e74">http://localhost:8180/files/redirectOutband</a></li> > <li><a > href="#d1e80">http://localhost:8180/files/redirectOutband/{id}</a></li> > <li><a href="#d1e86">http://localhost:8180/files/%7Brr%7D</a></li> > <li><a href="#d1e92">http://localhost:8180/files/%7Brr%7D/{id}</a></li> > <li><a href="#d1e98">http://localhost:8180/files/toto</a></li> > <li><a href="#d1e104">http://localhost:8180/files/toto/{id}</a></li> > <li><a href="#d1e110">http://localhost:8180/files/%7Brr%7D</a></li> > <li><a href="#d1e116">http://localhost:8180/files/%7Brr%7D/{id}</a></li> > <li><a href="#d1e122">http://localhost:8180/files/%7Btt%7D</a></li> > <li><a href="#d1e128">http://localhost:8180/files/%7Btt%7D/{id}</a></li> > </ul> > </li> > <li><a href="#representations">Representations</a><ul> > <li><a href="#d1e5">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e6">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e7">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e11">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e12">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e13">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e17">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e18">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e19">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e23">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e24">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e25">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e29">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e30">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e31">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e35">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e36">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e37">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e41">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e42">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e43">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e47">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e48">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e49">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e53">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e54">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e55">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e59">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e60">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e61">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e65">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e66">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e67">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e71">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e72">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e73">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e77">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e78">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e79">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e83">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e84">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e85">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e89">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e90">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e91">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e95">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e96">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e97">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e101">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e102">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e103">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e107">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e108">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e109">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e113">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e114">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e115">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e119">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e120">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e121">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e125">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e126">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e127">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e131">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e132">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e133">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </li> > </ul> > <h2 id="resources">Resources</h2> > <div class="resource"> > <h3 id="d1e2">/private</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e3">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e5">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e6">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e7">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e8">/private/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e9">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e11">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e12">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e13">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e14">/test</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e15">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e17">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e18">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e19">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e20">/test/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e21">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e23">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e24">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e25">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e26">/myExperiment</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e27">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e29">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e30">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e31">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e32">/myExperiment/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e33">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e35">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e36">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e37">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e38">/public1</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e39">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e41">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e42">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e43">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e44">/public1/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e45">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e47">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e48">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e49">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e50">/public2</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e51">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e53">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e54">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e55">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e56">/public2/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e57">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e59">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e60">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e61">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e62">/busoc</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e63">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e65">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e66">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e67">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e68">/busoc/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e69">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e71">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e72">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e73">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e74">/redirectOutband</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e75">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e77">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e78">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e79">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e80">/redirectOutband/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e81">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e83">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e84">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e85">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e86">/%7Brr%7D</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e87">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e89">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e90">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e91">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e92">/%7Brr%7D/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e93">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e95">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e96">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e97">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e98">/toto</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e99">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e101">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e102">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e103">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e104">/toto/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e105">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e107">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e108">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e109">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e110">/%7Brr%7D</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e111">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e113">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e114">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e115">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e116">/%7Brr%7D/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e117">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e119">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e120">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e121">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e122">/%7Btt%7D</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e123">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e125">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e126">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e127">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <div class="resource"> > <h3 id="d1e128">/%7Btt%7D/{id}</h3> > <h6>Methods</h6> > <div class="methods"> > <div class="method"> > <h4 id="d1e129">GET</h4> > <p><em>available response representations:</em></p> > <ul> > <li><a href="#d1e131">text/html<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e132">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > <li><a href="#d1e133">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></a></li> > </ul> > </div> > </div> > </div> > <h2 id="representations">Representations</h2> > <h3 id="d1e5">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e6">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e7">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e11">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e12">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e13">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e17">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e18">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e19">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e23">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e24">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e25">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e29">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e30">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e31">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e35">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e36">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e37">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e41">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e42">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e43">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e47">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e48">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e49">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e53">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e54">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e55">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e59">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e60">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e61">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e65">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e66">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e67">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e71">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e72">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e73">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e77">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e78">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e79">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e83">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e84">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e85">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e89">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e90">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e91">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e95">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e96">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e97">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e101">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e102">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e103">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e107">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e108">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e109">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e113">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e114">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e115">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e119">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e120">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e121">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e125">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e126">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e127">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e131">text/html<abbr title="{http://wadl.dev.java.net/2009/02} > "></abbr></h3> > <h3 id="d1e132">text/uri-list<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > <h3 id="d1e133">application/json<abbr > title="{http://wadl.dev.java.net/2009/02} "></abbr></h3> > </body> > </html> > > Does anybody as a similar problem with WADL extension and > TransformRepresentation object ? > > > Regards, > J-Christophe ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2625759

