• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

What exactly am I supposed to do?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am writing a simple Hello World program in struts 1, but when I execute the program......the execution stops at "Initialize action of type: com.vaannila.action.HelloWorldAction" and it goes no further. It is not showing any error as such, so what do I do? I will post the execution log details here....

Aug 9, 2011 9:47:46 AM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based 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:\WINNT\Sun\Java\bin;C:\WINNT\system32;C:\WINNT;C:/Program Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:/Program Files/Java/jre6/lib/i386;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Windows Imaging\;C:\Documents and Settings\rubbini;
Aug 9, 2011 9:47:46 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:strutzz' did not find a matching property.
Aug 9, 2011 9:47:46 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:dataBase' did not find a matching property.
Aug 9, 2011 9:47:46 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:databaseorig' did not find a matching property.
Aug 9, 2011 9:47:46 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:validdate' did not find a matching property.
Aug 9, 2011 9:47:46 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-80
Aug 9, 2011 9:47:46 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 765 ms
Aug 9, 2011 9:47:47 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Aug 9, 2011 9:47:47 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.28
Aug 9, 2011 9:47:47 AM org.apache.struts.action.ActionServlet initChain
INFO: Loading chain catalog from jar:file:/D:/nishanth/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/strutzz/WEB-INF/lib/struts-core-1.3.10.jar!/org/apache/struts/chain/chain-config.xml
Aug 9, 2011 9:47:48 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-80
Aug 9, 2011 9:47:48 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Aug 9, 2011 9:47:48 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/47 config=null
Aug 9, 2011 9:47:48 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 1267 ms
Aug 9, 2011 9:47:48 AM org.apache.struts.chain.ComposableRequestProcessor init
INFO: Initializing composable request processor for module prefix ''
Aug 9, 2011 9:47:48 AM org.apache.struts.chain.commands.servlet.CreateAction createAction
INFO: Initialize action of type: com.vaannila.action.HelloWorldAction



strutzz is the name of my project.HelloWorldAction is the action class in this struts program. The logic of the program seems to be right as far as I can tell.

Please guide me.......
reply
    Bookmark Topic Watch Topic
  • New Topic