Doubts about: tag nesting error in Struts project

Hello, people...
I'd like to know why this error is happenning... Does someone can help me, please? The code is below:
*** JSP Page ***
<%@ taglib uri="struts-html" prefix="html"%>
<%@ taglib uri="struts-bean" prefix="bean"%>
<%@ taglib uri="struts-logic" prefix="logic" %>
<%@ taglib uri="project-tag" prefix="tag"%>
<html:html>
<head>
     <title><bean:message key="label.project"/></title>
</head>
<body onLoad="window_load();">
<table border="0" width="100%">
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
     <tr>
     <td align="right"><!-- Bot?o Voltar --></td>
     </tr>
     <tr class="FonteTituloTela">
     <td><bean:message key="titulo.pesquisarEmpreendimento"/></td>
     </tr>
     </table>
</td>
</tr>
<tr>
<td>
     <html:form action="/pesquisarEmpreendimentoPopup.do" method="get" onsubmit="return validatePesquisarEmpreendimentoPopupForm(this);">
     <html:hidden property="action" />
     <table width="550">
     <tr>
     <td colspan="3"><bean:message key="titulo.dadosDaPesquisa"/></td>
     </tr>
     <tr>
     <td><bean:message key="label.codigo"/></td>
     <td colspan="2">
     <html:text property="nu_codigo" size="7"/>     
</tr>
     <tr>
     <td><bean:message key="label.nome"/></td>
     <td colspan="2">
     <html:select property="criterio">
     <html:option value="1"><bean:message key="label.cboIniciando"/></html:option>
     <html:option value="2"><bean:message key="label.cboContendo"/></html:option>
     </html:select>     
     <html:text property="no_municipio" size="40"/>     
     </tr>
<tr>
     <td>
          <tag:rollover imagemUp="<%=SiwarContext.getContextPath().concat(\"imagem/btn_confirmar_on.gif\")%>" imagemDown="<%=SiwarContext.getContextPath().concat(\"imagem/btn_confirmar_off.gif\")%>" onClick="javascript:document.pesquisarEmpreendimentoPopupForm.submit();"/>
     </td>
     </tr>
</table>
     </td>
</tr>
<tr>
     <td align="center">
          <tag:subir width="500">
     </td>
