|
From: Marcelo de B. L. <le...@pa...> - 2012-04-11 02:56:35
|
Hi,
i'm trying to retrieve the users from a project, but i got the atached
error messages.
I'm using java, and this is my test method:
public static void main(String[] args) throws Exception {
String user = "leiras";
String pwd = "leiras";
URL url = new
URL("http://localhost/mantis/api/soap/mantisconnect.php");
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(url);
Object ret = call.invoke("mc_project_get_users", new Object[]
{user, pwd, 29, 90});
System.out.println(ret);
}
My mantis version is 1.2.9.
Am i doing something wrong?
Thanks.
Leiras
|