2013-02-13 3 views
-1

Je suis en mesure d'exécuter avec succès requête GET au service, maintenant je veux savoir comment exécuter POST, PUT, commande DELETELa consommation de repos webservices en utilisant REST client Mozzilla

par client Rest i exécutais commande OPTION et je suis arrivé ce résultat

<application> 
<doc jersey:generatedBy="Jersey: 1.17 01/17/2013 04:27 PM"/> 
<grammars> 
<include href= "http://localhost:8081/de.vogella.jersey.todo/rest/application.wadl/xsd0.xsd" > 
<doc title="Generated" xml:lang="en"/> 
</include> 
</grammars> 
<resources base="http://localhost:8081/de.vogella.jersey.todo/rest/"> 
<resource path="todos"> 
<method id="getTodosBrowser" name="GET"> 
<response> 
<ns2:representation element="todo" mediaType="text/xml"/> 
</response> 
</method> 
<method id="getTodos" name="GET"> 
<response> 
<ns2:representation element="todo" mediaType="application/xml"/> 
<ns2:representation element="todo" mediaType="application/json"/> 
</response> 
</method> 
<method id="newTodo" name="POST"> 
<request> 
<representation mediaType="application/x-www-form-urlencoded"> 
<param name="id" style="query" type="xs:string"/> 
<param name="summary" style="query" type="xs:string"/> 
<param name="description" style="query" type="xs:string"/> 
</representation> 
</request> 
</method> 
<resource path="count"> 
<method id="getCount" name="GET"> 
<response> 
<representation mediaType="text/plain"/> 
</response> 
</method> 
</resource> 
<resource path="{todo}"> 
<param name="todo" style="template" type="xs:string"/> 
<method id="getTodo" name="GET"> 
<response> 
<ns2:representation element="todo" mediaType="application/xml"/> 
<ns2:representation element="todo" mediaType="application/json"/> 
</response> 
</method> 
<method id="getTodoHTML" name="GET"> 
<response> 
<ns2:representation element="todo" mediaType="text/xml"/> 
</response> 
</method> 
<method id="putTodo" name="PUT"> 
<request> 
<representation mediaType="application/xml"/> 
</request> 
<response> 
<representation mediaType="*/*"/> 
</response> 
</method> 
<method id="deleteTodo" name="DELETE"/> 
</resource> 
</resource> 
</resources> 
</application> 

peut maintenant vous s'il vous plaît me dire comment exécuter PUT, POST, DELETE commant? que dois-je écrire dans le corps et l'url?

MERCI BEAUCOUP

Répondre

0

Je ne sais pas comment vous êtes en train de faire des demandes, bien que vous pourriez donner mon plugin https://github.com/jpillora/jquery.rest essayer. Publiez un problème dans l'onglet Problèmes si vous rencontrez des problèmes.

Questions connexes