On Fri, Mar 12, 2010 at 11:53 AM, Aidan Diffey <[email protected]> wrote: > dataConnFactory.setActiveLocalPort(10120);
This setting only affects the local port on which the server will bind when connecting to the users port. Note that in active connections, the clients listens on a port to which the server will connect. So, this setting is of no use in your case. Instead, you should look into setting the allowed passive port. And, note that in the current releases, we only support one active user per passive port. So, if you only expose one passive port, only one user will be able to use a data connection at any given time. For 1.1.0, we plan to support multiple users per passive port. /niklas
