TextArea ignoring new lines

Hi,
I am working on old Flex3 (Cairngorm2) app.
One of TextArea's there is completely ignoring new lines (Carriage Return/Line Feed)
and even skips some spaces (others work fine).
Code is pretty simple (well, little simplified here):
<fx:TextArea  text="myText" selectable=true change=updateText(event)"/>
private function updateText(evt:Event):void {
  var event:UpdateEvent = new UpdateEvent(UpdateEvent.UPDATE_EVENT);
  event.myText=myText.text;
   trace("myText"+event.myText) //added by me
  event.dispatch();
I have read about weird behaviors of TextArea (skipping or even doubling some characters) on the net,
but so far could not find anything applicable in that case.
For example, something like    myText.text.replace("\n", "\r") doesn't change anything.
I guess, there is no "\n" there.
If I trace, it returns line without newlines (like:  'startskip1lineskip2linesend;').
But if I copy-paste that line to say another TextArea on the screen (or non flex Chat app, I would get multiline text:
'start
skip1line
skip2lines
end;
And for various reasons I can't debug that app.
Any idea what might be wrong and how to fix it?
Please help!
TIA,
Oleg.
P.S.:  App connects to SPs in the Database via Web Service. No BlazeDS.

I  haven’t heard of this problem before.  I’d guess there is code running that is removing the line breaks.  I would first check to see if both \r and \n are being removed or not.  Then I’d add a keyDown handler and single step in the debugger through the hundreds of lines of code that run when you hit a key.  My guess is that you’ll end up in code you didn’t expect that is removing the whitespace.

Similar Messages

  • DBMS_LOB.LOADFROMFILE ignores new lines

    Hi All,
    I am using UTL_FILE.put_line for creating a text file. However when i try to load it into a blob, all new lines are ignored and text is displayed in one line.
    Any idea about this?
    DB: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production

    Bill,
    this is an Oracle Forms forum and your question is database related. I suggest to try the database forum here on OTN.
    Frank

  • Problem with new lines

    I have defined a form in Dreamweaver  to be used in conjuction with my SQL database (I am using the PHP/SQL).  One of the fileds in my form is of type TEXT (as opposed to VAR CHAR). Now, eventhough the text I am entering for that TEXT field has a number of paragraphs, when I read back the TEXT  field from the database (via sql SELECT),  the data for the TEXT field comes out continuously without paragraps. I don't understand why the paragraph or newline markings are not working when TEXT type data is retrieved from the database.  Can someone help me please.  Thanks!

    This is because HTML ignores new lines. The solution is to use the PHP function nl2br(). Depending on which version of Dreamweaver you're using, you can apply this function through the Bindings panel like this:
    This is certainly available in CS4, and maybe in CS3 too; but not earlier versions.
    If you're using an earlier version of PHP, wrap the dynamic text in nl2br() like this:
    <?php echo nl2br($row_recordsetName['fieldName']); ?>

  • How to insert new line in textarea

    I try programatiaclly to add for example three strings in <textarea>
    the final result should be something like this:
    --TEXTAREA TAG BEGIN
    line1
    line2
    line3
    --TEXTAREA TAG END
    I tried the hack described here;
    http://www.mail-archive.com/[email protected]/msg08294.html
    <c:set var="temp" value="one
    two"/>
    <c:set var="newline" value="${fn:substring(temp,4,5)}"/>after that I used it like this:
    <textarea>
      // forEach begin (write some output)
        <c:out value="${newline}"></c:out> //try to add new line
      // forEach end
    </textarea>Sorry about the wrong comment style, I'm just pointing out whta I expect as a result.
    I was surprised when I found out that "newline" value is "t" instead of special character "\n" or "\r". Anyway, I didn't receive the desired result.
    I use XML JSP files and UTF-8.
    Can anyone help me?

    I think I remember using a pre tag in between.
    <pre>
    // ur text area tags here.
    </pre>

  • How to write new line character to a file from textarea

    Hi ,
    I want to save the contents of textarea in a file.The textarea may contain new line characters,
    I am getting the contents from the textarea using getText() method but after writing the contents to the file
    it stores the entire text in a single line.But I want the text as it apperars in the textarea.
    Please provide me a good solution.
    -mani

    maybe this code samples are useful to your problem
    File datatext = new File(fileName);
    try {BufferedWriter writer =new BufferedWriter(new OutputStreamWriter(new FileOutputStream(datatext)));
    writer.write(.......);
    writer.newLine();
    writer.close();                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Jtextfield new line problem

    Hey guys :-)
    I seem to have a little problem with my jtextfield, it seems to be ignoring any "\n"'s i tell it to print. The code to setup my jtextfield is below and was created with jigloo for eclipse!
    fileInputjTextField1 = new JTextField();
    this.getContentPane().add(getFileInputjTextField1());
    fileInputjTextField1.setBounds(20, 20, 420, 200);
    fileInputjTextField1.setBorder(new LineBorder(new java.awt.Color(0,0,0), 1, false));And i'm setting it with...
         public void setWindowText(){
              LoadHelp helpLoader = new LoadHelp(fileName);
              fileInputjTextField1.setText(helpLoader.readInHelp());
         }The readInHelp function returns a string which contains "\n's". using println it recognises the new lines, but the text field won't.
    Also, the text is appearing the the center of the box instead of the top line?
    Any help appreciated :-) Am a little new to gui coding

    This give the code below :
    JTextArea textarea = new JTextArea();
    textarea.setBounds(20, 20, 420, 200); // Set the dimensions
    textarea.setText("line1\nline2");

  • Workflow Action: Trouble adding a new line in "Description" field.

    Hi folks. I'm really having a difficult time with this one and it seems so simple...
    I am struggling with how to get a field update action to enter a line break in a note field. I've tried "\n", "\n\r", "chr(13)", "chr(10)", "<br>" and so on.... it just puts the text of what I use into the Description.
    Here's the simplified workflow action...
    [<NextStep>] + "\ \n" + PRE('<Description>')
    What it's supposed to do.. is every time someone updates the field [<NextStep>], I want to replace the contents of the description field with the new value for nextstep (plus a new line) and then followed by everything that was in the description field previously. This way I have a running log in the description field.
    Idealy it should put:
    Today() + ": " + [<NextStep>] + <line break> + PRE('<Description>')
    but when I add the Today() it ignores everything that follows. I'm not as worried about that as I am about the inablity to put in the line beak. Please help!!!
    Thanks!
    Edited by: ThinkGadget on May 11, 2009 9:13 AM because the forum interpreted the "\\n"
    Edited by: ThinkGadget on May 11, 2009 9:15 AM (I put a space between the two back slashes so that the forum doesn't interpret it as a new line)

    I had used the "\\n" in my expressions to add a new line in the Description field. Only issue is also add a \ to the end of line but that was acceptable in my case. We are on OOD R16.

  • Problem with CDATA and new line character

    I parse a xml document with org.w3c.dom, the document contain a CDATA section in which there are more lines of text, each line is terminated with the new line character (\n).
    Example:
    <nota>
    <[CDATA[
    first line
    second line
    third line
    ]]>
    </nota>
    When a parse this node:
    Text txt_nota=(Text)elm_nota.getFirstChild();
    String nota=txt_nota.getData();
    the value returned is one string with no new line characters, example:
    "first linesecond linethird line"
    what's wrong?

    Because i use the string nota into a jsp page and i print the string nota into a textarea and the text is with no newline, example:
    <textarea name="nota" rows="4" cols="60"><%= nota %></textarea>
    the text into textarea is:
    first linesecond linethird line
    but i want that the text displayed into textarea is equal the text into the CDATA section:
    first line
    second line
    third line

  • How to insert new line character?

    Hi all,
    I have two lines to print.
    out.println("Available number of columns="+cols);
    out.println("Number of columns must be present=10");My problem is:
    i want both the lines to be printed one below the other. But, it is displayed in one single line.....
    Can anyone please tell me how to insert new line character?
    I tried with \n, '\n' and \r\n but, in vain......
    Thanks for your time.
    Regards,
    Ashvini

    You should never use "\n" directly.
    The line separator character is different on different operating systems.
    And putting quotes around it in your string will make absolutely no difference in the JSP.
    To find out what the line separator is you should use System.getProperty("line.separator");
    The JSPWriter and PrintWriter classes will automatically use this property with a println statement, so a println will always finish with a line separator.
    The issue here was that HTML by default ignores all whitespace.
    The solutions provided
    - use a <br> tag instead of a carriage return
    - use <pre> tags, which tells the browser not to ignore whitespace. That can be troublesome in JSP which generates a lot of extraneous carriage returns into the code.
    Cheers,
    evnafets

  • XSLT - New Line/Carriage Return not displaying when deployed

    Hello everyone,
    I have an XSL Style Sheet that is supposed to transform an XML into plain text using Oracle SOA 11g BPEL transformation. The plain text transformation is working fine, but whenever I try to add a new line or carriage return, the text output doesn't reflect that. I've tried several ways of adding the line break but none of them have worked. This is the XSLT I'm using for testing purposes:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:a="urn:oracle:b2b:X12/V4010/850" version="1.0">
    <xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
    <xsl:template match="/a:Transaction-850">
    <!-- New line -->
    <xsl:variable name='newline'><xsl:text>
    </xsl:text></xsl:variable>
    <xsl:value-of select="a:Internal-Properties/a:Data-Structure/a:Property[@Name='InterchangeUsageIndicator']" />
    <xsl:text>&#xd;</xsl:text>
    <xsl:value-of select="$newline" />
    <xsl:text>&#xA;</xsl:text>
    <xsl:text>&#13;</xsl:text>
    <xsl:text>&#10;</xsl:text>
    <xsl:text>2000ITITM</xsl:text>
    </xsl:template>
    </xsl:stylesheet>
    When I try it out in an online XSLT test tool, it gives the output as expected:
    P
    2000ITITM
    When I deploy the composite, I noticed that the XSLT in the MDS repository ignores the line breaks, *#xAs, etc. and just closes the <xsl:text/> tags:
    <?xml version='1.0' encoding='UTF-8'?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:a="urn:oracle:b2b:X12/V4010/850" version="1.0">
    <xsl:output method="text" omit-xml-declaration="yes" indent="no"/>
    <xsl:template match="/a:Transaction-850">
    <xsl:variable name="newline">
    <xsl:text/>
    </xsl:variable>
    <xsl:value-of select="a:Internal-Properties/a:Data-Structure/a:Property[@Name='InterchangeUsageIndicator']"/>
    <xsl:text/>
    <xsl:value-of select="$newline"/>
    <xsl:text/>
    <xsl:text/>
    <xsl:text>2000ITITM</xsl:text>
    </xsl:template>
    </xsl:stylesheet>
    And so, because of that, it just gives me the following output:
    P2000ITITM
    I have no idea why it's ignoring the new line characters, so any guidance would be appreciated.
    Thank you all for your help and time!
    Edit: I tried concatenating as follows:
    <xsl:value-of select="concat('36','&#xA;')"/>
    <xsl:value-of select="concat('24','&#xD;')"/>
    ...which shows up as is when I look at it in the MDS repository, however the text output still shows no line breaks...
    Message was edited by: dany36

    Ah I'm such a newbie. I was able to get it displayed by doing the following:
    <xsl:variable name="newline" select="'&#xD;&#xA;'" />
    This would show up correctly in the MDS repository, too.

  • New Line character different for two identical pieces of code?

    Hey all, I have this code:
            table.setDefaultEditor(Object.class, null);
            Style style = currentDocument.addStyle("Table 1", null);
            JTableHeader tableHeader = table.getTableHeader();
            tableHeader.setReorderingAllowed(false); //so the user can't re-order the columns.
            StyleConstants.setComponent(style, table.getTableHeader()); //table header needs inserting first.
            newLine();
            currentDocument.insertString(currentDocument.getLength(), "This text is ignored by the compiler, but can't be blank.", style);
            newLine();
            StyleConstants.setComponent(style, table);
            currentDocument.insertString(currentDocument.getLength(), "This text is ignored by the compiler, but can't be blank.", style);Which works fine, it prints the header, immediately followed by the rest of the table. However, if I want to use this code elsewhere for another table, using:
            final JTable table = new JTable(table2, tableX[0]);
            table.setPreferredScrollableViewportSize(new Dimension(400,70));
            table.setDefaultEditor(Object.class, null);
            Style style = currentDocument.addStyle("Table 1", null);
            JTableHeader tableHeader = table.getTableHeader();
            tableHeader.setReorderingAllowed(false); //so the user can't re-order the columns.
            StyleConstants.setComponent(style, table.getTableHeader()); //table header needs inserting first.
            newLine();
            currentDocument.insertString(currentDocument.getLength(), "This text is ignored by the compiler, but can't be blank.", style);
            newLine();
            StyleConstants.setComponent(style, table);
            currentDocument.insertString(currentDocument.getLength(), "This text is ignored by the compiler, but can't be blank.", style);I end up with an extra line in between the header and the rest of the table. If I try changing the currentDocument.getLength() to currentDocument.getLength() -1 (in an attempt to get rid of a /n), I end up with the header and the first row on the same line.
    It is worth noting that both sets of code are used (for testing) in the same class, and the second one is run first, with different results.
    My new line method is:
        private void newLine() {
            try {
                currentDocument.insertString(currentDocument.getLength(), "\n", null);
            catch (BadLocationException e) {
                //do nothing           
        }Thank-you in advance for any help, this is driving me crazy.

    Never mind, I have fixed this one. Please look at my other threads, and thank-you for your time.

  • How to search for a new line character in sql

    hi..i am using oracle 10g.
    basically i am looking for usage of columns.I want to see which all columns are used in
    joins.
    this is the quey i have written.
    but
    if there a new line between WHERE ,AND those scenarios are ignored.how to take care of these new line characters?
    SELECT DISTINCT s.TYPE, s.NAME, s.owner, table_name, column_name --,line,text
    FROM all_source s, cols c, all_dependencies d
    WHERE s.NAME = d.NAME
    AND d.referenced_name = c.table_name
    AND c.table_name = 'WSF_EDUCATION_ORGUNIT'
    AND column_name ='ORGUNIT_TYPECODE_OID'
    AND d.TYPE = s.TYPE
    AND d.TYPE <> 'PACKAGE'
    AND d.owner = s.owner ---FOR OVERLOADED OBJECTS
    AND ( (UPPER (text) LIKE
    '%' || 'AND' || '%' || column_name || ' ' || '=%'
    OR (UPPER (text) LIKE
    '%' || 'AND' || '%=' || ' ' || '%' || column_name
    || '%'
    UNION ---if there is where
    SELECT DISTINCT s.TYPE, s.NAME, s.owner, table_name,
    column_name ----,line,text
    FROM all_source s, cols c, all_dependencies d
    WHERE s.NAME = d.NAME
    AND d.referenced_name = c.table_name
    AND c.table_name = 'WSF_EDUCATION_ORGUNIT'
    AND column_name ='ORGUNIT_TYPECODE_OID'
    AND d.TYPE = s.TYPE
    AND d.TYPE <> 'PACKAGE'
    AND d.owner = s.owner ---FOR OVERLOADED OBJECTS
    AND ( (UPPER (text) LIKE
    '%' || 'WHERE' || '%' || column_name || ' ' || '=%'
    OR (UPPER (text) LIKE
    '%' || 'WHERE' || '%=' || ' ' || '%' || column_name
    || '%'
    )

    Hi,
    Not sure if I get it, but you can look for characters using the ascii and chr functions.
    You can change them using replace:
    A new line:
    SQL> select ascii('
      2  ') from dual;
    ASCII('')
            10(Just press enter between the quotes)
    Example how to replace it with a space:
    SQL> with t as ( -- generating test string:
      2  select 'this string has
      3  a new line' str from dual
      4  )
      5  --
      6  -- actual query:
      7  --
      8  select str
      9  ,      replace(str, chr(10), chr(32))
    10  from   t;
    STR                        REPLACE(STR,CHR(10),CHR(32
    this string has            this string has a new line
    a new lineIf that isn't clear of when I'm missing the point then please post some narrowes down examples of what you get now and your desired output. Remember to put the tag around any code example you're posting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • New Line in pdf display

    Using xdp + xml data to generate pdf.
    I have a floating field that is bind to data. Data is a paragraph with multiple \n to indicate new line. When form is preview in designer it shows \n char instead of moving next content in paragraph to new line.
    It used to work in old version of Designer but not any more in ES2 (9)
    I need to know what data need to be sent so that content would display on new line.
    Thanks
    YogLC

    Paul,
    the old version of the designer and Form server was displaying paragraph correctly with following xml data but with Designer ES2 9 SP1 shows \u000d\u000a character inside the paragraph  and server throw exception on this xml data. (cobra communication error ...)
    I tried replacing \u000d\u000a  with &#xA; &#xD;  but server throws exception.
    Also If user enter multiple CR in the textarea still server throws exception.
    <Paragraph>My comments for content from the textfield paragraph are here My comments for content from the textfield paragraph are here My comments for content from the textfield paragraph are here My comments for content from the textfield paragraph are here \u000d\u000a</Paragraph>
    or
    <Paragraph>My comments for content from the textfield paragraph are here My comments for content from the textfield paragraph are here My comments for content from the textfield paragraph are here My comments for content from the textfield paragraph are here
    for content from the textfield paragraph are here My comments for content from the textfield paragraph are here
    \u000d\u000a</Paragraph>

  • Problem with new line

    Hi,
    I'm trying to write a note for a contact.I have written following code
    contact.addString(Contact.NOTE, contact.ATTR_NONE, "bla bla bla");it works, but when i write
    contact.addString(Contact.NOTE, contact.ATTR_NONE, "bla \n bla \n bla");it doesn't work. What's wrong with newline
    Can anybody help me to fix it.??

    I'm still working on emulator.
    If I write
    contact.addString(Contact.NOTE, contact.ATTR_NONE, "bla \n bla \n bla");actually it's still working but the "\n" is ignored. The output is
    >>bla  bla  blanot
    >>bla
    bla
    bla but if I write (without space after new line)
    contact.addString(Contact.NOTE, contact.ATTR_NONE, "bla \nbla \nbla");it's not working and doesn't have any output. Is "\n" really not supported or it's a bug .??
    Thx

  • Validating XML and skipping new lines & white spaces ?

    Hi everybody !
    I'm currently developping a new application and the configuration is done within a XML file. My problem is that I'm using IP addresses and so users have to write things like this :
    <agentIP>
    132.137.43.2
    </agentIP>
    and I have a problem with the Java SAX parser : in fact I have declared the type of agentIP in a XML Schema like this :
    <xs:simpleType name="IPAddress">
    <xs:restriction base="xs:string">
    <xs:pattern value="((1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5]).){3}(1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])"/>
    </xs:restriction>
    </xs:simpleType>
    and the problem is that if there are some white spaces before the IP or some new lines (in fact the user can format this XML file in different manners), I have a parsing error because the parser interprets these characters too.
    Has somebody any idea how to tell the parser to skip these characters ???
    for information here is my source code :
    ErrorHandler errorHandler = new MyErrorHandler();
        content.setLength(0);
        agentTable = new AgentTable();
        SAXParserFactory factory = SAXParserFactory.newInstance();
        factory.setNamespaceAware(true);
        factory.setValidating(true);
        SAXParser saxParser = null;
        try {
          saxParser = factory.newSAXParser();
        catch (ParserConfigurationException ex1) {
          ex1.printStackTrace();
        catch (SAXException ex1) {
          ex1.printStackTrace();
        try {
          saxParser.setProperty(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA);
          try {
            saxParser.setProperty(
                "http://java.sun.com/xml/jaxp/properties/schemaSource",
                new org.xml.sax.InputSource(jamap.share.Constants.networkMap));
          catch (SAXNotRecognizedException ex4) {
          catch (SAXNotSupportedException ex4) {
        catch (SAXNotSupportedException ex3) {
          ex3.printStackTrace();
        catch (SAXNotRecognizedException ex3) {
          ex3.printStackTrace();
        org.xml.sax.XMLReader xmlReader = null;
        try {
          xmlReader = saxParser.getXMLReader();
        catch (SAXException ex) {
          ex.printStackTrace();
        xmlReader.setContentHandler(this);
        xmlReader.setErrorHandler(errorHandler);
        //    xmlReader.setProperty(
        //      "http://apache.org/xml/properties/schema/external-schemaLocation",
        //    new File("http://localhost:8080/agentfile.xml"));
        //xmlReader.setErrorHandler (new (ErrorHandler()));
        try {
          xmlReader.parse(new org.xml.sax.InputSource(jamap.share.Constants.homeDir +
                                                      jamap.share.Constants.
                                                      AgentFile));
        catch (SAXException ex2) {
          ex2.printStackTrace();
          System.out.println("Please correct your XML file !");
        catch (IOException ex2) {
          ex2.printStackTrace();
          System.out.println("Error in parsing the agent.xml file");
        return agentTable;
      public void startElement(java.lang.String uri,
                               java.lang.String localName,
                               java.lang.String qName,
                               Attributes attributes
                               ) throws
          SAXException {
        if (qName.equals("proxy")) {
          isAgentViaProxy = true;
        content.setLength(0);
      public void characters(char[] chars, int start, int len) throws SAXException {
        content.append(chars, start, len);
      public void ignorableWhitespace(char[] ch,
                                      int start,
                                      int length) throws SAXException {
        System.out.println("Some white spaces were ignored !");
      }and here the XML Schema used:
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:simpleType name="IPAddress">
      <xs:restriction base="xs:string">
        <xs:pattern value="((1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5]).){3}(1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])"/>
      </xs:restriction>
    </xs:simpleType>
    <xs:element name='networkMap'>
      <xs:complexType>
       <xs:sequence>
         <xs:element ref='agent' minOccurs='0' maxOccurs='unbounded'/>
       </xs:sequence>
      </xs:complexType>
    </xs:element>
    <xs:element name="agent">
      <xs:complexType>
       <xs:sequence>
         <xs:element name="ipAddress" type="IPAddress" minOccurs="1" maxOccurs="1" />
         <xs:element name="proxy" type="IPAddress" minOccurs="0" maxOccurs="1" />
       </xs:sequence>
      </xs:complexType>
    </xs:element>
    </xs:schema>THANK YOU...
    PA

    Hi !
    I've found the solution finally and as nobody wrote me I'll explain it...
    Basically to ignore white spaces you need to specify it within your XML Schema : here is an example of a possible description for an IPv6 address inside an XML schema :
    <xs:simpleType name="IPv6Address">
      <xs:restriction base="xs:string">
       <xs:whiteSpace value="collapse" fixed="true"/>
       <xs:pattern value="((1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5]).){7}(1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])"/>
      </xs:restriction>
    </xs:simpleType>as you can see <xs:whiteSpace value="collapse" fixed="true"/> is solving the problem !!
    Bye..
    PA
    http://www.doffoel.com

Maybe you are looking for

  • Blue screen of death in iWork

    I have also experienced the blue screen of death when working on my iPhone 5S in iWork. I HOPE this is an iPhone issue and not an iOS7 issue, as that will afffect my iPad 3 as well. It seems there is no fix for this>

  • Mail not working after upgrade to Leopard

    After the guy at the applestore assuring me that mail will not be affected by upgrading, low and behold I now have lost all emails and am unable to send or receive emails. When I open mail it leaves the interface closed, I need to go to MAIL > NEW VI

  • Some things I like to do with Acrobat 3D - how can I

    Hi there, I want to do the following two things in a 3D PDF: - Disable the 3d toolbar. I want to present a Model which can be rotated, zooomed and moved by using the mouse but the viewer shouldn't be allowed to do anything else than that and the 3d t

  • DC In Board or Logic Board problem?

    I have a 12" iBook G4 that's about 2 years old. It's been having intermittent problems reading the charger for awhile now and would flash charging and then not charging over and over again before it would begin to charge up again. This weekend it dec

  • Nasty narrowing cast (bug) in ServletAuthentication class

    I'm trying to integrate a 3rd party's authentication framework with Weblogic using identity assertion. Like: 3rd party <- weblogic identity assertion <- custom SSO The 3rd party is wrapping the HttpSession, which should be transparent. However, I get