public static SipTester create(String user) throws Exception
{
SipClient client = getOrCreate(DEFAULT_PORT);
SipTester tester = new SipTester(client.createSipURI(user, client.getContact().getHost()));
client.addAgent(tester);
return tester;
}
protected static SipClient getOrCreate(int port) throws Exception