Google chrome 拡張ツールSimple REST Clientを使用して Web サービスをテストしています。複数のパラメータを指定して post メソッドを呼び出す方法。インターネットで検索しましたが、このアプリに関する十分なドキュメントがありません。
POST メソッドの例
@POST
@Path("createcategory")
@Consumes("application/x-www-form-urlencoded")
@Produces(MediaType.APPLICATION_XML)
public void CreateCategory(@FormParam("cname") String cname,@FormParam("cdescription") String cdescription)
{
CategoriesBO category = new CategoriesBO();
category.setCategoryName(cname);
category.setCategoryDescription(cdescription);
CategoriesEntityHandler handler = new CategoriesEntityHandler();
try {
category = handler.createCategory(category);
} catch (Exception e) {
}
}