Sorry, I guess I had not understood your question.

In your original question you talk about "connector class" and
"server.xml".  Are these within Axis or Tomcat or some other servlet
container?

I don't know about Axis, but the Apache SOAP server software runs as
servlets, which means the servlet container is what is actually
listening on a socket.  As such, the port on which the Apache SOAP
services are listening is determined by the way in which the container
is configured and the way in which Apache SOAP is deployed within the
container.

I mostly run within Tomcat.  I use the standalone service, with a single
connector, the one supplied in server.xml by default:

    <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector
className="org.apache.catalina.connector.http.HttpConnector"
               port="8080" minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="8443"
               acceptCount="10" debug="0" connectionTimeout="60000"/>

The service has one engine, again the default:

    <Engine name="Standalone" defaultHost="localhost" debug="0">

with one host (the default):

      <Host name="localhost" debug="0" appBase="webapps"
unpackWARs="true">

I drop soap.war into the webapps subdirectory, and Apache SOAP is ready
to go at, for example, http://localhost:8080/soap/servlet/rpcrouter.

Through Tomcat configuration, I could do things much more complex, of
course, such as having different instances of Apache SOAP listening on
different ports.  In any case, the configuration is purely Tomcat, with
no dependence on Apache SOAP.

Scott Nichol

----- Original Message -----
From: "Martin Gainty" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 13, 2003 3:26 PM
Subject: Re: SOAP Port specification


> Scott:
>
> I can Specify the Port used in the Axis SOAP implementation without
incident
> I need to learn how to configure the port for the Apache SOAP Server
?!?
>
> Martin Gainty
>
> ______________________________________________
>
> Disclaimer and confidentiality note
>
> Everything in this e-mail and any attachments relating to the official
business of Laconia Data Systems (LDS) is proprietary to the company. It
is confidential, legally privileged and protected by law. LDS does not
own and endorse any other content. Views and opinions are those of the
sender unless clearly stated as being that of LDS.
>
> The person addressed in the e-mail is the sole authorised recipient.
Please notify the sender immediately if it has unintentionally reached
you and do not read, disclose or use the content in any way.
>
>
> LDS can not assure that the integrity of this communication has been
maintained nor that it is free of errors, virus, interception or
interference.
>
>              _____________GMT-5___________________
>
>
>
> >From: Scott Nichol
> >Reply-To: [EMAIL PROTECTED]
> >To: [EMAIL PROTECTED]
> >Subject: Re: SOAP Port specification
> >Date: Mon, 13 Jan 2003 15:24:29 -0500
> >MIME-Version: 1.0
> >Received: from apache.org ([63.251.56.142]) by
mc7-f36.law1.hotmail.com with Microsoft SMTPSVC(5.0.2195.5600); Mon, 13
Jan 2003 12:24:23 -0800
> >Received: (qmail 24527 invoked by uid 500); 13 Jan 2003
20:24:00 -0000
> >Received: (qmail 24512 invoked from network); 13 Jan 2003
20:23:59 -0000
> >Received: from smtp.comcast.net (24.153.64.2) by daedalus.apache.org
with SMTP; 13 Jan 2003 20:23:59 -0000
> >Received: from fastdata (pcp01349834pcs.lowmrn01.pa.comcast.net
[68.80.227.176]) by mtaout05.icomcast.net (iPlanet Messaging Server 5.2
HotFix 1.07 (built Nov 25 2002)) with SMTP id
<[EMAIL PROTECTED]> for [EMAIL PROTECTED];
Mon, 13 Jan 2003 15:23:50 -0500 (EST)
> >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
> >Precedence: bulk
> >list-help:
> >list-unsubscribe:
> >list-post:
> >Delivered-To: mailing list [EMAIL PROTECTED]
> >Message-id: <02cc01c2bb41$c66c2640$c900a8c0@fastdata>
> >X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4920.2300
> >X-Mailer: Microsoft Outlook Express 5.50.4920.2300
> >X-Priority: 3
> >X-MSMail-priority: Normal
> >References:
> >X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
> >Return-Path:
[EMAIL PROTECTED]
> >X-OriginalArrivalTime: 13 Jan 2003 20:24:23.0179 (UTC)
FILETIME=[C297C5B0:01C2BB41]
> >
> >Martin,
> >
> >Please post Axis questions to [EMAIL PROTECTED]
> >
> >Thank you.
> >
> >Scott Nichol
> >
> >----- Original Message -----
> >From: "Martin Gainty"
> >To:
> >Sent: Saturday, January 11, 2003 5:25 PM
> >Subject: SOAP Port specification
> >
> >
> > > In Apache Axis whe I add a connector class I can specify the Port
> >(usually 8080) inside the server.xml
> > > BUT..How do I specify the port (8080) when configuring SOAP???
> > > Help!!!!
> > >
> > > Martin Gainty
> > >
> > > ______________________________________________
> > >
> > > Disclaimer and confidentiality note
> > >
> > > Everything in this e-mail and any attachments relating to the
official
> >business of Laconia Data Systems (LDS) is proprietary to the company.
It
> >is confidential, legally privileged and protected by law. LDS does
not
> >own and endorse any other content. Views and opinions are those of
the
> >sender unless clearly stated as being that of LDS.
> > >
> > > The person addressed in the e-mail is the sole authorised
recipient.
> >Please notify the sender immediately if it has unintentionally
reached
> >you and do not read, disclose or use the content in any way.
> > >
> > >
> > > LDS can not assure that the integrity of this communication has
been
> >maintained nor that it is free of errors, virus, interception or
> >interference.
> > >
> > > _____________GMT-5___________________
> > >
> > >
> > >
> > >
> > >
> >
> ----------------------------------------------------------------------
> >----------
> > > Help STOP SPAM: Try the new MSN 8 and get 2 months FREE* -- To
> >unsubscribe, e-mail: For additional commands, e-mail:
> >
> >
> >--
> >To unsubscribe, e-mail:
> >For additional commands, e-mail:
>
>
> ----------------------------------------------------------------------
----------
> Protect your PC - Click here for McAfee.com VirusScan Online -- To
unsubscribe, e-mail: For additional commands, e-mail:


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

Reply via email to