Axis web service visible on choosen port
----------------------------------------

         Key: AXIS-2513
         URL: http://issues.apache.org/jira/browse/AXIS-2513
     Project: Apache Axis
        Type: Improvement

  Components: Basic Architecture  
    Versions: 1.4    
    Reporter: Anna Krajewska


It would be vary useful if it was possible to publish axis web service on one 
or more choosen ports. I implement such an functionality in AxisServlet class 
and it works. All you need to do is add "port" parameter to the web.xml 
configuration file so that it looks like this:

<servlet>
  <servlet-name>AxisServlet</servlet-name> 
  <display-name>Apache-Axis Servlet</display-name> 
  <servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class> 
<init-param>
  <param-name>port</param-name> 
  <param-value>8443;8343</param-value> 
</init-param>
</servlet>

This way if axis works on tomcat server that has three ports opened: 8443, 
8343, 8080 - axis web service described with web file above is visible only on 
two of them: 8443 and 8343.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to