i am login in jira from this code now i want to post bug in jira after login
HttpPost httpost = new HttpPost("https://id.atlassian.com/login?continue=https://jira.atlassian.com/secure/Dashboard.jspa&application=jac");
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("username", "sxxxxxxx@live.com"));
nvps.add(new BasicNameValuePair("password", "xxxxxxxxxn"));
nvps.add(new BasicNameValuePair("csrfToken", xcrfTokenVal));
nvps.add(new BasicNameValuePair("continue", "https://jira.atlassian.com/secure/Dashboard.jsp"));
nvps.add(new BasicNameValuePair("application", "jac"));
httpost.setEntity(new UrlEncodedFormEntity(nvps));
response = httpclient.execute(httpost);
System.out.println("Response " + response.toString());
entity = response.getEntity();
//System.out.println("Double check we've got right page " + EntityUtils.toString(entity));
System.out.println("Response from : " + response.getStatusLine());
After login i want to post bug from our tool to jira.... guys help me...