You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Simon McMahon <si...@health.qld.gov.au> on 2005/12/15 06:49:07 UTC

Running Axis (1.3) through port other than 8080

Hi,

Sorry if this is an obvious one but I couldn't find how to get Axis to
work via port 80. Our firewall doesn't let anything else through.

Thanks,

Simon.


Simon McMahon

Work: (07) 31311420
Mobile: (043) 2294180



*****************************************************************
This email, including any attachments sent with it, is
confidential and for the sole use of the intended recipient(s).
This confidentiality is not waived or lost, if you receive it and
you are not the intended recipient(s), or if it is transmitted/
received in error.

Any unauthorised use, alteration, disclosure, distribution or
review of this email is strictly prohibited.  The information
contained in this email, including any attachment sent with
it, may be subject to a statutory duty of confidentiality if it
relates to health service matters.

If you are not the intended recipient(s), or if you have
received this email in error, you are asked to immediately
notify the sender by telephone collect on Australia
+61 1800 198 175 or by return email.  You should also
delete this email, and any copies, from your computer
system network and destroy any hard copies produced.

If not an intended recipient of this email, you must not copy,
distribute or take any action(s) that relies on it; any form of
disclosure, modification, distribution and/or publication of this
email is also prohibited.

Although Queensland Health takes all reasonable steps to
ensure this email does not contain malicious software,
Queensland Health does not accept responsibility for the
consequences if any person's computer inadvertently suffers
any disruption to services, loss of information, harm or is
infected with a virus, other malicious computer programme or
code that may occur as a consequence of receiving this
email.

Unless stated otherwise, this email represents only the views
of the sender and not the views of the Queensland Government.
****************************************************************


Re: Running Axis (1.3) through port other than 8080

Posted by Clarence Dahlin <cl...@gmail.com>.
If you use Axis together with Tomcat, you could set this port in the
server.xml configuration file.

For my installation; C:\Program Files\Apache Group\Tomcat
4.1.31\conf\server.xml

Look for something like
<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8081 -->
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
               port="8484"
               minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="8443"
               acceptCount="100" debug="0" connectionTimeout="20000"
               useURIValidationHack="false" disableUploadTimeout="true" />

Change the port and restart Tomcat.

/ Clarence

On 12/15/05, Simon McMahon <si...@health.qld.gov.au> wrote:
>
> Hi,
>
> Sorry if this is an obvious one but I couldn't find how to get Axis to
> work via port 80. Our firewall doesn't let anything else through.
>
> Thanks,
>
> Simon.
>
>
> Simon McMahon
>
> Work: (07) 31311420
> Mobile: (043) 2294180
>
>
>
> *****************************************************************
> This email, including any attachments sent with it, is
> confidential and for the sole use of the intended recipient(s).
> This confidentiality is not waived or lost, if you receive it and
> you are not the intended recipient(s), or if it is transmitted/
> received in error.
>
> Any unauthorised use, alteration, disclosure, distribution or
> review of this email is strictly prohibited.  The information
> contained in this email, including any attachment sent with
> it, may be subject to a statutory duty of confidentiality if it
> relates to health service matters.
>
> If you are not the intended recipient(s), or if you have
> received this email in error, you are asked to immediately
> notify the sender by telephone collect on Australia
> +61 1800 198 175 or by return email.  You should also
> delete this email, and any copies, from your computer
> system network and destroy any hard copies produced.
>
> If not an intended recipient of this email, you must not copy,
> distribute or take any action(s) that relies on it; any form of
> disclosure, modification, distribution and/or publication of this
> email is also prohibited.
>
> Although Queensland Health takes all reasonable steps to
> ensure this email does not contain malicious software,
> Queensland Health does not accept responsibility for the
> consequences if any person's computer inadvertently suffers
> any disruption to services, loss of information, harm or is
> infected with a virus, other malicious computer programme or
> code that may occur as a consequence of receiving this
> email.
>
> Unless stated otherwise, this email represents only the views
> of the sender and not the views of the Queensland Government.
> ****************************************************************
>
>

Re: Running Axis (1.3) through port other than 8080

Posted by jay limfueco <ja...@gmail.com>.
Hi,

Hi we're using apache axis for our web service and we've noticed that the
memory consmption kept
on increasing to the point where it consumed most of the available memory. I
was wondering if axis has some sort of caching or anything that might have
caused this to happen.

We've tried versions 1.1 and 1.3 and still got the same results.



regards,
Jay

Re: Running Axis (1.3) through port other than 8080

Posted by Davanum Srinivas <da...@gmail.com>.
Simon,

My recommendation is to front end the web service (running on tomcat)
with Apache HTTP 2.X (or even 1.X) for production purposes.

thanks,
dims

On 12/15/05, Simon McMahon <si...@health.qld.gov.au> wrote:
> Hi,
>
> Sorry if this is an obvious one but I couldn't find how to get Axis to
> work via port 80. Our firewall doesn't let anything else through.
>
> Thanks,
>
> Simon.
>
>
> Simon McMahon
>
> Work: (07) 31311420
> Mobile: (043) 2294180
>
>
>
> *****************************************************************
> This email, including any attachments sent with it, is
> confidential and for the sole use of the intended recipient(s).
> This confidentiality is not waived or lost, if you receive it and
> you are not the intended recipient(s), or if it is transmitted/
> received in error.
>
> Any unauthorised use, alteration, disclosure, distribution or
> review of this email is strictly prohibited.  The information
> contained in this email, including any attachment sent with
> it, may be subject to a statutory duty of confidentiality if it
> relates to health service matters.
>
> If you are not the intended recipient(s), or if you have
> received this email in error, you are asked to immediately
> notify the sender by telephone collect on Australia
> +61 1800 198 175 or by return email.  You should also
> delete this email, and any copies, from your computer
> system network and destroy any hard copies produced.
>
> If not an intended recipient of this email, you must not copy,
> distribute or take any action(s) that relies on it; any form of
> disclosure, modification, distribution and/or publication of this
> email is also prohibited.
>
> Although Queensland Health takes all reasonable steps to
> ensure this email does not contain malicious software,
> Queensland Health does not accept responsibility for the
> consequences if any person's computer inadvertently suffers
> any disruption to services, loss of information, harm or is
> infected with a virus, other malicious computer programme or
> code that may occur as a consequence of receiving this
> email.
>
> Unless stated otherwise, this email represents only the views
> of the sender and not the views of the Queensland Government.
> ****************************************************************
>
>


--
Davanum Srinivas : http://wso2.com/blogs/