BUG; jdk1.3; Gridcontrol; Attention JDeveloper Team

I have found yet another bug in the implementation of gridcontrol and jdk1.3.
I have the following renderer for my text fields.
import javax.swing.table.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
* A Class class.
* <P>
* @author Linda B. Rawson
public class DefaultTextRenderer extends DefaultTableCellRenderer
* Constructor
public DefaultTextRenderer() {
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
Component comp = super.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);
String myFlag = "";
try {
// this row index must correspond to the run flag column in the gridcontrol
myFlag = (table.getValueAt(row,15).toString());
myFlag = (myFlag == null) ? "" : myFlag;
if (myFlag.equals("P") ) {
comp.setBackground(Color.lightGray);
} else if (myFlag.equals("S") ) {
comp.setBackground(Color.yellow);
} else if (myFlag.equals("F") ) {
comp.setBackground(Color.red);
} else {
comp.setBackground(Color.white);
} //This is to catch the null row in gridcontrol from jdev bug
catch (NullPointerException e) {
return comp;
I implement the renderer like this:
DefaultTextRenderer textRenderer = new DefaultTextRenderer();
TableCellRenderer renderer;
renderer = textRenderer;
m_table = gridControl.getTable();
m_table.getColumnModel().getColumn(1).setCellRenderer(renderer);
In JDK 1.2 it colors the appropriate row just like I want.
In JDK1.3 it will not do the first occurance of the row. In otherwords if I want the first row in the grid colored it fails.
You need to test this in your upcoming version.
Linda
null

Hi,
we have faced similar compatibility problems
when testing our application using JDEV3.2
and JDK1.3 (Browser crashed);
Since we use JDK1.3.1 (it has been released aready by SUN) this severe problem vanished.
I really share your concerns about the grid
control in JDEV3.2.3 and I hope that we find
a way to track the successful treatment of
BUG 1806180!
Have fun
@i

Similar Messages

  • JDeveloper Team - Refers: How do I display multiple rows in a gridControl

    JDeveloper Team
    With reference to the previous reply..
    My query is not based on a view object. It uses the executeRetrieval command to do the select statement.
    The query obtains the correct number of rows but it displays only the first record out of the selected rows.
    pls help me find a solution.
    null

    Can you try to list the row values using the dataitem that the executeRetrieval method returns.
    ex.,
    import javax.infobus.*;
    DbAccess db = sessionInfo.getDbAccess();
    ScrollableRowsetAccess scr =
    (ScrollableRowsetAccess)db.executeRetrieval("select * from dept", "infobus:/oracle/Session1/DynamicQuery", null);
    System.out.println(scr.getRowCount());
    null

  • Who can help me to submit this bug to the adobe indesign development team?

    I developed a indesing plug-in, and its function is to increase the two kinds of footnotes style,
    When the user selects this type of footnote style, and insert some footnote to the document
    The user then export the document to pdf。
    there is no  problem in indesign CS3 and indesign CS4.
    but in indesign CS5 and CS5.5,
    export pdf, there will be two kinds of format:
    Adobe PDF(Interaction)
    Adobe PDF(Print)
    If the user chooses to export a pdf(Interaction),there is no problem,
    but if user choose to export to pdf(print),
    All of the footnote is replaced by an ordinary Arabic numerals 1,2,3,4,......
    I think there is a bug in exported the pdf function in cs5 and cs5.5,
    so ,who can help me to submit this bug to the adobe indesign development team? thanks.
    Through the link below to download a trial version of this plugin for indesign cs5
    http://www.cppblog.com/Files/lyj2871/1380_CS5.rar

    who can help me?

  • Frustrated with DATA TAGS (JDEVELOPER TEAM)

    I have been trying to delete a record from an HTML form using data tags and unfortunately I am unable to make any progress.
    It keeps telling me that I got to use either
    "rowkey" or "rowkeyparam" and when I try to use it, it gives me a jsp exception.
    This is the same case with me when I try to locate a record using the "Find" action.
    So how am I to delete or update a record which is displayed in an HTML form?
    I saw the "howto" on using the "rowkeyparam" but it simply doesn't work as advertised.
    I always end up getting a JSP exception and the end result being I am unable to "UPDATE" OR "DELETE" any record from an HTML form.
    JDeveloper Team, Please advice. Do you have any sample examples of "UPDATING" and "DELETING" a record from an HTML form?
    I am really frustrated!!!!
    null

    To see a quick example of a working UPDATE example simply use the "DataPage" Wizard.
    When you choose the Edit Form generation option from the wizard, it will generate a working example of an "Edit Form"
    JSP app using the Data Tags and a RowKey parameter.
    For more info on the DataPage Wizard see: http://otn.oracle.com/products/jdev/info/jdev/datapage/s000.html
    As for deleting a record, this is also done with the Row tag.
    Instead of
    <jbo:Row id="myrow" datasource="ds" rowkeyparam="MyRowKey" action="Update">
    <jbo:SetAttribute dataitem="*"/>
    </jbo:Row>
    You can use:
    <jbo:Row id="myrow" datasource="ds" rowkeyparam="MyRowKey" action="Delete"></jbo:Row>
    Providing you pass the rowkey value as the Html parameter "MyRowKey"..
    null

  • JDeveloper Team: How Do I minimize the number of Oracle Sessions using Data Tags?

    I am trying to create a stateful application thru my JSP pages. Everytime there is a reference to the application module using the data tag, it looks like it creates a new Oracle Session. But thats not what I want to do.
    I have a module in which my first JSP page allows viewing of the data and in subsequent pages I allow insert, update, delete, commit etc.
    My Questions:
    1) The problem that I am encountering is that every new page that I go to creates a new Oracle session even though I specify the "Stateful" release mode.
    How do I avoid this?
    It looks like , if one browser user can potentially create 10-20 oracle sessions thru one module, imagine what the impact will be when we have hundreds of users.
    2) The sample JSP pages I saw has the username and password hard coded in it every time. Why? For a stateful application can I not specify the username and password just once and have the other JSP pages use the same userid and password.
    What are the pros and cons? I thought if I don't use the username and password in all the JSP pages then it probably will not create additional Oracle sessions but that is not true!!
    3) If it creates several Oracle sessions , will it not cause locking problems? If so, How do I minimize locking problems in a stateful application.
    JDeveloper Team Please advise!!
    AM I missing something? I would appreciate if someone can help me out!
    null

    Thanks a lot for the information. That thread was indeed very helpful. But it still didn't answer all my questions:
    1) In the thread you mentioned, it mostly talks about Web beans. In a jsp page (using Web bean) we need to first invoke setReleaseApplicationResources(true) and then invoke releaseApplicationResources().
    Does this apply to data tags? I mean I have a tag <jbo:ReleasePageResources releasemode="Stateful" />. Is this enough to release the application module back to the pool or do I have to have something equivalent of setReleaseApplicationResources(true)?
    2. In a stateful application, the state of an application is maintained between requests via a browser cookie. For each browser, you can have one state per application module class. I was attempting to run "several browser sessions from the same machine" and the end result was that I got errors and unpredictable results ie it returned me far fewer rows then I saw originally. Should I be actually be running the browser session from different machines?
    3. In JDeveloper Documentation (section About Application Module pooling) there is a note section : "If the application module is not recycled the data stays the same. However if the application module was recycled and then activated through a failover, the activation logic re-executes the view objects, so it may bring in more or less rows then originally seen by the clients due to any database updates that have occured."
    This is exactly what is happening to me? How do I get rid of this problem? I want to be able to see all the original rows + any new rows That have been committed. Please advise!
    4. Are the JDBC connections tied to application module instances? Is it one JDBC connection per application module instance? So, in a stateful JSP, if I end up using a different application I also get a different JDBC connection. IS this true?
    5. Does the no of application module instances depend on the no of available JDBC connections? Because it looks like if you set the max no of connections to "5" and set the max no of application module instances to "10", It will be able to instantiate only "5" application module instances due to the limitation set by connection pool.
    6. At times I get errors which indicates that the row in view object does not exist. Is this something familiar? Or is it the same problem that John discussed in his thread.
    Thanks in advance!

  • JDeveloper Team - How do I display multiple rows in a gridControl

    When I execute a SQL select statement and display the results in a gridControl only the first row gets displayed in the grid.
    Could you please give me a solution for this problem?
    null

    If this query is based on a View object, can you verify the number of rows returned in BC4J Tester ?.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by kusan Atukorala ([email protected]):
    When I execute a SQL select statement and display the results in a gridControl only the first row gets displayed in the grid.
    Could you please give me a solution for this problem?<HR></BLOCKQUOTE>
    null

  • For jdeveloper team

    I'm hoping I can get some feedback on a couple of issues regarding the usage of bc4j framework in a web-application. I've found some other posts asking some of the same questions, but have not been able to find any posts with answers. I apologize in advance if I've missed them:
    1) post vs. get: Within the OC4J container (when run from inside Jdeveloper), using the post method on forms seems broken. Specifically, I have a page which posts with the form's action set to a controller servlet. Using debug mode, I can see that as the controller servlet receives the request, the parameters do exist. However, the controller then forwards to a view page which, when debugged, shows that the request's parameters are empty. On a side note, doing the very same thing under tomcat (this very same application) works fine (i.e., the 'view' jsp receives the parameters from the original request. According to my reading of the spec, a forward should preserve the request parameters. Finally, using the 'get' method does preserve the request parameters under oc4j.
    2) JSP-centric development: While digging through the web-application samples and various HOWTO documents, it appears that the recommended way of building web-applications is to make use of the bc4j datatags. This is not necessarily the way many folks want to develop non-trivial web-apps these days. Keeping with the philosophy that JSP code should be related to the 'view' only, and that all 'controller' code should be separate, what (if any) plans do the jdeveloper/bc4j teams have to open the functionality available in the jsp datatags for servlet development? I certainly understand that pretty anything I can do using datatags are possible to do from a servlet by using the given bc4j API; however, even just getting the application module from the pool ends up being significantly more work than using the <jbo:ApplicationModule> tag. Additionally, when I've looked into using pieces of code in the datatag implementations, and I then check the javadocs, I see an awful lot of "Internal: Applications should not use this method", or worse yet, no explanation of what the method is supposed to do. So at this point, I've got much more "code" in my JSP's that I'd like, and my controller-servlet and related modules are really not doing as much as I'd like them to do.
    Thanks in advance for any input!

    John,
    For the first question, the only thing I can related to this problem is a bug in OC4J which has been fix in the 9.0.2 release. I do not know which version of OC4J you are using but that might be the problem. More specifically, it had to do with the use of the JAZN request handler no processing the request parameters correctly after a forward or an include. May be you should post a message on the oc4j message list.
    As for the second question, your are identifying correctly some problems associated the 9.0.2 BC4J JSP application wizards. The Controller written into View problem is actually not because of the BC4J datatags themself but more because of the missing controller part.
    The BC4J datatags provides a great way to retrieve the model information and display it in the view. But infortunately we had to build the controlling part using JSP and that become very messy (even if we tried very hard to put of controlling code in one file called DataHandlerComponent.jsp and use as many tags as possible).
    In our next release (9.0.3) we are extending our model by integrating with the Struts Controller.
    Here is a list of current problems that Struts will help us fix:
    * The execution of the business logic and the event handling is done in the JSP page itself forcing you to write a lot of java code in scriptlet not easily portable.
    * Missing page flow control.
    * No Runtime NLS support.
    * The application pool management is error prone because of the requirement of the ApplicationModel and ReleasePageResource tag in specific place in the JSP file.
    * Tricky error handling.
    So using the servlet controller is the right thing to do, would it be your own or Struts. We can help you with the code to manage the ApplicationModules with the pool or you can wait for 9.0.3 where this will be handle with Struts.
    Charles.

  • (BUG REPORT) Kudos to the Dev Team OS 2.0 Rocks Major Improvement

    Kudos to the BB Playbook OS 2.0 Dev Team (Excellent Release!!)I want to give my personal thanks as a loyal blackberry customer to the Developer/ Coding Team over at RIM. I am thoroughly impressed with the update. I absolutely love the reader feature. The new home screen and folders is implemented wonderfully. Also, it appears battery life has been improved (No easy task). Great job. 
    There are a few little bugs to be fixed for the next maintanence update. 
    1. Flash is not polished, it's only partially working.
    The daily show (with John Stewart) (www.thedailyshow.com)(full episodes link), and several other flash video webistes have trouble with the controls (play, pause). The controls either don't show, or don't function, or neither, or function sporadically. Also, possibly an app could be created so that a flash video stream would open in a separate window allowing the controls to function correctly if there is some reason it is difficult in the web browswer. I can get the daily show playing but, pausing it, or fastforwarding, now that's a challenge. Make the buttons larger maybe (I don't know if that's possible, not familiar with flash.)
    2. Media Player: The media player has some bug in the code that is causing it to become choppy when scrolling through the list of songs.  I have some album art, and maybe that has something to do with it. But I didn't notice it before the update.
    Also, it may be a neat idea to add some different color backgrounds to the music player skin(Hot pink, or something) to take care of the lady geeks, women buy stuff too, think all girl dorm room full of playbooks. Also, it is kind of a less than sexy music player skin (Unlike the new home screen wow, very polished.) Also, because all my music doesn't have album art, it makes the music player look strange. Some of the icons have only 3 of 4 pictures filled in Looks weird. 
    Also, when fast forwarding with the slider bar clicking with my finger causes a slight pop in the earphones (It needs to mute, then fastforward, then unmute, then play.) Imagine a playbook hooked up at a wedding to a 5000 dollar soundsystem, pop, then bye bye speakers.
    3. Book Reader Power Mode - I was using "Book Reader" app from the app store and I noticed something that could be fixed. The truth is that when people read ebooks, the power managment settings should be a little different. I suggest adding a 3rd power managment mode that the ebook reader apps can access. That way, every time I open an ebook it sets the screen to stop going dim every 30 seconds like I would use for messages and general use throughout the day. It should stay the same in this mode rather plugged in or not. The screen brightness should not be affected by the power plug either. "Nothing like waking the wife up with the flashlight tablet because it was going dead and you decided to plug it in while reading your technical manual at 2am."  
    4. Silent on schedule (Totally Silent, VIP Vibrate, VIP ring) (A feature that I wished both my bold 9700, and playbook had was a feature I'll call silent on schedule. The idea is simple, for the most part people know what time they need their phone to shut up and be quiet. Why can't RIM integrate silent mode with our calenders. A simple checkbox in the calender options and your phone (and playbook) will automatically stay silent, except for VIPs. It goes without saying that your ringer should go to normal at the end of the meeting, or court appearance (lots of lawyers use blackberry), lot's of students would appreciate this too. It would save us from having to constantly be changing our ringing mode all day. If I were RIM I would patent that one. (If you do, and want to send me a new touch screen phone as a thanks that's cool with me, but not required, just free thoughts for you to use however you want.) 
    5. Strange WiFi (The playbook has a strange issue where sometimes the wifi displays near zero. I don't know if this is software or hardware. My MBP and Bold 9700 have no such issue. It's a cisco/linksys router with dual g/n. 
    6. Before I forget, the web browswer is now awesome. Load times are acceptable. I would like to add though that of all the web browswer's the style, and color of this one is not what I would call "in fashion." 
    7. Idea: create an over the air sync system for the blackberry bridge. It should always keep the contacts, calender and maybe photos updated. Since, someone surely has a patent on this one, let me suggest a workaround called 1 at a time. Do an initial sync via usb to both devices on the desktop manager. Then only one device has to ever be connected to sync to laptop, as the other one syncs over bluetooth one item (contact, calender entry, photo at a time.)
    8. Not always on bluetooth. Something tells me that it is not the most secure thing to leave the bluetooth constantly running and connected giving those keys over the air. Maybe it could connect at intervals (or upon status change (message, new contact, calender entry)). This might also save battery too. Just a thought. 
    I know how easy it is to forget about style, when mechanics are tinkiering around with the insides, but make the fastest car ugly, and no one will buy it. Also, Bill Gates was asked while in the presence of Steve Jobs what was the one thing Steve had he wished he had... Bill Gates said roughly "I wish I had Steve's eye for Style." 
    The truth is as technology advances, it will fade to the background. Fashion will be where people meed the device. People love a good running car, but gorgeous get's em into the showroom. 
    Oh yea, like the new keyboard a lot. 

    Have I mentioned how much i love my playbook now Great job on os 2.0

  • Is this a bug or a feature in JDeveloper 11.1.1.4?

    Hello everybody,
    when I try to create a new "Reusable Process" with the composite editor in Jdeveloper, nothing happens on in the composite design view! I can see the process in the file structure and I can also edit the process in the bpm editor, but I can't see it on the composite.
    This looks like a bug to me. Can anybody confirm this?
    Best regards, Chris
    Windows 7 (64 bit)
    JDK 1.6.0_24 (64 bit)
    JDeveloper Build JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
    BPMN Editor 11.1.1.4.0.5682
    SOA Composite Editor 11.1.1.4.0.56.82

    it's a feature of cource. all bugs in 11g are features!

  • JDeveloper Team Development with SCM

    I am trying to use JDeveloper & SCM in a team environment. I have SCM working for version control. Do I need to have all developers share the same SCM connection instead of connecting to the repository with their own accounts?
    Thanks in advance,
    Steve

    Steve,
    Create a configuration stripe of the code you want the developers to work on.
    Create a workarea based on this configuration and make it shared, either by granting
    access to each developer or grant access to the PUBLIC role.
    When each developer creates their own private workarea ask them to create
    it based on the above shared workarea. Each developer thus has access to the
    same code and will not disrupt each other with development they are working on.
    David

  • Is there a bug with stateful WebServices in JDeveloper 10.1.3.1 ?

    Hi
    I created an ultra simple JAX-RPC Webservice from the following class using the JDeveloper WebService Wizard:
    class myWebService
      private static int SessionId;
      public myWebService() {SessionId++;}
      public int getSessionID() {return SessionId;}
    } I declared this WebService as Stateful with Session Scope. The Timeout is 600s;
    Running this WebService in JDeveloper 10.1.3 (using the generated HTML-Testinterface) I see that "getSessionID" returns the same ID on each invocation. Obviously state is managed correctly.
    However, running the same WebService in JDeveloper 10.1.3.1 I see that "getSessionID" returns a different ID on each invocation. Obviously state has been lost.
    Is this a bug in JDeveloper?
    Thanks for your help.
    Frank Brandstetter

    Is anyone using stateful webservices with JDeveloper 10.1.3.1 ?

  • AJAX code compilation error in jdk1.4.2_15 in JDeveloper 10.1.3.3.0

    I am using AJAX for search functionality in our appication which involves ADF JSF,jspx pages in JDeveloper 10.1.3.3.0. When I compile the following code it compiles fine without error in jdk1.5 but gives compilation error in jdk1.4.2_15.
    public List<String> autoCompleteFindUniqueNames(String searchString){
    UniqueEmployeeNamesImpl hits = this.getUniqueEmployeeNames1();
    hits.setNamedWhereClauseParam("searchPrefix",searchString.toUpperCase()+ "%");
    hits.setRangeSize(5);
    hits.executeQuery();
    ArrayList resultset = new ArrayList((int)hits.getEstimatedRowCount());
    for (Row row:hits.getAllRowsInRange()){
    resultset.add((String)row.getAttribute("LastName"));
    return resultset;
    Compilation error giving on the line " for (Row row:hits.getAllRowsInRange()){ "
    and it says " Error ; Expected "
    Can somebody helpme out what should I change on this line in order to compile this ?
    Thanks in advance,
    Ram

    Frank,
    Thanks for your response. I removed <String> after LIST and it compiles. But the problem
    is with the following iterator code which is giving error while compiling in jdk1.4.2_15. Trying to find out the equivalent iterator code of the following which is in jdk1.5
    Row row:hits.getAllRowsInRange()
    Thanks,
    Ram

  • Jdeveloper Team RE Jdeveloper 9.0.3 For Non-Oracle Databases

    I see that support for non-Oracle databases and Third-Party JDBC drivers is very improved. However, I have tried to use the SAPDb JDBC driver and the BC4J tester and generated Swing clients all display greyed so that no updates are possible. This appears to be a bug since Jbuilder works fine with this driver. However, I think Jbuilder's Express dataset and commit philosophy is really bad. Any commitments as to when this will be fixed?

    Yes, I examined the attribute settings and manually adjusted them in the entities and views. They are now updateable. Using Jdeveloper with SAPDB would be very tedious. Jdeveloper did not recognize foreign key constrains, primary keys, nor that attributes were updateable.
    Is there a way to include SAPDB in the testing? It is trivial to install and run and would make Jdeveloper a more robust tool. I do not like Jbuilder's approach to master-detail client screens and would recommend using Jdeveloper for this type of work if it could handle more databases like SapDb.

  • BUG:  Expression Language not supported (JDeveloper 10.1.3.0.4(SU1))

    Hi!
    I have the following code in a jspx page:
    <c:if test="${!empty bean.genericErrorMessages}">
    <h:outputText styleClass="texto_red"
    value="#{bean.genericErrorMessages}"
    id="applicationErrorMessages" escape="false"/>
    </c:if>
    All code compile well, but when i run the jspx page the following exception occur.
    The problem is that in JDeveloper Early Access 3 the problem doesn't occur.
    But in the Jdeveloper version 10.1.3.0.4(SU1) the exception occur.
    I'm running JDeveloper in a Windows XP SP2, JSF 1.1_01 and JSTL 1.0
    Does anyone know a solution to this problem? Tanks.
    The Exception:
    Error: Expression Language not supported in compile time attribute test
         at oracle.jsp.parse.JspUtils.hasELWithCreation(JspUtils.java:1248)
         at oracle.jsp.parse.JspUtils.processELAttribute(JspUtils.java:1274)
         at oracle.jsp.parse.OpenJspTagHandler.processAttributeValue(OpenJspTagHandler.java:331)
         at oracle.jsp.parse.JspParseTag.parseXMLSrc(JspParseTag.java:1368)
         at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java:1413)
         at oracle.jsp.parse.OpenJspTagHandler.parse(OpenJspTagHandler.java:802)
         at oracle.jsp.parse.JspParseTag.genXMLSrcTag(JspParseTag.java:867)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcNextTag(JspParseTag.java:745)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcBody(JspParseTag.java:1121)
         at oracle.jsp.parse.OpenJspTagHandler.parseXMLSrcBody(OpenJspTagHandler.java:739)
         at oracle.jsp.parse.JspParseTag.parseXMLSrc(JspParseTag.java:1375)
         at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java:1413)
         at oracle.jsp.parse.OpenJspTagHandler.parse(OpenJspTagHandler.java:802)
         at oracle.jsp.parse.JspParseTag.genXMLSrcTag(JspParseTag.java:867)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcNextTag(JspParseTag.java:745)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcBody(JspParseTag.java:1121)
         at oracle.jsp.parse.OpenJspTagHandler.parseXMLSrcBody(OpenJspTagHandler.java:739)
         at oracle.jsp.parse.JspParseTag.parseXMLSrc(JspParseTag.java:1375)
         at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java:1413)
         at oracle.jsp.parse.OpenJspTagHandler.parse(OpenJspTagHandler.java:802)
         at oracle.jsp.parse.JspParseTag.genXMLSrcTag(JspParseTag.java:867)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcNextTag(JspParseTag.java:745)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcBody(JspParseTag.java:1121)
         at oracle.jsp.parse.OpenJspTagHandler.parseXMLSrcBody(OpenJspTagHandler.java:739)
         at oracle.jsp.parse.JspParseTag.parseXMLSrc(JspParseTag.java:1375)
         at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java:1413)
         at oracle.jsp.parse.OpenJspTagHandler.parse(OpenJspTagHandler.java:802)
         at oracle.jsp.parse.JspParseTag.genXMLSrcTag(JspParseTag.java:867)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcNextTag(JspParseTag.java:745)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcBody(JspParseTag.java:1121)
         at oracle.jsp.parse.OpenJspTagHandler.parseXMLSrcBody(OpenJspTagHandler.java:739)
         at oracle.jsp.parse.JspParseTag.parseXMLSrc(JspParseTag.java:1375)
         at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java:1413)
         at oracle.jsp.parse.OpenJspTagHandler.parse(OpenJspTagHandler.java:802)
         at oracle.jsp.parse.JspParseTag.genXMLSrcTag(JspParseTag.java:867)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcNextTag(JspParseTag.java:745)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcBody(JspParseTag.java:1121)
         at oracle.jsp.parse.OpenJspTagHandler.parseXMLSrcBody(OpenJspTagHandler.java:739)
         at oracle.jsp.parse.JspParseTag.parseXMLSrc(JspParseTag.java:1375)
         at oracle.jsp.parse.JspParseTag.parse(JspParseTag.java:1413)
         at oracle.jsp.parse.OpenJspTagHandler.parse(OpenJspTagHandler.java:802)
         at oracle.jsp.parse.JspParseTag.genXMLSrcTag(JspParseTag.java:867)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcNextTag(JspParseTag.java:745)
         at oracle.jsp.parse.JspParseTag.parseXMLSrcBody(JspParseTag.java:1121)
         at oracle.jsp.parse.JspParseTag.parseXMLSrc(JspParseTag.java:1375)
         at oracle.jsp.parse.JspParseTagFile.parseXMLSrc(JspParseTagFile.java:296)
         at oracle.jsp.parse.JspParseTagFile.parse(JspParseTagFile.java:211)
         at oracle.jsp.parse.OracleJsp2Java.transform(OracleJsp2Java.java:403)
         at oracle.jsp.runtimev2.JspPageCompiler.attemptCompilePage(JspPageCompiler.java:558)
         at oracle.jsp.runtimev2.JspPageCompiler.compilePage(JspPageCompiler.java:348)
         at oracle.jsp.runtimev2.JspPageInfo.compileAndLoad(JspPageInfo.java:610)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:634)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:370)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:298)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:42)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:205)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
         at org.apache.shale.faces.ShaleViewHandler.renderView(ShaleViewHandler.java:143)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at pt.ivv.commonbusiness.presentation.servlets.filter.HibernateFilter.doFilter(HibernateFilter.java:68)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:534)

    Hello,
    You should not try to mix JSP and JSF EL prior to JSF 1.2 and JSP 2.1, the result is inconsistent most of the time.
    To fix your current issue though, I suggest you use the rendered attribute instead of a <c:if>, so would be:
    <h:outputText styleClass="texto_red"
    value="#{bean.genericErrorMessages}"
    id="applicationErrorMessages" escape="false" rendered="#{!empty bean.genericErrorMessages}"/>Regards,
    Simon Lessard

  • Selecting code bug/wishlist (for FlexBuilder 3 Dev team)

    When i try to select a word in the mxml code by double click
    on it, sometimes can't select the hole word. I'm talking about
    spanish words in a string or a comment line. by example this string
    below (paste it in flexbuilder 3 and try to select the
    "modificación" word by double click on it... i will be
    selected only before the "ó" character):
    I hope that can be fixed in the final release of Flex
    Builder

    Hi mxmotion!
    Please log this bug in the public Flex bugbase at
    http://bugs.adobe.com/flex/
    Thanks!
    Mac

