名前と値のペアを本文としてJerseyのPOSTRESTサービスに渡すにはどうすればよいですか。ApacheCommonsPostMethodを使用した以下のコードに似たもの
final PostMethod post = new PostMethod(url);
post.setRequestBody(new NameValuePair[] {
new NameValuePair("loginId", userId),
new NameValuePair("logonPassword", password),
new NameValuePair("signature", signature),
new NameValuePair("timestamp", timestamp),
new NameValuePair("sourceSiteId", sourceSiteId) });
この呼び出しをアプリケーションに移植しています。現在の呼び出しは、apachecommonsPostMethodを使用しています。私のアプリケーションでは、Jerseyを使用しました。だから私はapacheの代わりにジャージのクラス/機能を使いたいです。