A question for struts configuration

i has developed a struts-based web application. The web server is tomcat.
when the tomcat console starts, some tip info will display, like as:
New org.apache.struts.action.ActionMapping
Set org.apache.struts.action.ActionMapping properties
New org.apache.struts.action.ActionForward
Set org.apache.struts.action.ActionForward properties
Call org.apache.struts.action.ActionMapping.addForward(ActionForward[success])
...it's bored . How can i set some switch or parameter to prevent it?
best regard.

up.

Similar Messages

  • Question for importing configurations into NDS....

    Why are some tracks shown in the import configuration in the NDS shown under a tree level for both con and dev of a track, and others are not?

    Hi,
    Do other tracks that are not displayed have  have a dev/cons workspace?
    There is an option in NWDS to display all,dev,cons systems. Normally all tracks should have a dev,cons workspace. In my opinion, if the display option is set to all, then u will see the track under both dev and cons, if dev option is set then u will see only dev, and cons respectively for the display option cons.
    Akshatha

  • One simple question for Apple Configurator

    Hi !
    I was wondering if possible to adjust setting on a Ipad anytime i wish by wifi.
    I always doing my setting for the profile when my ipad is plug (USB) in my mac mini. I wish that i can change the setting for all profile without the need to plug in my computer.  Is there a method, please let me know.
    Thanks in advance

    If you need the functionality of Configurator, but want changes pushed over the internet instead of having to connect using a white wire, you need the Profile Manager service provided by OS X Server.  That's what it does.
    https://www.apple.com/uk/osx/server/features/#profile-manager
    http://www.apple.com/uk/support/osxserver/profilemanager/

  • How to  configure  for struts-config.xml

    Hi
    I am having a JSp which is Mapped to anothr action through the registration.The registartion is mapped to action
    <%@ page contentType="text/html;charset=UTF-8" %>
    <%@ page import="org.apache.struts.validator.ValidatorPlugIn" session="true" %>
    <%@ page import="org.apache.struts.Globals" %>
    <%@ taglib uri="/tags/struts-bean" prefix="bean" %>
    <%@ taglib uri="/tags/struts-html" prefix="html" %>
    <%@ taglib uri="/tags/struts-logic" prefix="logic" %>
    <html:html locale="true">
    <head>
    <title><bean:message key="index.title"/></title>
    <html:base/>
    </head>
    <body bgcolor="white">
    <logic:notPresent name="<%= Globals.MESSAGES_KEY %>" >
      <font color="red">
        ERROR:  Application resources not loaded -- check servlet container
        logs for error messages.
      </font>
    </logic:notPresent>
    <%-- :TODO: Need code to do this with moudles
    <logic:notPresent name="<%= ValidatorPlugIn.VALIDATOR_KEY %>" >
      <font color="red">
        ERROR:  Validator resources not loaded -- check Commons Logging
        logs for error messages.
      </font>
    </logic:notPresent>
    --%>
    <h3><bean:message key="registrationForm.title"/>1222AAAAAAAAAAAAA</h3>
    <ul>
      <li><html:link action="Test.jsp">Test212121.jsp</html:link >
       <li><html:link action="/registration"><bean:message key="registrationForm.title"/></html:link></li>
       <%System.out.println("hellooooooooooooo");%>
       <!-- :TODO: Should have a non-JaveScript message-by-field example -->
       <li>
          <html:link action="/jsRegistration"><bean:message key="jsRegistrationForm.title"/></html:link> -
          <bean:message key="jsRegistrationForm.description"/>
       </li>
       <li>
          <html:link action="/multiRegistration"><bean:message key="multiRegistrationForm.title"/></html:link> -
          <bean:message key="multiRegistrationForm.description"/>
       </li>
    </ul>
    <a href="registration.jsp">Registration Test</a>
    <p> </p>
    <h3><bean:message key="typeForm.title"/></h3>
    <ul>
       <li>
          <html:link action="/type"><bean:message key="typeForm.title"/></html:link> -
          <bean:message key="typeForm.description"/>
       </li>
       <li>
          <html:link action="/editJsType"><bean:message key="jsTypeForm.title"/></html:link> -
          <bean:message key="jsTypeForm.description"/>
       </li>
    </ul>
    <p> </p>
    <h3>Change Language | Changez Le Langage</h3>
    <ul>
       <li><html:link action="/locale?language=en">English | Anglais</html:link></li>
       <li>
          <html:link action="/locale?language=fr">French | Francais</html:link> -
          <bean:message key="localeForm.fr"/>
       </li>
       <li>
          <html:link action="/locale?language=fr&country=CA">French Canadian | Francais Canadien</html:link> -
          <bean:message key="localeForm.frCA"/>
       </li>
       <li>
          <html:link action="/locale?language=ja" useLocalEncoding="true">Japanese | Japonais</html:link> -
          <bean:message key="localeForm.ja"/>
       </li>
    </ul>
    <p> </p>
    ==============struts-config.xml=================\<?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
    "http://struts.apache.org/dtds/struts-config_1_2.dtd">
    <struts-config>
    <!--============================================== Form Bean Definitions -->
    <form-beans>
    <!-- Registration form bean -->
    <form-bean name="registrationForm" type="validator.RegistrationForm" />
    <!-- Multi-Part Registration form bean -->
    <form-bean name="multiRegistrationForm" type="validator.RegistrationForm" />
    <!-- Type form bean -->
    <form-bean name="typeForm" type="validator.TypeForm" />
    <!-- JavaScript Type form bean -->
    <form-bean name="jsTypeForm" type="validator.TypeForm" />
    </form-beans>
    <!-- ======================================== Global Forward Definitions -->
    <global-forwards>
    <forward name="home" path="/index.jsp" />
    </global-forwards>
    <!-- ========================================= Action Mapping Definitions -->
    <action-mappings>
    <action path="/welcome" forward="/index.jsp" />
    <!-- Registration Action
         -->
    <forward name="registration" path="/registration.do" /> //// ==========>here it is mapped
         <action path="/registration" forward="/registration.jsp" />
         <action path="/registration-submit" type="validator.RegistrationAction" name="registrationForm" scope="request" validate="true" input="input">
    <forward name="input" path="/registration.do" />
    <forward name="success" path="/index.jsp" />
    </action>
         <action path="/jsRegistration" forward="/jsRegistration.jsp" />
    <!-- Multi-Part Registration Action -->
    <action path="/multiRegistration" forward="/multiRegistration1.jsp" />
    <action path="/multiRegistration-submit" type="validator.MultiRegistrationAction" name="multiRegistrationForm" scope="request" validate="false">
    <forward name="success" path="/welcome.do" />
    <forward name="input1" path="/multiRegistration1.jsp" />
    <forward name="input2" path="/multiRegistration2.jsp" />
    </action>
    <!-- Type Action -->
    <action path="/type" forward="/type.jsp" />
    <action path="/type-submit" type="validator.TypeAction" name="typeForm" scope="request" validate="true" input="input">
    <forward name="input" path="/type.do" />
    <forward name="success" path="/welcome.do" />
    </action>
    <!-- JavaScript Type Action -->
    <action path="/editJsType" type="validator.EditTypeAction" scope="request" validate="false">
    <forward name="success" path="/jsType.do" />
    </action>
    <action path="/jsType" forward="/jsType.jsp" />
    <action path="/jsType-submit" type="validator.TypeAction" name="jsTypeForm" scope="request" validate="true" input="input">
    <forward name="input" path="/editJsType-submit.do?typeForm.reset=false" />
    <forward name="success" path="/welcome.do" />
    </action>
    <!-- Locale Action -->
    <action path="/locale" type="validator.LocaleAction" name="localeForm" scope="request">
    <forward name="success" path="/welcome.do" />
    </action>
    </action-mappings>
    <!-- ============================================= Controller Definition -->
    <controller inputForward="true" />
    <!-- ===================================== Message Resources Definitions -->
    <message-resources parameter="validator.MessageResources" />
    <!-- ============================================ Plug Ins Configuration -->
    <!--
    Add multiple validator resource files by setting the pathnames property
    with a comma delimitted list of resource files to load.
    -->
    <plug-in className="validator.ValidatorPlugIn">
    <set-property property="pathnames" value="/WEB-INF/validator-rules.xml,/WEB-INF/validator/validation.xml" />
    <set-property property="stopOnFirstError" value="true" />
    </plug-in>
    </struts-config>
    <html:img page="/struts-power.gif" altKey="index.powered"/>
    </body>
    </html:html>

    Hey,
    U can do it the way u want. Use DispatchAction Class instead of Action Class. Just go through the documentation for this. If u still have problem let me know.
    Thanks
    KM
    Hi,
    I am new to struts and when i am doing my application i find some >>difficulty i.e,
    I have two buttons on a jsp page Save,Delete.when I click on >>save ,saveAction must be called.if we click delete deleteAction to be >>called.
    for this how can I configure in struts-config.xml file. and how it >>knows which button has been clicked.
    Can any one please guid me.
    Thanks

  • Question with Struts ActionServlet

    Hi,everybody.
    I have written a simple application using Struts.The program is used to validate a user who login to the system.I have added all *.jar library file of Struts 1.2.6 to the Tomcat project,But after I accessed to Login page,enter username and password,and then click "Login" button,It popup the following exception:
    Error loading WebappClassLoader
    delegate: false
    repositories:
    /WEB-INF/classes/
    ----------> Parent Classloader:
    org.apache.catalina.loader.StandardClassLoader@fe315d
    org.apache.struts.action.ActionServlet
    java.lang.ClassNotFoundException: org.apache.struts.action.ActionServlet
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1355)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1201)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1034)
         at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:757)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:130)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)
    and the web.xml file is list as following:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <!-- Action Servlet Configuration -->
    <servlet>
    <servlet-name>actionServlet</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    </servlet>
    <!-- Action Servlet Mapping -->
    <servlet-mapping>
    <servlet-name>actionServlet</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <!-- The Welcome File List -->
    <welcome-file-list>
    <welcome-file>login.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    struts-config.xml is listed as following:
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!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>
         <form-beans>
              <form-bean name="formBean1" type="classmate.UserForm"/>
         </form-beans>
         <global-forwards>
              <forward name="failed" path="/error.jsp"/>
              <forward name="successed" path="/right.jsp"/>
         </global-forwards>
         <action-mappings>
              <action path="/login" type="classmate.LoginAction" name="formBean1" scope="request" input="/login.jsp" />
              <action path="/regist" forward="/regist.jsp"/>
         </action-mappings>
    </struts-config>
    if anybody can help me to resovle this question? Please Reply .
    Besides this,I also have another question I want to ask,it is that how to install Struts plugin to Eclipse,I have tried to unziped the download EasyStruts plugin to the Eclipse plugins directory,but after click Window->Preference ,I have not found the EasyStruts item in the left of the pop-up panel,the Eclipse version is 3.1.2 and have installed lomboz in it.if anybody have practice in such installation? Please response to help me.
    Thank you and Regards.

    Hi,
    Thank you for response.I have modified the program as what you told me.it can startup now,But it suspended at LoginAction,the running message is printed as following:
    LoginAction.execute(ActionMapping, ActionForm, HttpServletRequest, HttpServletResponse) line: 18
    RequestProcessor.processActionPerform(HttpServletRequest, HttpServletResponse, Action, ActionForm, ActionMapping) line: 419
    RequestProcessor.process(HttpServletRequest, HttpServletResponse) line: 224
    ActionServlet.process(HttpServletRequest, HttpServletResponse) line: 1192
    ActionServlet(HttpServlet).service(HttpServletRequest, HttpServletResponse) line: 709
    when I click on the information "RequestProcessor.processActionPerform",it popup a message that show "Source not found ,The jar file Struts.jar has no source attachment",Does it need to attach the source of struts.jar?
    I list the LoginAction.java as following:
    package classmate;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    public final class LoginAction extends Action{ 
    public ActionForward execute(
         ActionMapping mapping,
         ActionForm form,
         HttpServletRequest request,
         HttpServletResponse response) throws Exception {
         UserForm userform = (UserForm) form;
         String name = userform.getName();
         String psw = userform.getPsw();
         if("jenny".equals(name) && "hi".equals(psw)){
              UserLoginLog ul = new UserLoginLog();
              ul.save(name,psw);
              return mapping.findForward("successed");     
         }else{
              return mapping.findForward("failed");
    as I debuged the program,the breakpoint line "UserForm userform = (UserForm) form; "
    and the UseForm.java is listed as following:
    package classmate;
    import org.apache.struts.action.ActionForm;
    public class UserForm extends ActionForm{ 
         private static final long serialVersionUID = 1L;
         private String name = null;     
         private String psw = null;     
         public UserForm(){}
         public void setName(String name) {
              this.name = name;
         public String getName() {
              return name;
         public void setPsw(String psw) {
              this.psw = psw;
         public String getPsw() {
              return psw;
    and I have written the web.xml and struts-config.xml in above message.
    how can I run through the breakpoint line so that I can access the ActionForm's Data? if anybody can tell me how to resovle it ,Please reply to help me. Thanks you.
    Message was edited by:
    Devemor

  • Basic question about Struts

    Hello,
    I am going through the struts sample application (struts-example.war) and I am trying to understand the firtst global forward. Here it is:
        <forward   name="logoff"               path="/logoff.do"/>How does the application knows that "logoff.do" is mapped to the logon.jsp page?
    Can anyone answer this question please?
    Thanks in advance,
    Julien.

    Thanks for your reply ADCWorks,
    What I don't understand is that I have disabled the local forward for the logoff action (the struts-config.xml is included here). How does Struts know that the logoff.do is mapped to logon.jsp? I doubt it is hard-coded in the servlet...
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
              "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
              "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <!--
         This is the Struts configuration file for the example application,
         using the proposed new syntax.
    -->
    <struts-config>
    <!-- ========== Data Source Configuration =============================== -->
    <!--
    <data-sources>
       <data-source>
         <set-property property="autoCommit"
                          value="false"/>
         <set-property property="description"
                          value="Example Data Source Configuration"/>
         <set-property property="driverClass"
                          value="org.postgresql.Driver"/>
         <set-property property="maxCount"
                          value="4"/>
         <set-property property="minCount"
                          value="2"/>
         <set-property property="password"
                          value="mypassword"/>
         <set-property property="url"
                          value="jdbc:postgresql://localhost/mydatabase"/>
         <set-property property="user"
                          value="myusername"/>
       </data-source>
    </data-sources>
    -->
      <!-- ========== Form Bean Definitions =================================== -->
      <form-beans>
        <!-- Logon form bean -->
        <form-bean       name="logonForm"
                         type="org.apache.struts.validator.DynaValidatorForm">
          <form-property name="username" type="java.lang.String"/>
          <form-property name="password" type="java.lang.String"/>
        </form-bean>
        <!-- Registration form bean -->
        <form-bean      name="registrationForm"
                        type="org.apache.struts.webapp.example.RegistrationForm"/>
        <!-- Subscription form bean -->
        <form-bean      name="subscriptionForm"
                        type="org.apache.struts.webapp.example.SubscriptionForm"/>
      </form-beans>
      <!-- ========== Global Forward Definitions ============================== -->
      <global-forwards>
        <forward   name="logoff"               path="/logoff.do"/>
        <forward   name="logon"                path="/logon.jsp"/>
        <forward   name="registration"         path="/registration.jsp"/>
        <forward   name="success"              path="/mainMenu.jsp"/>
      </global-forwards>
      <!-- ========== Action Mapping Definitions ============================== -->
      <action-mappings>
        <!-- Edit user registration -->
        <action    path="/editRegistration"
                   type="org.apache.struts.webapp.example.EditRegistrationAction"
              attribute="registrationForm"
                  scope="request"
               validate="false">
          <forward name="success"              path="/registration.jsp"/>
        </action>
        <!-- Edit mail subscription -->
        <action    path="/editSubscription"
                   type="org.apache.struts.webapp.example.EditSubscriptionAction"
              attribute="subscriptionForm"
                  scope="request"
               validate="false">
          <forward name="failure"              path="/mainMenu.jsp"/>
          <forward name="success"              path="/subscription.jsp"/>
        </action>
        <!-- Process a user logoff -->
        <action    path="/logoff"
                   type="org.apache.struts.webapp.example.LogoffAction">
          <!--forward name="success"              path="/index.jsp"/-->
        </action>
        <!-- Process a user logon -->
        <action    path="/logon"
                   type="org.apache.struts.webapp.example.LogonAction"
                   name="logonForm"
                  scope="session"
                  input="logon">
          <exception
                    key="expired.password"
                   type="org.apache.struts.webapp.example.ExpiredPasswordException"
                   path="/changePassword.jsp"/>
        </action>
        <!-- Save user registration -->
        <action    path="/saveRegistration"
                   type="org.apache.struts.webapp.example.SaveRegistrationAction"
                   name="registrationForm"
                  scope="request"
                  input="registration"/>
        <!-- Save mail subscription -->
        <action    path="/saveSubscription"
                   type="org.apache.struts.webapp.example.SaveSubscriptionAction"
                   name="subscriptionForm"
                  scope="request"
                  input="subscription">
          <forward name="subscription"    path="/subscription.jsp"/>
          <forward name="success"         path="/editRegistration.do?action=Edit"/>
        </action>
        <!-- Display the "walking tour" documentation -->
        <action    path="/tour"
                forward="/tour.htm">
        </action>
      </action-mappings>
      <!-- ========== Controller Configuration ================================ -->
      <controller>
        <!-- The "input" parameter on "action" elements is the name of a
             local or global "forward" rather than a module-relative path -->
        <set-property property="inputForward" value="true"/>
      </controller>
      <!-- ========== Message Resources Definitions =========================== -->
      <message-resources
        parameter="org.apache.struts.webapp.example.ApplicationResources"/>
      <message-resources
        parameter="org.apache.struts.webapp.example.AlternateApplicationResources"
        key="alternate">
      </message-resources>
      <!-- ========== Plug Ins Configuration ================================== -->
      <plug-in className="org.apache.struts.plugins.ModuleConfigVerifier"/>
      <plug-in className="org.apache.struts.webapp.example.memory.MemoryDatabasePlugIn">
        <set-property property="pathname" value="/WEB-INF/database.xml"/>
      </plug-in>
      <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
        <set-property property="pathnames"
                         value="/WEB-INF/validator-rules.xml,
                                /WEB-INF/validation.xml"/>
      </plug-in>
    </struts-config>

  • A question for the rtexprvalue attribute of the tag

    I'm using struts tag , and get some question for tag. In my jsp file. the code like this:
    <html:hidden property="param1" value="<%=id%>otherwords"/>
    note: I add some word after the express
    when i run the jsp file, out of my thought, the result is :
    <input type="hidden" name="param1" value="<%=id%>otherwords">I think the right result is:
    I assign the id value is "2"
    <input type="hidden" name="param1" value="2otherwords">but i erase the "otherwords" in the express, the result is right!!!
    <input type="hidden" name="param1" value="2">not
    <input type="hidden" name="param1" value="<%=id%>">What' the error?
    Does the express must be closed in "<%=" and "%>"? Any titles mention it?
    Many thanks.
    Richard Jin

    not sure why it wont work, but I think this will work
    <html:hidden property="param1"><%=id%>otherwords</html:hidden>

  • Customisation settings for VC Configuration copy from Purchase order to GRN(Goods Receipt note)

    Hi Experts
    I was looking for Customisation settings for VC Configuration copy from Purchase order to GRN(Goods Receipt note),
    Please share.
    Regards
    Sandeep

    Hi Ritesh
    Thanks for your reply,
    I checked  both of these transaction  we need to select 3 option Characetrstics frm configuration(prio) and classification. I will check that, I had one more question
    In PO VC configuration is called for class type-300  and  in GRN VC configuration  is called for class type -023. How it will fetch the variant class configuration to Batch class configuration?
    Once we had faced some issues the copy from PO to GRN was happening for some batches & some batches it was not happening.
    yes we have activated Mill Functions in our ERP box.
    Regards
    Sandeep

  • Struts Support: "Cannot  parse the struts configuration file" when using the Struts Portlet Wizard

    I'm currently trying to deploy the struts-example webapp from Struts 1.1 RC1 into
    Weblogic Portal 8.1 using the Struts Portlet wizard made available by the "JSR
    168 and Struts Support" patch.
    I select the struts module successfully "struts-example" and am prompted for the
    location of name mangled configuration file (i.e "struts-config.xml" for struts-example
    becomes "jpf-struts-config-struts-example.xml").
    As soon as I hit next, I am prompted with a dialog informing that me that [Workbench]
    "Cannot parse the struts configuration file."
    Given that this is a file supplied with the struts distro and that I can deploy
    the struts-example to Vanilla WLS 8.1 without problems I suspect this is a problem
    with my attempt to use the Struts Portlet.
    Can anyone please help?
    Thanks,
    --Andy Hull

    I'm currently trying to deploy the struts-example webapp from Struts 1.1 RC1 into
    Weblogic Portal 8.1 using the Struts Portlet wizard made available by the "JSR
    168 and Struts Support" patch.
    I select the struts module successfully "struts-example" and am prompted for the
    location of name mangled configuration file (i.e "struts-config.xml" for struts-example
    becomes "jpf-struts-config-struts-example.xml").
    As soon as I hit next, I am prompted with a dialog informing that me that [Workbench]
    "Cannot parse the struts configuration file."
    Given that this is a file supplied with the struts distro and that I can deploy
    the struts-example to Vanilla WLS 8.1 without problems I suspect this is a problem
    with my attempt to use the Struts Portlet.
    Can anyone please help?
    Thanks,
    --Andy Hull

  • "Cannot  parse the struts configuration file" when using the Struts Portlet Wizard

    I'm currently trying to deploy the struts webapp from Struts 1.1 into
    Weblogic Portal 8.1 using the Struts Portlet wizard.
    I select the struts module successfully and am prompted for the
    location of configuration file.
    As soon as I hit next, I am prompted with a dialog informing "Cannot parse the
    struts configuration file."
    I have 't started my server.
    Thanks
    Kicha

    I'm currently trying to deploy the struts webapp from Struts 1.1 into
    Weblogic Portal 8.1 using the Struts Portlet wizard.
    I select the struts module successfully and am prompted for the
    location of configuration file.
    As soon as I hit next, I am prompted with a dialog informing "Cannot parse the
    struts configuration file."
    I have 't started my server.
    Thanks
    Kicha

  • HT6160 What ports are used for Apple Configurator to function with IPads?

    Need to know what ports need to be allowed for Apple Configurator to function.

    Apple Configurator runs locally on an OS X computer. It requires a USB connection. So no ports required for connecting Configurator to iPads.
    However, there are some ports that need to be opened for iPads to work with Apple's server if you are behind a firewall. Here is a list of known TCP and UDP ports used by Apple software products: http://support.apple.com/kb/HT6175?viewlocale=en_US
    To use iPads behind a firewall (Configurator or not), you'll want to definitely open 5223 for Apple Push Notification and the standard ports for HTTP/HTTPS (80 and 443). If you're using an MDM, you will likely need to open 2195 and 2196 as well.  If you still have issues port watch and see what an iPad does when trying to get to the store.
    Hope this answers your question!
    ~Joe

  • Need help on struts configuration with ColdFusion 10 using IIS

    We need help on struts configuration with ColdFusion 10 using IIS.
    Earlier we were using ColdFusion 8 with IIS 6 for one of our application.  This application internally calls struts. After upgrading to ColdFusion 10 struts calls are not loading. We get 404 error.
    In ColdFusion 8 struts were configured using  actions extension .do in IIS from this file-
    C:\ColdFusion8\runtime\lib\wsconfig\jrun_iis6.dll.
    But in ColdFusion 10 this file is not present as ColdFusion 10 uses Tomcat in place of Jrun.
    Also there is no information in ColdFusion log file.

    Duane wrote:
    doctormirabilis, Welcome to the discussion area!
    1) how can i configure the time capsule in order to operate as a remote base station synchronizing with the relay using the ethernet port?
    Configure the Time Capsule to act as a bridge (not distributing IP addresses). Also configure the Time Capsule to create an 802.11n wireless network with a unique network name (SSID). That's it.
    2) how can i avoid that my powerbook while accessing my wireless network does connect through the relay station instead of using the time capsule?
    Configure the Time Capsule to use a different network name than the WDS link between the 2 AirPort Express (AX). Configure the PowerBook to use the Time Capsule network.
    There are 2 pieces of information that you should be aware of...
    (1) None of the PowerBooks are capable of 802.11n.
    (2) The WDS link cuts your available bandwidth in half. So the wireless link to your neighbor's has a maximum potential of 27 Mbps.
    Let's for a minute assume that you have a Mac compatible with 802.11n. In your configuration the time you could take advantage of the 802.11n speed is when the Mac is sending/recieving data directly from/to the Time Capsule.
    There would be NO speed increase in Internet access. The speed of Internet access is going to be controlled by the slowest link in the path to the Internet. That is probably the connection to the ISP. The next slowest path is the WDS link to your neighbor's.
    Duane,
    I am in a similar situation, sharing internet with my neighbor. Do you think it would be plausible to hook up a vonage phone adapter to time capsule's ethernet port if time capsule is bridging from my neighbor's router in the configuration you have described? A check of my upload speed shows 1.67Mbps (powerbookG4 w/ airport extreme). Vonage reccommends 90kbps minimum upload speed. Am I going to lose some speed putting the Vonag adapter behind time capsule?
    Thank you

  • Question about Struts and ActionForward

    Hi all.
    I'm having a problem regarding the use of DataAction and DataPage
    Imagine this scenario:
    1 - I have a simple web application. Its context root is http://host:port/. This web application has one jsp page called page1.jsp.
    2 - On struts configuration, I drop a DataAction called action1 and a DataPage called page1, wich holds page1.jsp, into the diagram, and link the DataAction to the DataPage using a Forward.
    3 - I start the application by clicking on the DataAction action1.
    4 - The application shows page1.jsp in the browser, because of the forward component that links de DataAction to the DataPage, but on the address bar of the browser the url is: http://host:port/action1.do. Here is the problem. I expected that I should see http://host:port/page1.do.
    5 - Because of this problem, if I refresh the page using the browser, the DataAction is executed again, but it can't. I thought the forward mechanism between a DataAction and a DataPage would cause some kind of url redirection to the browser.
    I'm using Internet Explorer to do these tests.
    Do you guys know how can I solve this problem?

    Hi fred... thanks for your post....
    Well, I'm in trouble then......
    I know that JHeadStart has the capability to detect if user have used the back or forward buttons from the browser......... If I could detect when the refresh command is used, it would solve the problem.
    I'm used to create DataAction to call some common methods from the ApplicationModule, so I can centralize code by providing different forwards to many DataPages.
    Does anyone have a best practice on how to use DataActions in conjunction with DataPages?
    Regards.

  • Question for SD

    Hello expert,
         I have some question for SD consultant:
         (1) what kind of reporting skill a consultant should have?
         (2) except for application configuration skill , what other tools we have to use for a project?
    Many Thanks,

    Hi,
    (1) what kind of reporting skill a consultant should have?
    On top of what has already been proposed, one should also have the skills to build complex ABAP reports by being able to join multiple tables with various logics to arrive at a comprehensive report for the client. In the case of a functional consultant, you must be able to translate a good functional specification for the ABAP programmer to write the program.  This is usually required by the client. Simple reporting would commonly not fit the client's requirement, or at least the Management's requirement where they want to see all company's figures summarized in one page.
    (2) except for application configuration skill , what other tools we have to use for a project?
    Preferbly you should have integration knowledge and skills with various 3rd Party and Partner products used (not only cross-modules integration), i.e. external Pricing tool (for complex pricing calculations), external WM tool, external Transportation Planning tool, mobile application integration tools (currently a trend) etc etc. and how these tools can be integrated to SAP to achieve end-to-end order to cash design.  On top of all that, having knowledge and skills in various project management tools is also a plus, i.e. SAP Solution Manager, MS Project, Primavera, Visio tool, ARIS etc.  Having these knowledge is important for overall project success too.
    Hope the above helps. 
    Thanks.

  • How can you change your security question for I tunes?

    How can you change your security question for I tunes?

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then the steps half-way down this page give you a reset link on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 link above to add a rescue email address for potential future use

Maybe you are looking for

  • New GL and Impact on BI Financial statement reports

    Dear All, I would like to know if and how the finacial statment reports  would be affected by using the new GL extractor 0FI_GL_14. New GL is being implemented on ECC,  hence the change in extractor in BI. Is there a standard cube that can be used fo

  • PDF documents are not opening What Can I do Please send a solution

    Dear Sir/Mam, I am student from India. Most of the Educational Website posting their material PDF format. While using your browser I could not able to read it. The Error message was showing as follows; Could not launch Adobe reader What can I do. But

  • Future deductions during terminations

    Hi, Is there a way we can populate future deductions (deduction elements starting from a future date) in case of terminations. If an employee is terminated w.e.f June 30, 2010 and a loan deduction has been defined w.e.f. Aug 1, 2010, is there a way I

  • How do i turn off imessging without having my phone?

    i need to do it from the website because i dont have my phone

  • IPhoto not default

    I am operating an iMac on Yosemite I have an issue with iPhoto that I hope someone can help with. When I am in an App / Website like E Bay for example, and I want to upload a photograph to the site I click on upload and My Mac takes me to the PICTURE