> I can use JSP and Servlet for that. you >must< use JSP or servlet with JamesAdmin.java if you want to configure James in the browser or a java program. The interface must be developed in Java.
>Could you please help me out further > regarding this issue(james admin). yep, but do you know java ? Is your server can run JSP and Servlet with a servlet container ? JamesAdmin contains some methods for admin James. This is the same command in the telnet. example (in java) : // use default root name and password JamesAdmin ja = new JamesAdmin(); or // use specific server name, number of the port, root name and password JamesAdmin ja = new JamesAdmin(String server, int port, String uid, String pwd); and // add an user ! easy no :) ja.addUser(String userName, String password); ... You can have all methods in the JamesAdmin.java file ! and how use them. (method's name, which arguments, result...) > Thanks you're welcome ! > Srinivas Bicnic -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
