I think you're missing something here, or the URL you posted is an error. If you have your WarpConnector on port 65000 (this seems pretty high to me), then the URL you want is
http://server.mydomain.de/examples (or in your case http://server.mydomain.de:8888/examples) not http://server.mydomain.de:65000/examples The second URL will send an HTTP GET request to the WarpConnector, which won't work at all. My guess is that's why you only get 11 characters back, those 11 characters are probably the WarpConnector choking on your request. The purpose of a connector is to provide access to Tomcat resources on port 80, or whatever port Apache is listening on. John > -----Original Message----- > From: Markus Kummer [mailto:markus_kummer@;gmx.net] > Sent: Wednesday, November 13, 2002 6:11 AM > To: [EMAIL PROTECTED] > Subject: solaris 8 WarpConnection fails, no errors in log files > > > Hello, > > after reading a lot of faq's and documentation of tomcat I don't > know what else I can do to get it to work. > > I am running tomcat-4.0.6 with apache-1.3.26 and mod_webapp > on Solaris 8. > tomcat is a binary Distribution > apache is configured and compiled without errors with the > following options: > --prefix=/appl/local/apache/apache_1.3.23 --enable-module=most \ > --enable-module=most --enable-shared=max --enable-module=ssl \ > --enable-shared=ssl > > webapp is configured and compiled without errors with the > following options: > --with-apxs=/appl/local/apache/apache_1.3.23/bin/apxs \ > --with-apr=/user/markus/MAKE/jakarta-tomcat-connectors/webapp/apr \ > --enable-java=/appl/local/tomcat/jakarta-tomcat-4.0.6 > > I copied tomcat-warp.jar to $CATALINA_HOME/server/lib/warp.jar and > mod_webapp.so to apache's libexec directory. > > After starting the apache (commented out the ssl stuff) the > log tells me: > [notice] Apache/1.3.26 (Unix) mod_webapp/1.2.0-dev configured -- > resuming normal operations > > Then I configured tomcat standalone whithout problems. > I can reach the examples with http://server.mydomain.de:8070/examples. > > Now I try to make them both work together without success. > That is what happens: > I start tomcat and lots of messages appear in the log files > but I cannot > find any errors. > When I try to access the examples (http://server.mydomain.de:65000/examples) the browser tells me that he connects and starts transferring data. After exactly 11 bytes are read it gets stalled (netscape) MSIE gives me a white page with some charakters in the upper right corner. That's all. My server.xml looks like this: <Server port="8006" shutdown="SHUTDOWN" debug="99"> <Service name="Tomcat-Apache"> <Connector className="org.apache.catalina.connector.warp.WarpConnector" port="65000" minProcessors="5" maxProcessors="75" debug="99" enableLookups="true" acceptCount="10" /> <Engine className="org.apache.catalina.connector.warp.WarpEngine" name="server.mydomain.de" appBase="webapps"> <Host name="server.mydomain.de" debug="99" appBase="webapps" unpackWARs="true"> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="common"/> <Logger className="org.apache.catalina.logger.FileLogger" verbosity="4" prefix="apache_log." suffix=".txt" timestamp="true"/> </Host> <Realm className="org.apache.catalina.realm.MemoryRealm" /> </Engine> </Service> </Server> My httpd.conf: LoadModule webapp_module libexec/mod_webapp.so AddModule mod_webapp.c ServerName server.mydomain.de Port 8888 <IfModule mod_webapp.so> <VirtualHost server.mydomain.de> WebAppConnection warpConnection warp localhost:65000 WebAppDeploy examples warpConnection /webapps/examples </VirtualHost> </IfModule> Any help would be great. Thanks in advance markus -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ NEU: Mit GMX ins Internet. Rund um die Uhr f�r 1 ct/ Min. surfen! -- To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org> -- To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>