</tr>
</table>
</html:form>
</body>
</html:html>
*** ActionForm ***
package jm.action;
import java.io.IOException;
import org.apache.struts.action.*;
import jm.form.PesquisarEmpreendimentoPopupForm;
import javax.servlet.*;
import javax.servlet.http.*;
public class PesquisarEmpreendimentoPopupAction extends Action {
public ActionForward execute( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) {
PesquisarEmpreendimentoPopupForm pesquisarEmpreendimentoPopupForm = (PesquisarEmpreendimentoPopupForm) form;
// Acessar l?gica de neg?cio
return mapping.findForward("pesquisarEmpreendimentoPopupFwd");
*** Form class***
package br.gov.caixa.siwar.tratarproponentes.form;
import org.apache.struts.action.*;
import org.apache.struts.validator.*;
public class PesquisarEmpreendimentoPopupForm extends ValidatorForm {
     private String nu_codigo;
     private String no_municipio;
     public String getNo_municipio() {
          return no_municipio;
     public String getNu_codigo() {
          return nu_codigo;
     public void setNo_municipio(String no_municipio) {
          this.no_municipio = no_municipio;
     public void setNu_codigo(String nu_codigo) {
          this.nu_codigo = nu_codigo;
*** Struts-config ***
<form-beans>
<form-bean name="pesquisarEmpreendimentoPopupForm" type="jm.form.PesquisarEmpreendimentoPopupForm" />
</form-beans>
<action-mappings>
<action name="pesquisarEmpreendimentoPopupForm" type="jm.action.PesquisarEmpreendimentoPopupAction" path="/pesquisarEmpreendimentoPopup" scope="request" validate="false">
<forward name="pesquisarEmpreendimentoPopupFwd" path="/jsp/tratarproponentes/PesquisarEmpreendimentoPopup.jsp" />
</action>
</action-mappings>
*** validation ***
<formset>
<form name="pesquisarEmpreendimentoPopupForm">
<field property="nu_codigo" depends="required,maxlength">
     <arg0 key="pesquisarEmpreendimentoPopupForm.nu_codigo"/>
     <var>
     <var-name>maxlength</var-name>
<var-value>3</var-value>
     </var>
     </field>
     <field property="no_municipio" depends="required,maxlength">
     <arg0 key="pesquisarEmpreendimentoPopupForm.no_municipio"/>
     <var>
     <var-name>maxlength</var-name>
          <var-value>40</var-value>
     </var>
     </field>
</form>
</formset>
Thanks,
Vanisi Leal

It's not about whether we can read the code and figure it out. It's about the fact that most of us have better things to do then to take your long bit of code and config files, (which you don't have the decency to put in code tags), read it or set things up to run it just to see what the problem is.
You say there is a problem, so you must have run it and gotten some error or some unexpected other output, yet you can't be bothered to post that as well? You're title is not an error message that points to anything. If you posted the actual problem then you would get better responses.
You can stuff your sorry's in a sack!

Similar Messages

  • How to Solve: tag nesting error? in Struts project.

    Hello, EveryBody:
    I am working for a Struts system in testing a program of look-up user password via user-inputs with birthdate, postal code, userid. I have writen three program, lookup.jsp, LookupForm.java, LookupAction.java. When I get the lookup.jsp run, the web browser displays "HTTP 500". Please find the attached message for error message, lookup.jsp and Lookupform.java. Thanks a lot.
    HTTP Status 500 -
    type: Exception report
    message: description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.compiler.ParseException: End of content reached while more parsing required: tag nesting error?
         at org.apache.jasper.compiler.JspReader.popFile(JspReader.java:293)
         at org.apache.jasper.compiler.JspReader.hasMoreInput
    ..........(Omit)
    lookup.jsp:
    <%@ page language="java" import="com.tfu.struts.common.Constants" %>
    <%@ taglib uri="/WEB-INF/app.tld" prefix="app" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <html:html locale="true">
    <head>
    <title><bean:message key="lookup.title"/></title>
    <html:base/>
    </head>
    <body bgcolor="#FFFFFF" background="images/FREE-bg.gif">
    <%@ include file="header1.html" %>
    <html:errors/>
    <%
    String selectedMonthValue = (String)request.getAttribute(Constants.SELECTED_MONTH_KEY);
    log("selectedMonthValue = " + selectedMonthValue);
    String selectedCountryValue = (String)request.getAttribute(Constants.SELECTED_COUNTRY_KEY);
    log("selectedCountryValue = " + selectedCountryValue);
    %>
    <html:form action="/lookup">
    <html:hidden property="action">
    <table>
    <tr><td><bean:message key="prompt.lookup.signin"/></td></tr>
    <tr><td><bean:message key="prompt.lookup.notes1"/>
    <bean:message key="prompt.lookup.notes2"/></td>
    </tr>
    <tr><td><bean:message key="prompt.lookup.step1"/>
    <bean:message key="prompt.lookup.step11"/></td>
    </tr>
    <tr>
    <td><bean:message key="prompt.birthdate"/></td>
    <td>
    <html:select property="birthmonth" size="1">
    <html:options collection="<%= Constants.MONTH_ARRAY_KEY %>"
    property="value"
    labelProperty="label"/>
    </html:select>
    <html:text property="birthday" size="2"/>
    <bean:message key="prompt.birthdate.comma"/>
    <html:text property="birthyear" size="4"/>
    <bean:message key="prompt.birthdate.tail"/>
    </td></tr>
    <tr>
    <td><bean:message key="prompt.postcode"/></td>
    <td><html:text property="postcode" size="10" maxlength="16"/></td>
    <td><bean:message key="prompt.country"/></td>
    <td>
    <html:select property="country" size="1">
    <html:options collection="<%= Constants.COUNTRY_ARRAY_KEY %>"
    property="value" labelProperty="label"/>
    </html:select>
    </td>
    </tr>
    <tr>
    <td>
    <bean:message key="prompt.lookup.step2"/>
    <bean:message key="prompt.lookup.step21"/>
    </td>
    </tr>
    <tr><td><html:text property="userid" size="16" maxlength="16"/></td></tr>
    <tr><td><html:submit property="submit" value="Get Password"/></td></tr>
    </table>
    </html:form>
    <bean:write name="LookupForm" property="password"/>
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    <%@ include file="footer0.html" %>
    </body>
    </html:html>
    </html>
    LookupForm.java
    * $Header: /com/tfu/struts/lookup/LookupForm.java
    * $Revision: 1.0 $
    * $Date: 2002/12/31 $
    * writen by Jianming Ke 2002.12.31
    package com.tfu.struts.lookup;
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import com.tfu.struts.common.Constants;
    * Form bean for the user password retrieve.
    public final class LookupForm extends ActionForm {
    // --------------------------------------------------- Instance Variables
    private String birthmonth = null;
    private String birthday = null;
    private String birthyear = null;
    private String postcode = null;
    private String country = null;
    private String userid = null;
    private String password = null;
    // ----------------------------------------------------------- Properties
    public String getBirthmonth() {
         return (this.birthmonth);
    public void setBirthmonth(String birthmonth) {
    this.birthmonth = birthmonth;
    public String getBirthday() {
         return (this.birthday);
    public void setBirthday(String birthday) {
    this.birthday = birthday;
    public String getBirthyear() {
         return (this.birthyear);
    public void setBirthyear(String birthyear) {
    this.birthyear = birthyear;
    public String getPostcode() {
         return (this.postcode);
    public void setPostcode(String postcode) {
    this.postcode = postcode;
    public String getCountry() {
         return (this.country);
    public void setCountry(String country) {
    this.country = country;
    public String getUserid() {
         return (this.userid);
    public void setUserid(String userid) {
    this.userid = userid;
    public String getPassword() {
         return (this.password);
    public void setPassword(String password) {
    this.password = password;
    // --------------------------------------------------------- Public Methods
    * Validate the properties that have been set from this HTTP request,
    * and return an <code>ActionErrors</code> object that encapsulates any
    * validation errors that have been found. If no errors are found, return
    * <code>null</code> or an <code>ActionErrors</code> object with no
    * recorded error messages.
    * @param mapping The mapping used to select this instance
    * @param request The servlet request we are processing
    public ActionErrors validate(ActionMapping mapping,
    HttpServletRequest request) {
    ActionErrors errors = new ActionErrors();
    if ((postcode == null) || (postcode.length() < 1))
    errors.add("postcode", new ActionError("error.postcode.required"));
    if ((userid == null) || (userid.length() < 1))
    errors.add("userid", new ActionError("error.userId.required"));
    return errors;
    I edited the struts-config.xml with two segments:
    <!-- ========== Form Bean Definitions ================== -->
    <form-beans>
    <!-- Logon form bean -->
    <form-bean name="logonForm"
    type="com.tfu.struts.logon.LogonForm">
    </form-bean>
    <!-- Lookup form bean -->
    <form-bean name="lookupForm"
    type="com.tfu.struts.lookup.LookupForm">
    </form-bean>
    <!-- ========== Action Mapping Definitions ================= -->
    <action-mappings>
    <!-- Lookup a user password -->
    <action path="/lookup"
    type="com.tfu.struts.lookup.LookupAction"
    name="lookupForm"
    scope="request"
    input="/lookup.jsp">
    <forward name="lookpass" path="/logon.jsp"/>
    </action>

    Hi,
    After I added the line you mentioned, new error messages displays...
    javax.servlet.ServletException: No getter method for property action of bean org.apache.struts.taglib.html.BEAN
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:471)
         at org.apache.jsp.lookup$jsp._jspService(lookup$jsp.java:719)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
    Thanks a lot.

  • Doubt about ccm.log error= 0x8004100E

    Hello guys,
    I have a doubt about when ccm.log display error = 0X8004100E.
    So, some my desktops scan by SCCM display error= 0x8004100E but client sccm is installed with sucess. My doubt is what reason display this error?
    Maybe can I don't worry about this,but I need know reasons display this messages.
    Thanks a lot.

    This will be displayed if your site server cannot connect to ccm WMI namespace on the worksation. CCM wmi namespace will only be available if the workstation has ConfigMgr client, hence this will eventualy fail for the workstation that are new to
    ConfigMgr.  I guess sccm uses this to check if the client is already present or not.
    Kindly mark as answer/Vote as helpful if a reply from anybody helped you in this forum. Delphin

  • Doubt about message in SmsAdminUI.log

    Hi guys,
    I have a doubt about this message error in SmsAdminUI.log occur when I open console SCCM 2012:
    [6, PID:18032][DATE 08:13:35] :System.Runtime.InteropServices.COMException\r\n\r\n   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
    [1, PID:9828][DATE 11:53:21] :Property: 'Compatible'\r\nSystem.Management.ManagementException\r\nNot found \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
    My console open normally, any help?
    Thanks.

    I would not worry about it as long as the console works as expected.
    Torsten Meringer | http://www.mssccmfaq.de

  • Tags nesting not working

              Hi All,
              I previously posted a question about "tags nesting not working" properly.
              After making some experiments I gess I know why is was not working on Bea Weblogic
              and it was on tomcat 4.0:
              If you declare a tag as having body content of type EMPTY. For instance,
              <tag>
              <name>getvarvalue</name>
              <tagclass>nl.tue.win.riaca.ida.taglib.GetVarValueTag</tagclass>
              <teiclass>nl.tue.win.riaca.ida.taglib.GetVarValueTagTEI</teiclass>
              <bodycontent>EMPTY</bodycontent>
              <info>
              </info>
              <attribute>
              <name>id</name>
              <required>false</required>
              <rtexprvalue>true</rtexprvalue>
              </attribute>
              <attribute>
              <name>name</name>
              <required>true</required>
              <rtexprvalue>true</rtexprvalue>
              </attribute>
              </tag>
              then weblogic server doesn't call the doAfterbody() of the tag and tomcat 4.0.
              does. I was placing the code to do the pertinent thing on doAfterbody
              I don't know what the specification saids about that behaviour of the container
              but one of the to implementations should be considered as wrong?? Or maybe not?
              I hope this helps other people not to make the same mistake.
              Thanks to the people who answer to my question.
              All the best,
              Ernesto Reinaldo Barreiro.
              

    Yes weblogic's implementation does not call the doAfterBody() if the tag does not have
              body (empty)
              The section of the spec which talks about doAfterBody says
              "public int doAfterBody()
              Process body (re)evaluation. This method is invoked by the JSP Page
              imple-mentation object after every evaluation of the body into the BodyEvaluation
              object. The method is not invoked if there is no body evaluation.
              Since for an empty tag there is no body evaluation, doAfterBody is not called.
              thanks
              Nagesh
              "E. Reinaldo Barrerio" wrote:
              > Hi All,
              >
              > I previously posted a question about "tags nesting not working" properly.
              >
              > After making some experiments I gess I know why is was not working on Bea Weblogic
              >
              > and it was on tomcat 4.0:
              >
              > If you declare a tag as having body content of type EMPTY. For instance,
              >
              > <tag>
              > <name>getvarvalue</name>
              > <tagclass>nl.tue.win.riaca.ida.taglib.GetVarValueTag</tagclass>
              > <teiclass>nl.tue.win.riaca.ida.taglib.GetVarValueTagTEI</teiclass>
              > <bodycontent>EMPTY</bodycontent>
              > <info>
              > </info>
              > <attribute>
              > <name>id</name>
              > <required>false</required>
              > <rtexprvalue>true</rtexprvalue>
              > </attribute>
              > <attribute>
              > <name>name</name>
              > <required>true</required>
              > <rtexprvalue>true</rtexprvalue>
              > </attribute>
              > </tag>
              >
              > then weblogic server doesn't call the doAfterbody() of the tag and tomcat 4.0.
              >
              > does. I was placing the code to do the pertinent thing on doAfterbody
              >
              > I don't know what the specification saids about that behaviour of the container
              >
              > but one of the to implementations should be considered as wrong?? Or maybe not?
              >
              > I hope this helps other people not to make the same mistake.
              >
              > Thanks to the people who answer to my question.
              >
              > All the best,
              >
              > Ernesto Reinaldo Barreiro.
              

  • Help! Problem with Struts tag html:errors/

    Hi everybody,
    In my JSP page called addUser.jsp, i have the different Struts Tag
    <html:errors/>
    <html:form action="/addUser" focus="firstName">
    </html:form>
    I have of course the ApplicationResources.properties file with differents Struts properties:
    errors.footer=</ul><hr>
    errors.header=<h3><font color="red">Validation Error</font></h3>You must correct the following error(s) before proceeding:<ul>
    errors.ioException=I/O exception rendering error messages: {0}
    and an other one:
    error.fieldsNeeded=<font color="#FF0000">Some fields are missing.</font>
    when I call the addUser form, my JSP page display:
    null Some fields are missing. null
    Have u any suggestion about my prob?
    tx a lot
    s.

    Hi,
    can u post the java code where u are actually adding the error to the action errors. may be there is something wrong with that. I dont see any problem with the jsp or the applicationsResources.properties.
    Thanks
    Latha

  • Cfmail - nesting error message

    Greetings -
    Perhaps someone can shed some light on why the following is
    occurring.
    I have a processing page processing form input for a event
    registration.
    The process works fine, displays as intended on a web page.
    However,
    when i enclose the code inside a <cfmail> tag I get the
    following error.
    ==ERROR========================
    Invalid tag nesting configuration.
    A query driven CFOUTPUT tag is nested inside a CFOUTPUT tag
    that
    also has a QUERY= attribute. This is not allowed. Nesting
    these tags
    implies that you want to use grouped processing. However,
    only the
    top-level tag can specify the query that drives the
    processing.
    ==ERROR========================
    I know what the error means and all that, but I cannot see
    where I
    have a nesting situation occurring. I have attached the code
    for
    review and ensight to what I am missing here.

    Thanks CJ -
    Talk about a forehead slapper and a DUH --
    Instead of the <cfoutput> on the last table structure,
    I should of
    used <cfloop> with a query attribute to accomplish what
    I needed.
    Don't even know why I had the first set of <cfoutput>
    tags. Guess
    I was staring to long at it and not enough java - lol.
    Thanks again for the wake up call.
    Leonard B

  • Html:link not working in struts project driving me mad, please help...

    Afternoon all,
    Can anyone help me with an issue I'm having with my first struts project, I'm learning as I go.
    Anyway, I'm trying to create a bog standard hypertext link which passes a value back to a specified struts action. The flow of the application
    is as follows:
    1) search.jsp
    User enters a name and postcode to search on, then click submit
    2) searchAction
    Struts action 'search' is called and does the search in a back-end db.
    Each result found from search is created as a javabean (named resultsBean), and added to a list object. The list object is set as a request
    attribute named 'SearchResults'.
    The action is then forwarded on to another jsp page named results.jsp
    3) results.jsp
    The results.jsp page retrieves the list object from the 'SearchResults' attribute and loops through each entry
    in the list and converts each entry to the 'resultsBean' javabean object.
    Each resultsBean object has a getVirtualID method which stores a string value. This value is retrieved and a hypertext link is created which
    passes this value on to another struts action named 'select'.
    When this link is clicked on, the select struts action is called and the value passed as a parameter is retrieved.
    This is the part I can't get to work, I can't get the link to render properly. When I click the link the select action retrieves
    & lt;%= resultsBean.getVirtualID() & gt; as the value of the parameter 'vid' instead of the value stored in the getVirtualID method of the resultsBean.
    Listed below is the code from my results.jsp page. If anyone can help me get this to work I would be very grateful.
    Thanks in advance,
    Alex
    results.jsp code
    <%
       List searchResults = (List)portletRequest.getPortletSession().getAttribute("SearchResults");
    %>
    <div id="table_layout" style="width: 713px; margin: 0px 0px 0px 3px;">
      <div id="row">
        <div id="column"><img src='<%= response.encodeURL("/images/results.gif") %>' alt="" width="223" height="159" border="0" /></div>
         <div id="column" style="width: 30px;"></div>
         <div id="column">
          <div id="table_layout" style="width: 460px;">
            <div id="row" style="width: 430px; border-bottom: 1px solid #4e137d;">
              <div id="column" style="width: 155px;">Name</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" style="width: 130px;">Address</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" align="right" style="width: 120px;">References</div>
            </div>
    <% if (searchResults.size() > 0) {
           Iterator it = searchResults.subList(0, searchResults.size()).iterator();
           ResultsBean resultsBean = new ResultsBean();
           while (it.hasNext()) {
                resultsBean = (ResultsBean)it.next(); %>
            <div id="row" style="padding: 5px 0px 10px 0px;">
              <div id="column" style="width: 155px;"><html:link styleClass="results"  page="/select.do?vid='<%= resultsBean.getVirtualId() %>'" title="<%= resultsBean.getFullName() %>"><%= resultsBean.getFullName() %></html:link></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" style="width: 130px;"><%= resultsBean.getFullAddress() %></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" align="right" style="width: 120px;"><%= resultsBean.getReferenceIcons(portletResponse) %></div>
              <div id="column" style="width: 13px;"></div>
              <div id="column" style="width: 22px;"><input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;"></div>
            </div>
    <%     }
       } %>
           </div>
         </div>
      </div>
    </div>
    <br />
    <br />
    <html:link forward="/searchpage">Return to search page</html:link>

    If you have part of an attribute dynamic, you need to make the entire attribute an expression.
    ie instead of
    page="/select.do?vid='<%= resultsBean.getVirtualId() %>'"
    it has to be
    page="<%= "/select.do?vid=" + resultsBean.getVirtualID() %>"
    However for my approach, I would aim for zero scriptlets, and use the struts tags even more. For instance instead of an iterator, use the struts logic:iterate tag (or the JSTL c:forEach>
    Also instead of div tags, I would use html table tags - <table> <tr><td> etc etc. Thats what its for right?
    Here is at least some of it rewritten with struts tags.
    I left out the div tags so I could focus on the "important" stuff.
    <logic:iterate id="resultsBean" name="SearchResults">
      <html:link styleClass="results"  page="/select.do" paramId="vid" paramName = "resultsBean" paramProperty="virtualId">
        <bean:write name="resultsBean" property="fullName"/>
      </html:link>
      <bean:write name="resultsBean" property="fullAddress"/>
    <%= resultsBean.getReferenceIcons(portletResponse) %>
    <input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;">
    </logic:iterate>I'm not entirely certain what you are doing with that checkbox at the end. They all have the same name, but no value. You couldn't identify at the server end which one was clicked.
    Hope this helps some,
    evnafets

  • Feedback about glitches, misbehaviors errors, missing features, bugs

    I couldn't find a thread where I could submit feedback about glitches, misbehaviors errors, missing features, bugs (and things of that nature) encountered when using Edge and needed a place where I could collect them writing about them as they happen and before I forget.
    This is not a whishlist, rather simply a place where I'd like to send feedback and hopefully get clarifications on something that may be a non working feature, erratic behavior or a bug.
    That said here is the first one of them:
    Where: Edge Animate > Library>Assets
    What: Impossible to remove from the list the folder and/or assets
    When: Always
    How: After adding asset (add an image to the composition) remove the image from the composition. Then if you would like to remove that asset, there isn't an option to do so. The contextual menu only offer one choice "Reveal in Finder" (on a Mac) which is basically reading the path of the asset and opening the containing folder for the selected asset.
    Only removing the file or folder from the location (which Edge has stored as a path) would yield a removal from the list of the Library>Asset The item will be removed from the list when, upon right clicking and selecting "Reveal in Finder" Edge will not find the asset and ask the user if they want to reload the content of that list which basically will refresh the pointers and if the asset won't be found then the entry for it will be removed from the list. (Quite a cumbersome hoop-jumping just to remove an asset from the list)
    Why: Users wanting to manage and update the content of the Assets may want to see some listed but may want to ignore other entries that have been replaced with different assets, but they want to keep the files within the folder where they were originally placed.
    For instance adding images 001.jpg through 100.jpg  and later removing all odd images or even ones from the composition, the Library will still list them in the assets unless removed from that folder "physically" and placing them somewhere else doing an "update" in the library pane later as explained above. Leaving the unused assets in the list when not necessary adds to clutter and having to perform a manual workaround to update the UI isn't very efficient
    (a minor missing feature... not a feature request to start this feedback thread)
    Hope this helps keep track of issues, but if there's a better way/system, will be glad to use that instead.
    Cheers!
    tfbkny

    Bug Reporting (is there anywhere users can provide feedback about bugs/program's glitches?)
    Not knowing where to list what would appear to be bugs/glitches I'll keep adding them here and hopefully someone at the Edge Team will look into it eventually as time allows
    Issue: Min W in Symbols' stage property won't stick to percentage.
    To reproduce behavior:
    - Create symbol,
    - Double click to edit created symbol,
    - When in Symbol Edit mode, click on the stage (once),
    - Edit the Min W of the symbol's stage properties on the left "Properties" panel,
    - Without changing the value (which will be zero), toggle px to percentage,
    - Save your project,
    ...et voilà by magic the property you just toggled reverts itself to px
    (To make it stick apparently it's necessary to change the value in the text field then toggle px to % and it will be properly kept when saving.)
    side note: I don't know if that's something that can be a factor in causing the glitch, but each time a project is saved and a the user is "inside" a symbol's stage, the values in the properties panel will display the main stage properties and then will go load again the properties of the symbol being edited.
    Cheers!
    tfbkny

  • Doubts about use of REPORTS_SERVERMAP with Forms11g HA

    Hi,
    I'm configuring a Linux 64bits Forms/Reports 11g HA environment, the point is that i have two nodes, each one with its Forms and Reports servers, let's say FormsA and ReportsA for the first node and FormsB and ReportsB for the seconde node.
    i want FormsA to be able to call reports from ReportsB and FormsB to be able to call reports from ReportsA.
    I've been reading about REPORT_SERVERMAP
    http://docs.oracle.com/cd/E12839_01/bi.1111/b32121/pbr_conf003.htm#autoId5
    But i have some doubts about its use:
    1. I will not use a shared cluster file system or any way of cache solution, i will only have my rdf files on each node, and i'm wondering if just by configuring this parameter i will be able to get the effect mentioned above ??
    2. The link provided says "Using RUN_REPORT_OBJECT. If the call specifies a Reports Server cluster name instead of a Reports Server name, the REPORTS_SERVERMAP environment variable must be set in the Oracle Forms Services default.env file"
    In fact i'm using RUN_REPORT_OBJECT but
    what is the Reports Server cluster name ?? and where do i find that name ??
    3. Is this configuration well defined:
    REPORTS_SERVERMAP=clusterReports:ReportsA;clusterReports:ReportsB
    4. At forms applications when using RUN_REPORT_OBJECT, can i assume that the report server name will be the cluster name specified at the REPORTS_SERVERMAP ??
    5. Which files should i modify rwservlet.properties or default.env ??
    Hope you can help me :)
    Regards
    Carlos

    Hi,
    1. I will not use a shared cluster file system or any way of cache solution, i will only have my rdf files on each node, and i'm wondering if just by configuring this parameter i will be able to get the effect mentioned above ??
    --> In such case what could go wrong is
    Suppose Run_report_object executed jobs successfully to ReportsA
    But web.show_document command for getjobid failed ( as ReportsA went down by this time)
    --> You will not get the output shown ( though job was successful)
    If shared cache was enabled, then Even if ReportsA is down, other cluster member ( say ReportsB)
    will respond back to web.show_document.
    Point 2,
    --> Under HA is it highly recommended to use web.show_document ( a servlet call) to execute reports. This is to help use all HA features at the HTTP , Webcache or load balancer level.
    However if there is migrated code or Run_report_object is must, then the recommendations as you see in the pointed document is must.
    REPORTS_SERVERMAP setting needs to be configured in rwservlet.properties file and also in default.env Forms configuration file to map the Reports Server cluster name to the Reports Server running on the mid-tier where the Load Balancer forwarded the report request.
    For example FormsA, ReportsA, cluster name say rep_cluster
    default.env file
    REPORTS_SERVERMAP=rep_cluster:ReportsA
    Where "rep_cluster" is the Reports Server cluster name and "ReportsA" is the name of the Reports Server running on the same machine as FormsA
    rwservlet.properties file
    <reports_servermap>rep_cluster:ReportsA</reports_servermap>
    At default.env this is not a valid entry
    REPORTS_SERVERMAP=clusterReports:ReportsA;clusterReports:ReportsB
    what is the Reports Server cluster name ?? and where do i find that name ??
    --> This is created via EM on the report server side.
    Would recommend to refer following documents at the myoracle support repository
         How to Setup Reports HA (High Availability - Clusters) in Reports 11g [ID 853436.1]
         REP-52251 and REP-56033 Errors When Calling Reports From Forms With RUN_REPORT_OBJECT Against a Reports Cluster in 11g. [ID 1074804.1]
    Thanks

  • Tag Library Error

    I am using Jdeveloper and BEA Weblogic 8.1 application server environment.
    I have custom tag and tld file for the tag. When I try to compile it , I am getting this error which just points to the begininng of the jsp file which uses the tag.
    Error: java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo.<init>(Ljava/lang/String;ZLjava/lang/String;ZZ)V
    I've tried searching online and found that it may be caused by the the wrong jar reference in classpath. I've tried adding whole bunch of different versions of servlet.jar to my classpath in the project properties but I am still getting the same error.
    Please advice
    Mikhail

    I've tried putting weblogic.jar into the web-inf/lib folder and also added library reference in the project properties but that did not fixed it.
    I still receive this error in all jsp files where I have a tag:
    Error: java.lang.NoSuchMethodError: javax.servlet.jsp.tagext.TagAttributeInfo.<init>(Ljava/lang/String;ZLjava/lang/String;ZZ)V
    Here's the content of my simple tld file:
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
    <!-- a tag library descriptor -->
    <taglib>
    <tlib-version>1.0</tlib-version>
    <jsp-version>1.1</jsp-version>
    <short-name>Bima Tags</short-name>
    <description>Application tag library for the BIMA Application</description>
    <tag>
    <name>navbar</name>
    <tag-class>com.arrownacp.bima.tags.NavBarTag</tag-class>
    <body-content>empty</body-content>
    <description>Display the Navigation Bar</description>
    <attribute>
    <name>pageName</name>
    <required>true</required>
    <rtexprvalue>true</rtexprvalue>
    <type>java.lang.String</type>
    </attribute>
    </tag>
    </taglib>
    This is how I refer to it in my jsp file:
    <%@ taglib uri="WEB-INF/BimaTags.tld" prefix="es" %>
    and in the page body:
    <es:navbar pageName="addUser" />
    Need an urgent help, thanks
    Mikhail

  • Doubt about Patch

    Hi everyone!
    I have a doubt about applying patch.
    I just applied this patch (using GUI):
    Oracle® Database Patch Set Notes
    *10g Release 2 (10.2.0.4) Patch Set 3 for Microsoft Windows (32-Bit)*
    Initially, there was an error stating that some other process is accessing one particular dll.
    I ignored it.
    I rerun the patch installation thinking that I need to get that dll as well.
    It gave a list of what has been installed and what can be installed.
    So, I selected all the remainders and installed.
    It was successful. Now, would it have ignored that dll or installed it?
    Please advice.
    Thanks in advance.
    Cheers!
    Nith
    Edited by: user645399 on Nov 26, 2010 10:24 AM

    user645399 wrote:
    Hi everyone!
    I have a doubt about applying patch.
    I just applied this patch (using GUI):
    Oracle® Database Patch Set Notes
    *10g Release 2 (10.2.0.4) Patch Set 3 for Microsoft Windows (32-Bit)*
    Initially, there was an error stating that some other process is accessing one particular dll.
    I ignored it.
    I rerun the patch installation thinking that I need to get that dll as well.
    It gave a list of what has been installed and what can be installed.
    So, I selected all the remainders and installed.
    It was successful. Now, would it have ignored that dll or installed it?
    Please advice.
    Thanks in advance.
    Cheers!
    Nith
    Edited by: user645399 on Nov 26, 2010 10:24 AMEvenif you've stopped all the windows services, sometimes some DLLs remains utilized. What I do is, make all the oracle related services manual and then restart the server.
    You can't ignore any dll related errors. If a dll is in use, oracle patching process will not replace that with a newer version of dll. I'll strongly recommend the use of ' Microsoft Process Monitor' utility to monitor, what is running on my server.
    http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
    Regards,
    S.K.

  • Deploy occurs errors after rename project.

    deploy occurs errors after rename project.
    local project (in JAVA perspective refactor->rename)
    then rebuild,create,deploy.an erros occurs:
    2009-5-19 9:35:35 /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [013]Deployment aborted
    Settings
    SDM host : 10.98.3.59
    SDM port : 50018
    URL to deploy : file:/C:/DOCUME1/ADMINI1/LOCALS~1/Temp/temp6550783345363564101WYJ_WD_FlightList.ear
    Result
    => deployment aborted : file:/C:/DOCUME1/ADMINI1/LOCALS~1/Temp/temp6550783345363564101WYJ_WD_FlightList.ear
    Aborted: development component 'WYJ_WD_FlightList'/'local'/'LOKAL'/'0.2009.05.19.09.30.59'/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application local/WYJ_WD_FlightList.. Reason: Clusterwide exception: Failed to deploy application local/WYJ_WD_FlightList. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:      com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application local/WYJ_WD_FlightList. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted
    Can anyone help me?
    thanks a lot!

    Thanks for Rajat Jain  and Umang Mathur  's answers 。
    the demo project can be download in SDN::TutWD_FlightList.zip   
    before i sign this thread ,i've followed the issue : (project folder,.project file )
    Rename package for an existing Web Dynpro App
      tips:if i only change .project file,i can not import the project.
    but these do not work。it shows the same erros.
    after then i just try to redo this in the other way: (in java perspective ,refactor->rename)。
    it shows the same errors.
    my environment:
    studio:Version: 7.0.11
    JAVA AS:7.00 sp18

  • Doubts about Temporary Table.

    Hi,
    I am using Temporary Table.
    But the insert command takes too much time compare to insert in Normal table.
    One more doubt about Temporary Table is:
    Suppose there are two different users. They connect and first insert rows of their use .Now they go for select.
    Does select of one user goes to check the rows of second user also or the temporary table treats 2 users data as inserted in 2 different tables?
    Help!!!

    Nested structure (not deep - deep means their a string or a table as a component)
    TYPES: BEGIN OF tp_header_type,
             BEGIN OF d,
               empresa TYPE ...
               num_docsap TYPE ...
            END OF d,
            awkey TYPE ...
          END OF tp_header_type.
    matt

  • Persistent Premiere Pro CC 2014 error message: "This project contains a sequence that could not be opened..."

    I've been working on a project and everything was working fine. I close the program and reopened it an hour later. Now, I keep getting this error message: "This project contains a sequence that could not be opened. No sequence preview preset file or codec could be associated with this sequence type."
    I attempted to use one of the Adobe suggested solutions... opening a new project, clicking on the "Help" Tab and deactivating, but the tab doesn't have that option. I'm also a little afraid to uninstall and re-install premiere pro, the other suggestion, because I'm worried about losing my files.
    I would be grateful if anyone could help me.
    Thank you very much.

    Features and Sequence Presets missing | Adobe Premiere Pro CS6
    FAQ: Why are some codecs and sequence presets missing from my installation of Premiere Pro?
    What to do when you get a preview preset codec error in Adobe Premiere Pro CS6 | Val Gameiro, Writer, Director, Filmmake…
    if you try the project repair from Val's blog you will need to unzip the .prproj file to get access to the xml file.

Maybe you are looking for