Using the SOAP Monitor with server listening adress & port number -----------------------------------------------------------------
Key: AXIS2-4500 URL: https://issues.apache.org/jira/browse/AXIS2-4500 Project: Axis 2.0 (Axis2) Issue Type: Improvement Components: Tools Reporter: Bhushan Khardekar Priority: Minor I have faced port binding exception on port 5001 when I have tried to deploy Soap monitor on more than one domain sharing same Unix box. We have number of weblogic domains sharing same Unix box, each weblogic domain is identified by unique IP address. Soap monitor creates a socket connection on port 5001 on Unix box level which doesn't allow any other domain to use the same port. Solution : org.apache.axis2.soapmonitor.servlet.SOAPMonitorService class uses method ServerSocket(Integer.parseInt(port)) if we can change that method to ServerSocket(int port, int backlog, InetAddress bindAddr) we can specify Server IP address in the web.xml .It will allow number of domains deployed on same Unix box to use SOPA monitor service. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.