dont see anything obvious here..

what is displayed when you visit the Axis Happiness Page?
http://localhost:8080/axis2/axis2-web/HappyAxis.jsp
?

anything in the %CATALINA_HOME%/logs/tomcat.log

here is mine:
INFO main org.apache.catalina.core.AprLifecycleListener - The Apache Tomcat 
Native library which allows optimal performance in production environments was 
not found on the java.library.path: lots of binary folders listeed here

INFO main org.apache.coyote.http11.Http11BaseProtocol - Initializing Coyote 
HTTP/1.1 on http-8080
INFO main org.apache.catalina.startup.Catalina - Initialization processed in 
4031 ms
INFO main org.apache.catalina.core.StandardService - Starting service Catalina
INFO main org.apache.catalina.core.StandardService - Starting service Catalina
INFO main org.apache.catalina.core.StandardEngine - Starting Servlet Engine: 
Apache Tomcat/5.5.17
INFO main org.apache.catalina.core.StandardEngine - Starting Servlet Engine: 
Apache Tomcat/5.5.17
INFO main org.apache.catalina.core.StandardHost - XML validation disabled
INFO main org.apache.catalina.core.StandardHost - XML validation disabled
INFO main 
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager] - 
org.tuckey.web.filters.urlrewrite.utils.Log ERROR: logLevelConf: null

?
Martin
______________________________________________ 
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité
 
Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.
Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est 
interdite. Ce message sert à l'information seulement et n'aura pas n'importe 
quel effet légalement obligatoire. Étant donné que les email peuvent facilement 
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité 
pour le contenu fourni.




