> -------------ERROR_------------- > File "tester.py", line 10, in <module> > com.JPypeTest.main("arg") > RuntimeError: No matching overloads found. at src/native/common/ > jp_method.cpp:121 > ----------END ERROR-------------
I haven't used jpype, but the signature for java main functions is public static void main (String [] args) So try com.JPypeTest.main(["arg"]) Note the addition of square brackets to create a *list* of arguments, which presumably jpype will transform into a java String[]. Alan. -- http://mail.python.org/mailman/listinfo/python-list