Index: j2eeserver/ant/antsrc/org/netbeans/modules/j2ee/ant/Deploy.java =================================================================== RCS file: /cvs/j2eeserver/ant/antsrc/org/netbeans/modules/j2ee/ant/Deploy.java,v --- j2eeserver/ant/antsrc/org/netbeans/modules/j2ee/ant/Deploy.java 1 Jul 2006 05:16:04 -0000 1.19.22.1 +++ j2eeserver/ant/antsrc/org/netbeans/modules/j2ee/ant/Deploy.java 19 Aug 2006 22:52:02 -0000 @@ -90,16 +90,20 @@ String h = sdi.getHost(); String transport = sdi.getTransport(); String address = ""; //NOI18N + String addressClient = ""; //NOI18N if (transport.equals(ServerDebugInfo.TRANSPORT_SHMEM)) { address = sdi.getShmemName(); + addressClient = address + "Client"; } else { address = Integer.toString(sdi.getPort()); + addressClient = Integer.toString(sdi.getPort() + 1); } getProject().setProperty("jpda.transport", transport); getProject().setProperty("jpda.host", h); getProject().setProperty("jpda.address", address); + getProject().setProperty("jpda.address.appclient", addressClient); } } catch (Exception ex) { throw new BuildException(ex);