• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

struts action will not generate

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi while i trying to run my strust1.2 application the action is not generate, my environment is eclips & weblogic 10,
when deploy the application form will open after that form validation & error message nothing will display on jsp page , i'm using beehive
controls in the jsp page here i'm sending the "struts-config.xml" file please help me out.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<!-- Generated from /Controller.java on Sat Jan 05 04:30:58 IST 2002 -->


<form-beans>
<form-bean name="AddressForm" type="struts.AddressForm" />
</form-beans>


<global-exceptions/>
<global-forwards>
<forward name="_auto" path=""/>


<forward name="success" path="success.jsp"/>


</global-forwards>
<action-mappings>
<action className="org.apache.beehive.netui.pageflow.config.PageFlowActionMapping" parameter="Controller" path="/begin" scope="request" type="org.apache.beehive.netui.pageflow.internal.FlowControllerAction" validate="false">
<set-property property="readonly" value="true"/>
<set-property property="simpleAction" value="true"/>
<set-property property="defaultForward" value="_defaultForward"/>
<forward name="_defaultForward" path="/index.faces"/>
</action>


<action input="Addressjsp" name="AddressForm" path="/Address" scope="session" type="struts.AddressAction" validate="true"/>


</action-mappings>
<controller className="org.apache.beehive.netui.pageflow.config.PageFlowControllerConfig" inputForward="true" processorClass="org.apache.beehive.netui.pageflow.PageFlowRequestProcessor">
<set-property property="isReturnToPageDisabled" value="true"/>
<set-property property="isReturnToActionDisabled" value="true"/>
<set-property property="sharedFlows" value=""/>
<set-property property="controllerClass" value="Controller"/>
<set-property property="isMissingDefaultMessages" value="true"/>
</controller>


<message-resources key="_defaultMsgs" null="true" parameter="org.apache.beehive.netui.pageflow.validation.defaultMessages"/>


</struts-config>

By

Baskaran K
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not sure if this is a Struts or WebLogic issue. But either way it is not related to JBoss AS. Moving.

Also, please edit your post and place 'code' tags around the xml text.
 
Beauty is in the eye of the tiny ad.
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic