Martin, Port IS NOT configured. How many times must it be repeated: Apache SOAP cannot choose the port on which it listens, because it does not in fact listen. It gains control through servlets it implements. Servlets are invoked by a servlet container, which is itself invoked by a Web server. Only the Web server listens for requests, so you can only configure the port for SOAP requests by configuring the Web server.
Beyond that, the soap.xml file you show below is useless. If you check the server configuration section of the Apache SOAP docs (http://xml.apache.org/soap/docs/guide/config.html), you will see that config-manager must be replaced by the fully qualified class of the manager. The two managers that come with Apache SOAP are org.apache.soap.server.DefaultConfigManager and org.apache.soap.server.XMLConfigManager. The only difference between the two is that the former write the config file using Java serialization, while the latter writes the file as XML. Each of these two configuration managers supports a single option named "file", which is used to specify the file name of the configuration file. Neither supports an option named port. As for <Context path="/soap" docBase="C:/PROGRA~1/APACHE~1/Apache/webapps/soap" debug="1" reloadable="true"> </Context> I presume that this comes from your Tomcat's server.xml. That same file is where you configure the port on which Tomcat's standalone server listens (assuming you use the standalone server instead of some other Web server). On 17 Jan 2003 at 10:38, Martin Gainty wrote: > > <?xml version="1.0" encoding="UTF-8"?> > <!-- Sample Apache SOAP Server Configuration File --> > <soapServer> > <!-- This section defines the same thing you get if you don't --> > <!-- specify anything at all - aka the default --> > <serviceManager> > <option name="SOAPInterfaceEnabled" value="true" /> > </serviceManager> > <configManager value="config-manager" > > [<option name="port" value="8080"/>]* > </configManager> > </soapServer> > <Context path="/soap" > docBase="C:/PROGRA~1/APACHE~1/Apache/webapps/soap" debug="1" > reloadable="true"> </Context> > > As you can see the Port is configured... > All i need to do is run SOAP so running Standalone seems to be the > path of least resistance > If you have any suggestions I would be glad to hear it.. > > Thanks, > > > > > > > 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. > > > LDScan 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: Question on configuring Ports under Apache > >Date: Fri, 17 Jan 2003 12:22:01 -0500 > >MIME-Version: 1.0 > >Received: from apache.org ([63.251.56.142]) by mc4- > f29.law16.hotmail.com with Microsoft SMTPSVC(5.0.2195.5600); Fri, 17 > Jan 2003 09:22:29 -0800 > >Received: (qmail 23559 invoked by uid 500); 17 Jan 2003 17:22:10 - > 0000 > >Received: (qmail 23548 invoked from network); 17 Jan 2003 17:22:09 - > 0000 > >Received: from smtp.comcast.net (24.153.64.2) by daedalus.apache.org > with SMTP; 17 Jan 2003 17:22:09 -0000 > >Received: from fastdata (pcp01349834pcs.lowmrn01.pa.comcast.net > [68.80.227.176]) by mtaout01.icomcast.net (iPlanet Messaging Server > 5.2 HotFix 1.07 (built Nov 25 2002)) with ESMTP id > <[EMAIL PROTECTED]> for [EMAIL PROTECTED]; > Fri, 17 Jan 2003 12:21:13 -0500 (EST) > >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm > >Precedence: bulk > >list-help: > >list-unsubscribe: > >list-post: > >Delivered-To: mailing list [EMAIL PROTECTED] > >In-reply-to: > >Message-id: <3E27F569.28484.D4CDA1@localhost> > >X-Mailer: Pegasus Mail for Windows (v4.02) > >Priority: normal > >X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > >Return-Path: soap-user-return-19394- > [EMAIL PROTECTED] > >X-OriginalArrivalTime: 17 Jan 2003 17:22:30.0914 (UTC) > FILETIME=[04074620:01C2BE4D] > > > >There is no need to put web.xml in %TOMCAT_HOME%\conf. This file is > >defined by the J2EE specs. It is contained in soap.war. > > > >The port(s) on which Tomcat's standalone server will listen are > >configured in %TOMCAT_HOME%\conf\server.xml. If you post that file > >here, someone can probably look at it. You could also look at the > >Tomcat docs if you would like. > > > >On 17 Jan 2003 at 10:09, Martin Gainty wrote: > > > > > Scott- > > > > > > I am not doing anythingspecial- > > > > > > Im using the configuration file (web.xml)which come with the > Apache > > > SOAP Download > > > which I then copy to %TOMCAT_HOME%\conf and > > > copy soap.wat to %TOMCAT_HOME%\webapps and then I > > > Restart Apache > > > > > > > > > > > PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application > 2.2//EN" > > > "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd"> > > > > > > Apache-SOAP > > > no description > > > > > > rpcrouter > > > Apache-SOAP RPC Router > > > no description > > > > > class>org.apache.soap.server.http.RPCRouterServlet > > > > > > faultListener > > > org.apache.soap.server.DOMFaultListener> > value> > > > > > > > > > > > > messagerouter > > > Apache-SOAP Message Router > > > > > class>org.apache.soap.server.http.MessageRouterServlet > > > > > > faultListener > > > org.apache.soap.server.DOMFaultListener> > value> > > > > > > > > > > > > rpcrouter > > > /servlet/rpcrouter > > > > > > > > > messagerouter > > > /servlet/messagerouter > > > > > > > > > > > > Thanks, > > > > > > > > > > > > > > > > > > > > > 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. > > > > > > > > > LDScan 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: Question on configuring Ports under Apache > > > >Date: Thu, 16 Jan 2003 18:25:58 -0500 > > > >MIME-Version: 1.0 > > > >Received: from apache.org ([63.251.56.142]) by mc4- > > > f40.law16.hotmail.com with Microsoft SMTPSVC(5.0.2195.5600); Thu, > 16 > > > Jan 2003 15:25:24 -0800 > > > >Received: (qmail 82398 invoked by uid 500); 16 Jan 2003 23:25:02 > - > > > 0000 > > > >Received: (qmail 82375 invoked from network); 16 Jan 2003 > 23:25:00 - > > > 0000 > > > >Received: from smtp.comcast.net (24.153.64.2) by > daedalus.apache.org > > > with SMTP; 16 Jan 2003 23:25:00 -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 ESMTP id > > > <[EMAIL PROTECTED]> for soap- > [EMAIL PROTECTED]; > > > Thu, 16 Jan 2003 18:25:07 -0500 (EST) > > > >Mailing-List: contact [EMAIL PROTECTED]; run by > ezmlm > > > >Precedence: bulk > > > >list-help: > > > >list-unsubscribe: > > > >list-post: > > > >Delivered-To: mailing list [EMAIL PROTECTED] > > > >In-reply-to: > > > >Message-id: <3E26F936.12814.747C915@localhost> > > > >X-Mailer: Pegasus Mail for Windows (v4.02) > > > >Priority: normal > > > >X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > > > >Return-Path: soap-user-return-19385- > > > [EMAIL PROTECTED] > > > >X-OriginalArrivalTime: 16 Jan 2003 23:25:25.0037 (UTC) > > > FILETIME=[8C0105D0:01C2BDB6] > > > > > > > >Apache SOAP is servlet-based, as such, it cannot control the > port on > > > > > > >which it is accessed. The soap.xml file lets you configure a > config > > > >manager and whether or not the service manager SOAP interface is > > > > >enabled, and that's it. > > > > > > > >The Web server controls the port on which the SOAP service is > > > >implemented. If you use Tomcat's standalone server, its > server.xml > > > >controls the port. If you use Tomcat as a servlet container with > > > > >another Web server, the configuration of that Web server > determines > > > >the port. > > > > > > > >What Web server and servlet container are you using? Can you > post > > > >the configuration file(s) for the Web server you are using? > > > > > > > > > > > >On 16 Jan 2003 at 14:00, Martin Gainty wrote: > > > > > > > > > > > > > > > > > > > Scott et al... > > > > > > > > > > Web.xml defines the location of soap.xml > > > > > SOAP.xml has the configuration information (Ports etc) > > > > > > > > > > What I cant get is who calls/configures web.xml??? > > > > > > > > > > Saying you can only use Port (80) onApache webserver seems > > > > > excessively restrictive > > > > > Thanks, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 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. > > > > > > > > > > > > > > > LDScan not assure that the integrity of this communication > has > > > been > > > > > maintained nor that it is free of errors, virus, interception > or > > > > > interference. > > > > > > > > > > _____________GMT-5___________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Add photos to your e-mail with MSN 8. Get 2 months FREE*. -- > To > > > > > unsubscribe, e-mail: For additional commands, e-mail: > > > > > > > > > > > >Scott Nichol > > > > > > > > > > > >-- > > > >To unsubscribe, e-mail: > > > >For additional commands, e-mail: > > > > > > > > > Help STOP SPAM: Try the new MSN 8 and get 2 months FREE* -- To > > > unsubscribe, e-mail: For additional commands, e-mail: > > > > > >Scott Nichol > > > > > >-- > >To unsubscribe, e-mail: > >For additional commands, e-mail: > > > get 2 months FREE* -- To unsubscribe, e-mail: For additional > commands, e-mail: Scott Nichol -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>