无法通过J2Bugzilla向Bugzilla报告新错误

时间:2015-02-11 09:54:32

标签: java api exception bugzilla issue-tracking

我尝试搜索这个主题,但似乎没有任何内容可以解决我的确切问题。我有一个java和jsp程序,我希望能够向我的Bugzilla安装报告错误。我一直在测试我对Bugzilla垃圾填埋场创建的方法,但我无法让它发挥作用。

我的问题是我已经尝试了所有示例代码,但我仍然遇到了同样的错误,这似乎源于executeMethod()。

以下是我调用java类方法的jsp页面示例:

<jsp:useBean id="error" class="bug.TestClass" scope="session"/> <% String result = error.reportBug("error"); out.print(result);%>

Java方法,我已经阻止了Bugzillla垃圾填埋场的用户名和密码,但我已经检查过它们是正确的:

    public static String reportBug(String bugError) { 
    try {
        BugzillaConnector conn = new BugzillaConnector();
        conn.connectTo("http://landfill.bugzilla.org/");
        BugzillaMethod logIn = new LogIn ("*****@hotmail.com", "****");
        conn.executeMethod(logIn);

        BugFactory factory = new BugFactory();
        Bug bug = factory.newBug()
        .setOperatingSystem("WINDOWS")
        .setPlatform("PC")
        .setPriority("P1")
        .setProduct("FoodReplicator")
        .setComponent("Salt")
        .setSummary(bugError)
        .setVersion("1.0")
        .setDescription("It doesn't work.")
        .createBug();

         ReportBug report = new ReportBug(bug);
         conn.executeMethod(report);
         int id = report.getID();

         result += "Successful";

    } catch (Exception e) {
       result = e.toString();
    }
    return result;
}

这是我打开jsp页面时遇到的错误:

com.j2bugzilla.base.BugzillaException: An unknown error was encountered; fault code: 0

我已经为此工作了好几天,所以任何帮助都会非常感激。感谢

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。然后我将j2bugzilla jar从2.0更新到2.2.1。然后就行了。