> Date: Fri, 12 Jun 2009 10:56:32 -0700
> Subject: bootstrap.jar hangs on startup/shutdown/restart.
> From: brad.hel...@gmail.com
> To: users@tomcat.apache.org
> 
> Hey all,
> 
> I've recently started working with Tomcat for work. I was using Tomcat 6.0
> but I've moved to Tomcat 5.5 as I was hoping my issue would be resolved be
> migrating. The issue is that, in my ANT script, I'm trying to stop Tomcat,
> do some stuff (i.e. publish a webapp), start Tomcat, and do some more stuff
> (i.e. publish some web services via Axis). The problem seems to be that any
> time I try to execute bootstrap.jar Tomcat does it's thing and then
> just...kind of ....hangs there. It looks like it has successfully shut down
> or started Tomcat as the associated behavior is reflected when I visit the
> site...
> 
> Anyway, if anyone can provide some pointers/tips/whatever, that would be
> great! Below is relevant portions of my ANT script and below that is my
> output from bootstrap.jar's startup process.
> 
> Portions of build.xml
> ------------------------------------------------------------------------------------------------------
>     <target name="clean">
>         <!-- stop tomcat -->
>         <java jar="${tomcat.home}/bin/bootstrap.jar" fork="true"
> failonerror="false">
>             <jvmarg value="-Dcatalina.home=${tomcat.home}"/>
>             <arg line="stop"/>
>         </java>
>         <delete dir="${build.dir}" includeEmptyDirs="true" />
>         <delete dir="${services.output.dir}" includeEmptyDirs="true"/>
>         <delete dir="${war.output.dir}" includeEmptyDirs="true" />
>     </target>
> 
>     <target name="deploy" depends="generate-wsdd">
>         <echo message="Deploying WAR file..."/>
>         <copy todir="${deploy.dir}">
>             <fileset dir="${war.output.dir}" includes="${war.file.name}"/>
>         </copy>
> 
>         <!-- start tomcat -->
>         <java jar="${tomcat.home}/bin/bootstrap.jar" fork="true"
> failonerror="true">
>             <jvmarg value="-Dcatalina.home=${tomcat.home}"/>
>         </java>
> 
>         <echo message="Deploying services..."/>
>         <axis-admin hostname="${host}" port="${port}"
> xmlfile="${service.deploy.file}" failonerror="true"
>             username="admin" password="************************" />
>     </target>
> 
> Relevant output from bootstrap.jar
> ------------------------------------------------------------------------------------------------------
> deploy:
>      [echo] Deploying WAR file...
>      [java] Jun 12, 2009 10:54:29 AM
> org.apache.catalina.core.AprLifecycleListener lifecycleEvent
>      [java] INFO: The Apache Tomcat Native library which allows optimal
> performance in production environments was not found on the
> java.library.path: C:\Program
> Files\Java\jre6\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program
> Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:\Program
> Files\Windows Resource
> Kits\Tools\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;c:\Program
> Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL
> Server\100\DTS\Binn\;c:\Program Files\Microsoft SQL
> Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Common
> Files\Intuit\QBPOSSDKRuntime;C:\PROGRA~1\CA\SHARED~1\SCANEN~1;C:\Program
> Files\CA\eTrust Antivirus;C:\Program Files\ATI
> Technologies\ATI.ACE\Core-Static;C:\Program Files\Windows
> Imaging\;C:\Program Files\Microsoft Network Monitor 3\;C:\Program
> Files\TortoiseSVN\bin;C:\Program Files\1E\NomadBranch\;C:\Program
> Files\QuickTime\QTSystem\
>      [java] Jun 12, 2009 10:54:29 AM
> org.apache.coyote.http11.Http11BaseProtocol init
>      [java] INFO: Initializing Coyote HTTP/1.1 on http-8080
>      [java] Jun 12, 2009 10:54:29 AM org.apache.catalina.startup.Catalina
> load
>      [java] INFO: Initialization processed in 393 ms
>      [java] Jun 12, 2009 10:54:29 AM
> org.apache.catalina.core.StandardService start
>      [java] INFO: Starting service Catalina
>      [java] Jun 12, 2009 10:54:29 AM org.apache.catalina.core.StandardEngine
> start
>      [java] INFO: Starting Servlet Engine: Apache Tomcat/5.5.27
>      [java] Jun 12, 2009 10:54:29 AM org.apache.catalina.core.StandardHost
> start
>      [java] INFO: XML validation disabled
>      [java] - Unable to find config file.  Creating new servlet engine
> config file: /WEB-INF/server-config.wsdd
>      [java] Jun 12, 2009 10:54:30 AM
> org.apache.catalina.core.ApplicationContext log
>      [java] INFO: org.apache.webapp.balancer.BalancerFilter: init():
> ruleChain: [org.apache.webapp.balancer.RuleChain:
> [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News /
> Redirect URL: http://www.cnn.com],
> [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name:
> paramName / Target param value: paramValue / Redirect URL:
> http://www.yahoo.com],
> [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL:
> http://jakarta.apache.org]]
>      [java] Jun 12, 2009 10:54:30 AM
> org.apache.coyote.http11.Http11BaseProtocol start
>      [java] INFO: Starting Coyote HTTP/1.1 on http-8080
>      [java] Jun 12, 2009 10:54:30 AM org.apache.jk.common.ChannelSocket init
>      [java] INFO: JK: ajp13 listening on /0.0.0.0:8009
>      [java] Jun 12, 2009 10:54:30 AM org.apache.jk.server.JkMain start
>      [java] INFO: Jk running ID=0 time=0/17  config=null
>      [java] Jun 12, 2009 10:54:30 AM
> org.apache.catalina.storeconfig.StoreLoader load
>      [java] INFO: Find registry server-registry.xml at classpath resource
>      [java] Jun 12, 2009 10:54:30 AM org.apache.catalina.startup.Catalina
> start
>      [java] INFO: Server startup in 1095 ms
> 
> Thanks,
> Brad Heller

_________________________________________________________________
Hotmail® has ever-growing storage! Don’t worry about storage limits. 
http://windowslive.com/Tutorial/Hotmail/Storage?ocid=TXT_TAGLM_WL_HM_Tutorial_Storage_062009

Reply via email to