Maybe you are looking for

  • HELP ! Need to change video size in project sequence...

    When creating a project last month I accidently created it as 1280x960 in the sequence settings, but meant to create it as a 1920x1080 which is what all the video clips are in size. Now I have this nicely edited project but need to convert it to a 19

  • Trace Global Sequenz in BPS

    Hi at All, I´m looking for a possibility to trace an Global Sequenz in BPS!? I would know, which function in the Local Sequenzes under my Global Sequenz is a performance killer... Any ideas? Thx.. a lot! BR David

  • Can't Export U3D files in photoshop v13.0.2

    I have just updated Photoshop CS6 Extended to v13.0.2 (from v13.0.1) but when exporting 3D files now it no longer has the option to export U3D file type but v13.0.1 does. Does anyone else have this problem? or is there a way to export U3D file type i

  • Forgot Id and password of previous Z10 and cannot restore backup on new Z10

    I forgot BB ID and password of previous Z10 which I gave to my daughter. Cannot restore back-up done from the previous Z10 to the current one as it requires the previous ID  and password.

  • Some songs are not copied to Ipod

    To perform a clean install of Leopard, I erased the hard disk, installed the system and recovered all files from a Timemachine backup. Everything went fine. But, when I synchronised one of my 4 Ipods, a few songs (77 out of 2000) were not copied (Mac