InsertTag doesn't Implement Tag????

I'm trying to create a tag to implement templates. I'm using the PetStore as an example. I get to this point but I do not understand the message! Is not TagSupport implementing the Tag interface? The tag InsertTag extends TagSupport and calls super() in the constuctore??
Can anyone help me with the cause of this message??
Parsing of JSP File '/template.jsp' failed:
/template.jsp(-1): Error in tag library at: 'j2ee': error introspecting class: 'admin.taglib.InsertTag': weblogic.servlet.jsp.JspException: (line -1): Error in tag library at: 'j2ee': class admin.taglib.InsertTag doesn't implement javax.servlet.jsp.tagext.Tag
probably occurred due to an error in /template.jsp line -1:

Thanks for you help Martin. Attached is the source of InsertTag and templates.jsp I'm using Weblogic server 5.1 and VisualCafeeEE 4.5
package admin.taglib;
import javax.servlet.jsp.JspTagException;
import javax.servlet.jsp.tagext.TagSupport;
import admin.control.web.Parameter;
import admin.control.web.ScreenFlowManager;
import admin.control.util.WebKeys;
import util.Debug;
public class InsertTag extends TagSupport {
private boolean directInclude = false;
private String parameter = null;
private Parameter parameterRef = null;
private ScreenFlowManager screenManager;
public InsertTag() {
super();
public void setParameter(String parameter){
this.parameter = parameter;
public int doStartTag() throws JspTagException {
try{
pageContext.getOut().flush();
} catch (Exception e){
try{
screenManager = (ScreenFlowManager)pageContext.getServletContext().getAttribute(WebKeys.ScreenManagerKey);
} catch (NullPointerException e){
throw new JspTagException("Error extracting screenManager from session: " + e);
if ((screenManager != null) && (parameter != null)) {
parameterRef = (Parameter)screenManager.getParameter(parameter,pageContext.getSession());
} else {
Debug.println("InsertTag: screenManager is null");
if (parameterRef != null) directInclude = parameterRef.isDirect();
return SKIP_BODY;
public int doEndTag() throws JspTagException {
try {
if (directInclude && parameterRef != null) {
pageContext.getOut().print(parameterRef.getValue());
} else if (parameterRef != null) {
if (parameterRef.getValue() != null) pageContext.getRequest().getRequestDispatcher(parameterRef.getValue()).include(pageContext.getRequest(), pageContext.getResponse());
} catch (Exception ex) {
Debug.println("InsertTag:doEndTag caught: " + ex);
return EVAL_PAGE;
<%-- page errorPage="errorpage.jsp" --%>
<%@ taglib uri="/tlds/taglib.tld" prefix="j2ee" %>
<html>
<head>
<title>
<j2ee:insert parameter="HtmlTitle" />
</title>
</head>
<body bgcolor="white">
<j2ee:insert parameter="HtmlBanner" />
<j2ee:insert parameter="HtmlTopIndex" />
<table height="85%" width="100%" cellspacing="0" border="0">
<tr>
<td valign="top">
<j2ee:insert parameter="HtmlBody" />
</td>
</tr>
<tr>
<td valign="bottom">
<j2ee:insert parameter="HtmlPetFooter" />
</td>
</tr>
<tr>
<td valign="bottom">
<j2ee:insert parameter="HtmlFooter" />
</td>
</tr>
</table>
</body>
</html>

Similar Messages

  • My SDK doesn't implement Cipher, course of action

    Hi, all. First of all let me tell you that I've checked the forum for this topic. Found 44 threads when searching for "Cipher". I've pretty clear that due to restrictions from the U.S. Goverment, the Sun JC kit doesn't implement the Cipher class. That's understood.
    Now, my SmartCard Vendor (DataCard Aptura) doesn't implement it neither the Cipher class on it's sdk. I've asked for support and they have told me that they won't add that Class. So I can't count on them.
    So, the purpose of this post is to find out the course of action. I've just two options, either I implement the class by myself or I get it (buy it, if it's possible) somewhere else. I don't want you to do my work, I just need some light because I'm new to this cryptography over smartCard thing.
    So I've this questions which require short answer (hope so):
    1.) According to your experience, should we implement it by ourselves? Or should we look for some vendor that has already implemented it?
    2.) I that were the case (that we should implement it by our own) could you estimate the amount of time (or resources) needed, considering just one programmer.
    3.) Are there some special considerations that I should take in order to save memory. Please notice that the current version of Aptura prohibits the use of transient arrays on the card, due to a bug inside the core of the VM. It doesn?t reclaim the space after it?s been used, for instance after a reset, it won?t reclaim the all the transient space used.
    4.) If it would take a considerable amount of time to implement the Cipher class by our own, do you know some vendor that has already implemented and can save us that time?
    Any other light or aspect that you might think it's important and I've missed here, would be appreciated.
    Many Thanks in advance.
    CL

    Well no. All I want is to have cryptography on my card (that I didn't choose for the project I just received like "this is the card"). And this vendor doesn't have an implementation of the Cipher class.
    As a parenthesis () there is not Int as you properly mentioned, but I implemented by hand, unsing Zhiqun Chen proposal (on her book JavaCard Technology for SmartCards). I know that approach is not quite efficient, but it works (considering that for financial purposes a short is not enough).
    Well, back to our business. Also I'm concious that the approach of implementing the cryptography by myself would not win the efficiency award for Smart Card, but I need to do something and trying to change the card at this point (I didn't choose it, as I told you) would not be the first solution, due to the fact that the production cards are already ordered. So that's the actual situation.
    So, I'm pretty sure the problem is on the side of my vendor. Is not that I'm washing my hands on him, it's just the fact. Here you'll find my little test I'm trying to run. It crashes after the following line on the process (APDU apdu) method:
    cipher.doFinal(data, START, (short) data.length, cipherText, START);
    And here's my code:
    //CVS Tests
    package com.datacode.bi.Purse;
    import javacard.framework.*;
    import javacardx.crypto.*;
    import javacard.security.*;
    public class Purse extends Applet
    public static final byte START = (byte) 0x00;
    private DESKey desKey;
    private Cipher cipher;
    private byte [] cipherText;
    protected Purse(byte[] bArray, short bOffset, byte bLength)
    cipherText = new byte [100];
    try {
    desKey = (DESKey) KeyBuilder.buildKey(KeyBuilder.TYPE_DES, KeyBuilder.LENGTH_DES, false);
    desKey.setKey( keyData, START);
    cipher = Cipher.getInstance(Cipher.ALG_DES_ECB_ISO9797_M1, false);
    cipher.init(desKey, Cipher.MODE_ENCRYPT);
    catch (CryptoException e) {
    register();
    * Installs Java Purse applet.
    * @param bArray to pass to register() method.
    * @param bOffset to pass to register() method.
    * @param bLength to pass to register() method.
         public static void install( byte[] bArray, short bOffset, byte bLength )
    byte instanceLength = (byte) bArray[bOffset];
    short instanceOffset = (short)(bOffset + 1);
              new Purse(bArray, instanceOffset, instanceLength);
    * Performs the session finalization.
         public void deselect()
    * Dispatches APDU commands.
    * @param apdu APDU object
         public void process(APDU apdu)
    byte[] buffer = apdu.getBuffer();
    try {
    //ISOException.throwIt(
    cipher.doFinal(data, START, (short) data.length, cipherText, START);
    //ISOException.throwIt(DEBUG_CODE);
    apdu.setOutgoing();
    apdu.setOutgoingLength((short) cipherText.length);
    apdu.sendBytesLong(cipherText, START, (short) cipherText.length);
    catch (APDUException e) {
    catch (CryptoException e) {
    private final static byte [] keyData = {    (byte) 'C',
    (byte) 'a',
    (byte) 'r',
    (byte) 'p',
    (byte) 'e',
    (byte) ' ',
    (byte) 'D',
    (byte) 'i'
    private static final byte [] data = { (byte) 68,
    (byte) 111,
    (byte) 32,
    (byte) 121,
    (byte) 111,
    (byte) 117,
    (byte) 32,
    (byte) 98,
    (byte) 121,
    (byte) 116,
    (byte) 101,
    (byte) 44,
    (byte) 32,
    (byte) 119,
    (byte) 104,
    (byte) 101,
    (byte) 110,
    (byte) 32,
    (byte) 73,
    (byte) 32,
    (byte) 107,
    (byte) 110,
    (byte) 111,
    (byte) 99,
    (byte) 63,
    (byte) 65
    private static final short DEBUG_CODE = (short) 0x9999;
    >
    Aptura prohibits the use of transient arrays on the
    card,based on that I would try other vendors, IBM
    JCOP, Datakey, G&D Sm@rtCafe, Gem+ GemXpress RAD, and
    SLB all implement the javacard.security,
    javacard.crypto classes and the transient arrays are
    COD/COR.

  • WebLogic 10.3 doesn't implements equals() and hashCode() for TimerHandle?

    Hi,
    I'm using WebLogic 10.3 and need to use TimerHandle to handle some logic in my application.
    Below is a scenario.
    At the time by creating EJB Timer, I've saved the TimerHandle for later use into Database along with specific name as a key.
    Then, at the time to execute/awaken timer I need to check that the saved TimerHandle is the same as passed Timer.
    @Timeout
    public void execute( final Timer timer )
    // getting key from passed object in timer.getInfo().
    // getting saved timerhandle by key. let's say dao.getXxxHandle(key);
    // perform checking.
    if ( timerHandle != null && timerHandle.equals( timer.getHandle() ) )
    // do sth.
    else
    //do another thing.
    The result is always drop in else block.
    By doing this is working on WAS7 and JBoss4xx (getting to if block). I was wondering if WebLogic doesn't implements equals and hashCode method then is there another way to check that the retrieved TimerHandle is the same one as timer.getHandle()?
    I'm thinking of adding some unique ID to see if timehandle is the same one or not? However as I mentioned, It works on WAS and JBoss. Does WebLogic has another way to handle my scenario?
    Any help would be appreciate.
    Thanks in advance,
    Nattachai W.

    As you have suggested, it looks like we don't override the equals() method on either our local or clustered TimerHandle implementations.
    We opened a bug (9558396) so we can address it in a future patchset.
    In the meantime, if you have an Oracle support contract, you could open a service request and ask for a patch for bug 9558396 to be created.
    -steve-

  • Nepomuk doesn't saves tags

    Hello All!
    I use KDE 4.9.3 , and Nepomuk doesn't saves tags in files that has not latin characters of files path.
    also, I have UTF-8 encoding.
    What can be wrong?

    Hi!
    Sorry for a possibly useless post.
    I've been using KDE ever since and have gone through all releases. Reality is, the suite indexing/strigi/nepomuk/soprano/virtuoso <-> akonadi <-> Kontact never worked properly. Always seriously buggy. For instance currently in 4.9.2:
    (1) After several suspends to ram and resumes, KMail does not show mails any more, only "Retrieving folder contents" forever.
    (2) The list of upcoming birthdays in incomplete, some shown, some not.
    (3) Some files are indexed, some not. Very long tome until new files get indexed, if at all.
    (4) A mv outside of dolphin eliminates tags.
    etc. etc. etc.
    Nepomuk doesn't save tags? No surprise. If you want this stuff working, evaluate os x, that's what I'm doing now. I need a working mail and indexing. If you have a better idea, please let me know.
    Best wishes,
    atlantis

  • Why javax.swing.filechooser.FileFilter doesn't implement java.io.FileFilter

    Hi,
    As many other people (I guess) I have in my project a class ExtensionFileFilter that extends javax.swing.filechooser.FileFilter, whose aim is to filter files by their extension.
    Now that we've migrated to Java 6, which provides javax.swing.filechooser.FileNameExtensionFilter, the old class shouldn't be needed any more.
    However, there is the following issue: my old ExtensionFileFilter extends javax.swing.filechooser.FileFilter but it also implements java.io.FileFilter, for being used with java.io.File.listFiles().
    Then I find that I still need to maintain my class, since javax.swing.filechooser.FileNameExtensionFilter doesn't implement java.io.FileFilter.
    My opinion is that javax.swing.filechooser.FileFilter should implement java.io.FileFilter, so the same subclass could be used in the two different contexts. Is there any reason to not provide it?
    Could this please be added to Java 7? (BTW how to request it?)
    Thank you in advance

    Thank you. There is already a request for it indeed: [http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6400960]
    If anybody is interested on it, just go there and vote ;-)

  • Mojarra doesn't implement setting properties on declared converters?

    Hi,
    I tried to register a custom converter in faces-config, by means of the following declaration:
    <converter>
              <description>Formats a number with exactly two fractional digits.</description>
              <converter-id>numberformat.two</converter-id>
              <converter-class>javax.faces.convert.NumberConverter</converter-class>
              <property>
                   <property-name>maxFractionDigits</property-name>
                   <property-class>java.lang.Integer</property-class>
                   <default-value>2</default-value>
              </property>
              <property>
                   <property-name>minFractionDigits</property-name>
                   <property-class>java.lang.Integer</property-class>
                   <default-value>2</default-value>
              </property>
         </converter>I've used this kind of code before a long time ago when using MyFaces, and this always Just Worked. However, with Mojarra it just doesn't work.
    I used the converter on my view like this:
    <h:outputText value="#{bb.someVal}">
         <f:converter converterId="numberformat.two"/>
    </h:outputText>By putting a breakpoint in javax.faces.convert.NumberConverter, I can check that the converter is being called, but the properties just aren't set on the instance.
    I hunted the Mojarra source code, but I also can't find any code that is supposed to set these properties.
    For instance, the ApplicationImp.createConverter method consists of this code:
    public Converter createConverter(String converterId) {
            if (converterId == null) {
                String message = MessageUtils.getExceptionMessageString
                    (MessageUtils.NULL_PARAMETERS_ERROR_MESSAGE_ID, "convertedId");
                throw new NullPointerException(message);
            Converter returnVal = (Converter) newThing(converterId, converterIdMap);
            if (returnVal == null) {
                Object[] params = {converterId};
                if (logger.isLoggable(Level.SEVERE)) {
                    logger.log(Level.SEVERE,
                            "jsf.cannot_instantiate_converter_error", converterId);
                throw new FacesException(MessageUtils.getExceptionMessageString(
                    MessageUtils.NAMED_OBJECT_NOT_FOUND_ERROR_MESSAGE_ID, params));
            if (logger.isLoggable(Level.FINE)) {
                logger.fine(MessageFormat.format("created converter of type ''{0}''", converterId));
            return returnVal;
        }So without all the error checking, the method basically boils down to just this:
    return (Converter) newThing(converterId, converterIdMap);The heart of newThing consists of this:
    try {
                result = clazz.newInstance();
            } catch (Throwable t) {
                throw new FacesException((MessageUtils.getExceptionMessageString(
                      MessageUtils.CANT_INSTANTIATE_CLASS_ERROR_MESSAGE_ID,
                      clazz.getName())), t);
            return result;So there's no code that's supposed to set these properties in sight anywhere.
    Also the converter tag (com.sun.faces.taglib.jsf_core.ConverterTag) nor any of its base classes seems to contain such code.
    Either I'm doing something very wrong, or Mojarra has silently removed support for setting properties on custom converters, which would seem awkward.
    Any help would be greatly appreciated.

    rlubke wrote:
    Mojarra has never supported such functionality, so it hasn't been silently removed.Thanks for explaining that. Like I said, the silently removed option thus was the less likely of the two ;)
    The documentation for this converter sub-element states:
    <xsd:element name="property"
    type="javaee:faces-config-propertyType"
    minOccurs="0"
    maxOccurs="unbounded">
    <xsd:annotation>
    <xsd:documentation>
    Nested "property" elements identify JavaBeans
    properties of the Converter implementation class
    that may be configured to affect the operation of
    the Converter.  This attribute is primarily for
    design-time tools and is not specified to have
    any meaning at runtime.
    </xsd:documentation>
    </xsd:annotation>
    </xsd:element>
    That documentation is quite clear indeed. I now notice that the project I was working on still had a JSF 1.1 faces-config DTD, and that documentation said this:
    Element : property
    The "property" element represents a JavaBean property of the Java class represented by our parent element.
    Property names must be unique within the scope of the Java class that is represented by the parent element,
    and must correspond to property names that will be recognized when performing introspection against that
    class via java.beans.Introspector.
    Content Model : (description*, display-name*, icon*, property-name, property-class, default-value?,
    suggested-value?, property-extension*)So there it actually says nothing about the design time aspect.
    I do have to mention that I think this entire difference between design time and run time could maybe have been a bit more officially formalized. Don't get me wrong, I think JSF and the whole of Java EE is a really good spec that has helped me tremendously with my software development efforts, but this particular thing might be open for some improvements. A similar thing also happens in the JPA spec, where some attributes on some annotations are strictly for design time tools and/or code generators, but it's never really obvious which ones that are.
    More on topic though, wouldn't it actually be a good idea if those properties where taken into account at run-time? That way you could configure a set of general converters and make them available using some ID. In a way this wouldn't be really different in how we're configuring managed beans today.

  • Image Adjustments doesn't implement changes - help.

    Hope someone can help me with this:
    I am using Photoshop 11.0.1. I have two copies, one for myself and one for student workers in my office. For some reason, when we try to make an image adjustment -- such as changing levels or contrast -- we can see the preview of the change, but then when we click OK to implement the change, it jumps back to its original state and doesn't make the change.
    Any ideas why? This is driving me kind of nuts.

    I would try resetting the preferences by keyboard method or the manual way. I didn't see the operating system listed so you will have to scroll down to find the operating system if you do the manual way. Link:
    http://kb2.adobe.com/cps/405/kb405012.html
    Edit. windows 7 pref location is same as Vista.

  • Implement tagging and searching using the JDeveloper

    Hi, I am trying to implement the tagging following the below steps
    1) On a blank jsf page, adding a search tool bar
    2) Now adding the Tagging button component just after the search tool bar
    3) Now adding the Tagging - Dialog workflow
    4) Adding the page in the pages.xml
    When I am trying to run this page, only one text box is getting displayed. When searching any content (i.e. home), leading user to home page with search keyword ("home").
    For implementing the tagging in any particular page it should display the "tag" button to tag the content and the tagged content should be displayed in the tag cloud work flow in the page.
    Please help me to implement the tagging with step by step instruction on the fresh new page explaining the different scenarios.
    thanks,
    Sandeep

    Deploy the code into the stand-alone server.
    Tagging & search does NOT work in integrated server.
    Thanks,
    Navaneeth

  • Why doesn't viewport tag work if the page is local?

    If the ipad just connects to my computer and views the .htm page then the viewport tag is not supported. However, if I upload that same page to a web server and visit it the ipad does support it.
    Any idea why that is or what can be done to fix it?

    Hi Morpheus:
    I haven't tested it but Firefox 26 from the Google Play store should work on the Galaxy Mega. I'd be surprised if it doesn't. It works fine on the 3 other Samsung devices I have.
    Please try re-installing Firefox and then if you still have the same issue namely:
    QUOTE
    '''I get the Metro PCS default page that says I need the Mobile Hotspot service'''
    END QUOTE
    than it's probably a Metro PCS issue because it is possible for your mobile carrier to do things like take over what's displayed when you open Firefox or any other browser. We've had cases of other US mobile carriers changing the home page on Firefox and other Android browsers for example.
    If you still get the same Metro PCS issue, does the issue go away when you use another WiFi provider, e.g. at Starbucks?
    '''IF the issue goes away when you use another WiFi provider, it's definitely a Metro PCS issue (in that case please ask Metro PCS support).'''

  • XMLSignature API doesn't generate tags separated by newlines

    Hello:
    When generating an enveloped signature (example at: http://java.sun.com/javase/6/docs/technotes/guides/security/xmldsig/GenEnveloping.java), the output signature element comes in a single line.
    I would like to produce an output with newlines after the end of the tags, I can do it by hand but if I touch the SignedInfo element the signature is not valid anymore.
    Please, any feedback or ideas about ?

    What a spectacularly rude individual.
    The point was no one can give you any help on this except Apple, they would have to alter the iPod interface to do this, hence the link to feedback. Thought I would save some words and just point you that way. In the future I'm not going to touch a key to even do that, but I think your current work around is as close as you are going to get.

  • AR8 doesn't implement the unix-style copy&paste

    Hi,
    I can't say if earlier Acrobat Reader versions did it, we just stepped on AR8 not doing this: If you mark text with the left mouse key in any application in any Unix I know, this text is copied to some clipboard and can be inserted in any other window with the middle mouse key.
    Even Programs like Opera/Firefox/Thunderbird/Openoffice do this.
    AR8 doesn't, unfortunately. Is there a setting to activate this? I didn't find one...
    If there isn't, please add this feature to the next release! This is really a "must have" in Unix :-)
    cu,
    Frank

    So with Fedora 8 the following seems to the pattern.
    Open pdf file.
    Mouseover line of text.
    Middle click in blank document, get mouseover text.
    Mouseover a second line of text.
    Middle click in blank document, get first line of text.
    Highlight a third line of test.
    Uee edit menu to copy
    Paste into blank document, get third line of text.
    Highlight a fourth line of test.
    Uee edit menu to copy
    Paste into blank document, get first line of text.
    First line of text ever after.

  • SetUpdateColumnList doesn't ignore tags without matching column

    I try to import an XML file using the OracleXMLSave class. As my XML document contains a couple of elements that I wouldn't want in my table AND for which a column does not exist, I tried to restrict the import with the setUpdateColumnList() method.
    This works fine for XML elements with a matching column but does not work for those without. It gives me the following error message: "oracle.xml.sql.OracleXMLSQLException: Exception ' The XML element tag 'muell' does not match the name of any of the columns/attributes of the target database object.' encountered during processing ROW element 0All prior XML row changes were rolled back."
    Is this a bug or a feature?
    Thanks, Thomas
    null

    I try to import an XML file using the OracleXMLSave class. As my XML document contains a couple of elements that I wouldn't want in my table AND for which a column does not exist, I tried to restrict the import with the setUpdateColumnList() method.
    This works fine for XML elements with a matching column but does not work for those without. It gives me the following error message: "oracle.xml.sql.OracleXMLSQLException: Exception ' The XML element tag 'muell' does not match the name of any of the columns/attributes of the target database object.' encountered during processing ROW element 0All prior XML row changes were rolled back."
    Is this a bug or a feature?
    Thanks, Thomas
    null

  • Implementation of Tag Cloud

    hi All,
    can we implement  Tag Cloud   in our enterprise portal?
    The user searches for some keywords and those keywords are stored in some location and are displayed in one page and the most searched keywords are displayed in larger fonts.
    also please tell if there is any option in TREX  where we can enable tagging feature.
    regards,
    SS

    Hi,
    There is no standard way to do that.
    We have done a Tag Cloud with Trex for a customer, we had to enable the Trex log and then we created a Tag Cloud with a Java application, key words came from the Trex log file.
    Regards, Gilles.

  • Struts tag problems in weblogic 5.1 sp12

              Hello,
              I am deploying a struts application in weblogic 5.1 sp 12. When I load any jsp
              page with a struts tag, e.g. <html:html>, it will throw exceptions as follows:
              Parsing of JSP File '/Feedback.jsp' failed:
              /Feedback.jsp(-1): Error in tag library at: 'bean': error introspecting class:
              'org.apache.struts.taglib.bean.CookieTag': weblogic.servlet.jsp.JspException:
              (line -1): Error in tag library at: 'bean': class org.apache.struts.taglib.bean.CookieTag
              doesn't implement javax.servlet.jsp.tagext.Tag
              probably occurred due to an error in /Feedback.jsp line -1:
              any comment is highly appreciated! I am following the directions posted on apache
              website about instaling struts with weblogic 5.1.
              

              Hello,
              I am deploying a struts application in weblogic 5.1 sp 12. When I load any jsp
              page with a struts tag, e.g. <html:html>, it will throw exceptions as follows:
              Parsing of JSP File '/Feedback.jsp' failed:
              /Feedback.jsp(-1): Error in tag library at: 'bean': error introspecting class:
              'org.apache.struts.taglib.bean.CookieTag': weblogic.servlet.jsp.JspException:
              (line -1): Error in tag library at: 'bean': class org.apache.struts.taglib.bean.CookieTag
              doesn't implement javax.servlet.jsp.tagext.Tag
              probably occurred due to an error in /Feedback.jsp line -1:
              any comment is highly appreciated! I am following the directions posted on apache
              website about instaling struts with weblogic 5.1.
              

  • Showing HTML tags in JList

    Hello
    My problem is quite simple but have not found any answer so far... I have a JList component where I store the contents of a file (one text line corresponds to a JList entry). Everything works fine, except when I have a line with HTML tags, since these are not made visible inside the JList entry. For example: if a file has a "<HTML><Body>example" line, then the JList entry displays just "example" instead of the full line. Any way to disable this HTML rendering and presenting only the raw text?
    Thank you!

    Fudge: prepend a space to each String that you place
    in the list, or munge the string in some other way
    that it looks similar/identical but prevents JLabel
    thinking it's HTML
    Proper fix: implement ListCellRenderer to return an
    overridden JLabel which doesn't implement a
    half-assed interpretation of HTML, or another
    component - JTextArea might workOr, in the renderer call:
    putClientProperty("html.disable", Boolean.TRUE);See:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4652898

Maybe you are looking for

  • I need to transfer video from a camcorder to my iMac what cables needed?

    I have an old Canon Optura 300. I just realized that it still has a tape in it with important memories I would like to preserve. I suppose I could get a disk made, but I would rather do the transfer to my imac myself and have the "tools" needed. Acco

  • Apex_collection.update_member.  What am I doing wrong.

    I am able to create my collection, then select from it. Unfortunately, I am not able to get it to update. I have been able to do this for other collections, so I am stumped...and believe it is something simple I am doing wrong....any thoughts? thank

  • Easier to ask (notation)

    I apologize to all those who I may offend but I have a simple notation question it is probably easier to ask here than to dig through the old documentation and the (lame) online help with Logic 9. I was checking out the Lily Allen demo today. When I

  • Delivery date and approval procedure

    Hello, My customer has the next problem. He generate a purchase order after approval procedure was ended. sometimes he wants to update the delivery date field in the row of the purchase order, but he can't do so because approval procedure restrict an

  • Removing Fonts added by Elements 11

    When I installed Photoshop Elements 11 it has added many extra fonts into the Windows/Fonts directory.  I try to keep my Fonts directory mean and lean.  Just the Windows System and essential plus any regular fonts that I use.  I find lots of applicat