UTF-16 to char equiv

Hi,
I need to convert UTF-16 (UCS-2) to char equivalent.
Can anyone help me out.
Thanks in advance.
Selvi

Hi Selvi,
Please tell us ur exact requirements.....
U need to change <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
encoding in this tag....?
or any thing....let me know......
if u want to change that encoding to some encoding method.......
go for report builder.....then right click on Report Module.....then select property palette....go for XML categorised XML Prolog value property......
change encoding value there....
I think it will work for u....
Thanks &Regards
Madhusudhan.M

Similar Messages

  • Char, UTF, Unicode, International chars

    Hi all,
    Could anybody make a brief summary of the connections among the char data type, UTF, Unicode, International chars?
    Thanks!

    The java char data type usually contains one unicode character. However, some unicode characters are larger than 16 bits (which is the size of char). Those characters are represented by multiple chars. There are multiple byte encodings for Unicode. Two of the most common are UTF-8 and UTF-16. The char data type stores characters in the UTF-16 encoding. UTF-8 is a common format for serializing unicode since it takes up half the space of UTF-16 for the most common characters. Also, UTF-8 deals with bytes, so byte order is not an issue when transfering between different platforms. Finally, one of the best reasons to use UTF-8 is that for characters with code < 128, UTF-8 is identical to ascii.
    Every character is an international character.

  • Corrupt XML file encoding utf-8 special chars (IDOC - File scenario)

    Dear experts,
    I have a problem with the XML output files of XI and could not find the answer in one of the current posts.
    I'm sending Master Data from R/3 with IDOCs through XI to a FTP directory. These files include characters as Á, Ê, etc.
    The XI server includes the utf-8 encoding in the output XML message. However, when opening these files I receive errors (tried it in multiple programs). It tells me that Á is not utf-8.
    It will not accepts Á. I was under the impression that utf-8 included extended Latin and thus would accept these characters. Thus implying that the message was created wrong. Also importing these files into MDM import manager gives errors.
    All rfc destinations are on Unicode.
    By the way, we experience the same problem when syndicating files from the MDM server.
    Any suggestions?
    Cheers.
    * Will reward points for helpful answers.

    Hi,
    Check out this guide..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42
    make use of the messagetransformbean - http://help.sap.com/saphelp_nw04/helpdata/en/57/0b2c4142aef623e10000000a155106/content.htm
    Also for further ref: go thru this thread - Change encoding from utf-8 to iso-8859-1 in JMS receiver!
    regards
    sasi.........
    <b>Reward if useful</b>

  • Using utf-8 in jsp with resource bundle files(Farsi Language) Help !

    Hi,
    I am using jdeveloper and struts and i have a resourcce bundle file that i am writing in Farsi in it.
    my jsp looks like this :
    <%@ page contentType="text/html;charset=UTF-8"%>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <html:form action="IndexAction.do" method="POST" enctype="UTF-8">
    <% request.setCharacterEncoding("UTF-8");%>
    <bean:message key="button.add" /><!-- i get the key from the bundle here-->
    i have saved the bundle file in utf-8 and i have tried native2ascii on it as well.
    i also have response.setContentType("text/html; charset=UTF-8"); in my action file.my browser setting is also utf-8.
    but still i get garbage chars in jsp.
    any idea ?
    thax
    reza

    hello
    i have problem whit write farsi in jsp.
    the charecter is destroy.
    please help me.
    thanks

  • UTF-8 encoding trouble

    I need to use UTF8 encoding throughout a site. For that purpose, I have the following
    tags on JSP:
    <%@ page contentType="text/html; charset=UTF-8" %>
    <meta http-equiv="Content-Type" CONTENT="text/html; charset=UTF-8">
    Next, in my weblogic.xml, I have the following:
    <jsp-param>
         <param-name>encoding</param-name>
         <param-value>UTF8</param-value>
    </jsp-param>
    <charset-params>
    <input-charset>
    <resource-path>*.jsp</resource-path>
    <java-charset-name>UTF8</java-charset-name>
    </input-charset>
    </charset-params>
    Having configured this, I have two simple JSP files. The first one submits a field
    (whose contents I enter in Greek), and the second page writes them to a file. The
    code for writing to a file looks like this:
    FileOutputStream of = new FileOutputStream (fileName, false);
    OutputStreamWriter ow = new OutputStreamWriter (of, "UTF-8");
    ow.write (request.getParameter("test"));
    When I enter the Greek character Alpha as input, the file has a weird string +I in
    it. To fix the problem, I did the following (and it works):
    String s = request.getParameter ("TestName");
    byte b[] = new byte [5000];
    b = s.getBytes ();
    s = new String (b, "UTF-8");
    writeToFile (s);
    Which means that for some reason, the page gets the right String, but it seems to
    be encoded with default encoding (not UTF8). When I convert it into bytes, and create
    another String using the same byte-stream but a different encoding, what I get is
    correct UTF-8 encoded string. Please also note that the same problem occurs with
    DB as well (Oracle 8.1.7 with UTF8 on Win2k), and fixing the above code fixes problem
    at both file and database level.
    Rather than the above workaround, what's the proper way to accomplish this?
    Thanks,
    Raja

    In GlassFish i have changed this now below here. Under each listeners both for Network Listeners and Protocols there are an HTTP tab and under that one i have change this,
    Network Config
    Network Listeners
    http-listeners-1
    http-listeners-2
    admin-listeners
    Protocols
    http-listeners-1
    http-listeners-2
    admin-listeners
    URI Encoding: UTF-8
    Default Response Type: text/plain; charset=UTF-8
    Forced Response Type: text/plain; charset=UTF-8
    So when i run curl in a terminal window i get this response:
    Macintosh:~ jespernyqvist$ curl -I http://neptunediving.com/neptune/index.jsp
    HTTP/1.1 200 OK
    Date: Mon, 17 May 2010 04:14:17 GMT
    Server: GlassFish v3
    X-Powered-By: JSP/2.1
    Content-Type: text/html;charset=UTF-8
    Content-Language: en-US
    Transfer-Encoding: chunked
    Set-Cookie: JSESSIONID=478269c08e050484d1d6fa29fc44; Path=/neptune
    As you can see now my HTTP Header is looking good, no more charset=iso-8859-1. The only problem i have here is that there is no space in between text/html;charset=UTF-8. I think this should be like this instead or not, text/html; charset=UTF-8? I have noticed that they are very case sensitive so maybe this is a problem for me?
    On top of my header i have this;
    <%@page import="com.neptunediving.*"%>
    <%@include file="WEB-INF/include/LangSupport.jsp"%>
    <%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
    In my header i have this;
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    I have changed in the preferences for Eclipse to use UTF-8. I have gone thru all properties files in my project and changed them to UTF-8 also. So what else are they to change?
    Still my page is nor displayed properly, now in all browsers like Safari, Firefox, Opera and Internet Explorer. So what is wrong with my page since this don't work for me? Can anybody please explain this to me?

  • Encoding non english characters with utf 8 on jsp (Critical!!)

    I am inserting hebrew characters from JSP into oracle db and everything is fine until this point. But when I try to retrieve the information from the database, the characters are not displayed properly (I get some garbage characters). I am sure that the data stored in the database is correct, but not sure why there is a problem in displaying the data in the JSP.
    I came across a thread on TSS
    http://www.theserverside.com/discussions/thread.tss?thread_id=28944
    and followed the suggestions given there like having
    <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
    <META http-equiv="Content-Type" content="text/html; charset=UTF-8">and also this
    <%
    //Some JDBC and sql statement query UTF-8 data and then ...
    String str = rs.getString("utf8_data");
    str = new String(str.getBytes("ISO-8859-1"),"UTF-8");
    %>
    <%= str %>Now, the data getting displayed is partly correct, I mean to say, some characters are still coming as squares.
    Any ideas will be of great help.

    even i doubt the database charset for this issue. But what I dont understand is how only certain hebrew characters are getting stored properly and why others are corrupted?
    Also, can anyone let me know how i can view the Non-English characters present in the database directly, as TOAD is not able to display them

  • Cannot change charset from 'ISO-8859-1' to 'UTF-8' ?

    I've programed a web application with Facelets. As I start the first page "index.html" I got the following exception:
    "java.lang.IllegalStateException: Attempt to change ContentType after calling getWriter() (cannot change charset from 'ISO-8859-1' to 'UTF-8')"
    The header of the "index.html" looks as follow:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <meta http-equiv="refresh" content="0; url=./guess.jsf" />
    <title>Untitled Document</title>
    </head>
    What's wrong? Is it a bug of weblogic?

    same problem here with wl8.1
    have you sold it and if yes, how?
    thanks

  • UTF-8 file encoding issues within Java?

    I'm working on an application that takes data from an IBM mainframe(z/OS), converts it from IBM-1047 encoding to UTF-8(via iconv utility) and binary FTP's it to a Unix box where we process the file with our Java app and return the processed file.
    Within our Java app on the Unix platform we stream the file into a byte array and then create a new String from the byte array specifying "UTF-8" as the encoding parameter.
    The problem is that Java appears to be taking certain 2 byte UTF-8 characters and converting them to a single char.
    E.g. I have a \uC3A6 char in the input file, I can view the bytes in the byte array that's read in, and it's still a \uC3A6, but as soon as I create the new String with UTF-8 encoding and view the bytes, those 2 bytes are now shown as a single byte(0xE6). The code I have that's looking for the char \uC3A6 then fails.
    Can anyone explain what's happening here?? Sorry for the long message.

    The encodings which convert the character (char)0xC3A6 to the 2-entry byte array {0xC3, 0xA6} (unsigned) are "UTF-16BE", "UnicodeBigUnmarked", and "UnicodeBig." These are essentially identical except for the use of byte-order mark. As was said above UTF-8 converts (char)0xC3A6 to the 3-entry byte array {0xEC, 0x8E, 0xA6} (unsigned).
    http://java.sun.com/j2se/1.4.1/docs/guide/intl/encoding.doc.html

  • Dreamweaver drops diacritic chars at opening

    Dreamweaver has quite a strange behaviour when opening
    documents containing
    commented charset definitions.
    in fact it just acts as if there were no comments.
    <!--<meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">-->
    <!--<meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />-->
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    the recodings done automatically by Dreamweaver when opening
    the file have a noticeable and disastrous effect : all diacritic
    characters are suppressed from the file. Of course there are no
    dialog boxes like "Do you want to proceed to a recoding of the file

    I actually did away with the accordian widget and went a different route. It was too glitchy. Thanks for your input though. I will take note of the suggestions you provided and maybe try it out one day.

  • Problem with form coding

    I have somehow broken one aspect of a registration form that
    has otherwised
    worked perfectly for years. At
    http://www.powerpointlive.com/register.htm
    The four checkboxes labeled "chief involvement" only return
    one answer, even
    if the user checks more than one. I can't figure out what I
    did! I would be
    grateful for someone rescuing me...
    Rick A.
    Pleasanton CA

    On 06 Jul 2007 in macromedia.dreamweaver, Murray *ACE* wrote:
    > The only way it COULD have worked would be if those
    checkboxes have
    > different names.
    Actually, they can be an array:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8">
    <meta http-equiv="imagetoolbar" content="no">
    </head>
    <body>
    <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { ?>
    <?php
    $to = '[email protected]';
    $subj = 'Accented Chars';
    $body = utf8_decode('$_POST["body"]: ' . $_POST['body']);
    $headers = 'From: Ralph <[email protected]>' .
    "\n";
    mail($to, $subj, $body, $headers);
    ?>
    <p>$_POST['idfield']: <?php echo $_POST['idfield'];
    ?></p>
    <p>$_POST['namefield']: <?php echo
    $_POST['namefield']; ?></p>
    <p>$_POST['checkbox']: <?php echo
    $_POST['checkbox']; ?></p>
    <pre><?php print_r($_POST); ?></pre>
    <?php } ?>
    <form name="form1" method="post" action="<?php
    $_SERVER['PHP_SELF'] ?>">
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>idfield</td>
    <td><input type="text" id="idfield"></td>
    </tr>
    <tr>
    <td>namefield</td>
    <td><input type="text"
    name="namefield"></td>
    </tr>
    <tr>
    <td>checkbox</td>
    <td><input type="checkbox" name="checkbox"
    value="checkbox"></td>
    </tr>
    <tr>
    <td><input type="submit" name="Submit"
    value="Submit"></td>
    <td> </td>
    </tr>
    </table>
    <fieldset>
    <legend>Music Types</legend>
    <table>
    <tr>
    <td>Checkbox 1</td>
    <td><INPUT TYPE="CHECKBOX" NAME="music[]"
    VALUE="Reggae"></td>
    </tr>
    <tr>
    <td>Checkbox 2</td>
    <td><INPUT TYPE="CHECKBOX" NAME="music[]"
    VALUE="Ska"></td>
    </tr>
    <tr>
    <td>Checkbox 3</td>
    <td><INPUT TYPE="CHECKBOX" NAME="music[]"
    VALUE="Classical"></td>
    </tr>
    </table>
    </fieldset>
    </form>
    </body>
    </html>
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • JSF and Double Byte Character

    Hi,
    I wanted to know how to handle <h:outputText> with chinese character or double byte character.
    See sample code below :
    <%@ page language="java" contentType="text/html; charset=UTF-8"      pageEncoding="UTF-8"%>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <h:form styleClass="form" id="form1">
    <% request.setCharacterEncoding("UTF-8"); %>
    <h:inputText styleClass="inputText" id="text1"></h:inputText>
    <hx:commandExButton type="submit" value="Submit" styleClass="commandExButton" id="button1"      action="#{pc_SubmitTest.doButton1Action}"></hx:commandExButton>
    <h:outputText styleClass="outputText" id="text2"></h:outputText>
    </h:form>
    When you input with double byte character and submit,
    the output screen value did not render properly .
    I tried this similiar code at JSP, it work fine.
    Anybody know how to solve this problem ?
    Anything need to do at pagecode level ?
    Thank you.
    Reinardy

    Problem was due to the fact that I was trying to generate the excel file in char stream instead of byte stream

  • Store&read chinese characters in MS SQL server 2000 using Java

    Hi,
    I have a problem to store Chinese characters in MS SQL Server 2000, storing question marks(??????) instead of Chinese characters
    I am using JSF framework, SUN APPLICATION Server 9.1 , MS SQL Server 2000 server and Microsoft data source driver class (com.microsoft.sqlserver.jdbc.SQLServerDataSource) to connect db.
    I have one solution:
    IN JSP:
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    and
    In database column type should “nvarchar” in place of varchar
    while inserting or updating the same need to add ‘N’ prefix with the value like insert into client(Name, Id ….) values (N+)
    the above is working fine but the problem is here i have already defined database with 100s of tables I cant change database tables as well as queries
    Thanks,
    Sathi

    I don't know any betterer option, than to copy the database tabels redefining the Chinese data fields as nvarchar.
    To be frank I had also problems writing to a html file Chinese text stored in MS SQLServer 2000 nvarchar fields.
    The following worked:'
         public String getEncodedData(ResultSet resultSet, int columnIndex, String charset)
         throws SQLException
              //final String methodName = "getEncodedData";
              InputStream binaryStream =resultSet.getBinaryStream(columnIndex);
              String readStringFromStream=readStringFromStream(binaryStream, charset);//UTF_16LE);
              return readStringFromStream;
         public String readStringFromStream(InputStream inputStream, String charset) {
              final String methodName = "readStringFromStream";
              StringBuffer buffer = new StringBuffer();
              try {
                   int ch;
                   InputStreamReader isr = new InputStreamReader(inputStream, charset);
                   Reader in = new BufferedReader(isr);
                   while ((ch = in.read()) > -1) {
                        buffer.append((char)ch);
                   in.close();
                   return buffer.toString();
              } catch (IOException exception) {
                   Log.printError(this,methodName, exception);
                   return null;
         }And writing it to file:
         public void writeEncodedStringToFile(String text, String filePath, String charset, boolean append){
              final String methodName = "writeEncodedStringToFile";
              OutputStreamWriter writer= null;
              try {
                   FileOutputStream fileOutputStream = new FileOutputStream(filePath, append);
                   writer = new OutputStreamWriter(fileOutputStream, charset);
                   writer.write(text);
              } catch (IOException exception) {
                   Log.printError(this,methodName, exception);
              }finally{
                   try {
                        writer.close();
                   } catch (IOException exception) {
                        Log.printError(this,methodName, exception);
         }Edited by: astlanda on Feb 10, 2009 11:13 PM
    Edited by: astlanda on Feb 10, 2009 11:21 PM

  • Master Style page changing/deleting images

    Hi all -
    This has been a reoccurring problem for quite some time. I have several master style pages in my project; each one is laid out the same with my company's logo and a module name in a header, then a copyright in the footer. While working, I'll get a prompt that says the master style has changed and needs to be reapplied to all the connected pages. This would be self-explanatory if I were editing the headers/footers while working -- But I'm not. Only the page content.
    It's always my company's logo that disappears from the header when this happens. This is the prompt I get:
    This happens no matter what master style the page I'm working on might have.
    (It just happened now and I didn't change anything in the headers or footers.)
    Please help.
    Thanks!
    Erin

    Indeed, there is a table in the Master page header, and the graphic goes in that table.
    However, the edit to the TD tag was in a topic to which the Master was applied, not to the Master itself. IIRC, when editing a topic, you cannot edit the master page that is associated with it.
    <i>Are you by chance also using the Resource Manager to manipulate or coordinate the company logo? One thought was that if you are, perhaps something about the checking/updating process with the Resource Manager is causing an issue.</i>
    I'm not using the Resource Manager. The image is fully cropped and edited in PNG format before I place it, using the little picture icon. It then shows up in the Project Manager.
    <i>But if you see a hummingbird signature on the radar along with a cold front producing a storm, you will always pay more attention to the storm than the hummingbird, no?</i>
    I'd be so fascinated with the hummingbird I'd stay out in the rain to watch it. But that's just me.
    Glossary text can be formatted in the Style Pod. Is that not the requirement?
    I cannot bold or italicize glossary entries at a character level.
    Just for fun, here's the Master Page code (company name replaced with [company]:
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="topic-comment" content="" />
    <meta name="generator" content="Adobe RoboHelp 10" />
    <title>default_master</title>
    <link rel="StyleSheet" href="Admin\default.css" type="text/css" />
    </head>
    <body>
    <?rh-script_start ?><script src="ehlpdhtm.js" type="text/javascript" language="JavaScript1.2"></script><?rh-script_end ?>
    <?rh-region_start type="header" style="width: 100%; position: relative;" ?>
        <table style="border-collapse: collapse;" cellspacing="0" width="100%"
                 bgcolor="#B21E16">
            <col style="width: 64.352%;" />
            <col style="width: 35.648%;" />
            <tr>
                <td style="vertical-align: center; padding-left: 1px; padding-top: 1px;
                     padding-right: 1px;"><p class="Title"><?rh-udv_start name="doc_title" ?>DeepSee Administration Guide<?rh-udv_end ?>
                 </p></td>
                <td style="vertical-align: bottom; padding-left: 1px; padding-top: 3px;
                     padding-right: 1px;"><p style="text-align: right;"><img
                 src="Admin/white_trans_.5in.png" alt="[company]_logo" style="border: none;
                 margin-left: 2px; margin-right: 2px; margin-top: 4px;" border="0" /></p></td>
            </tr>
        </table>
        <br />
        <?rh-placeholder type="breadcrumbs" ph-align="2" usetopicformat="1"
         home="Home" sep-char="&#160;&gt;&#160;" ph-style="font-family:Verdana;font-size:12pt;font-weight: normal;font-style: normal;text-decoration: none;" ?>
    <?rh-region_end type="header" ?>
    <?rh-region_start type="body" ?>
        <p>&#160;</p>
    <?rh-region_end type="body" ?>
    <?rh-region_start type="footer" style="width: 100%; position: relative;" ?>
        <p style="font-size: 8pt; font-style: italic; color: #b32017; text-align: center;">©
         <a href="javascript:BSSCPopup('Admin/Admin/Admin/Admin/Admin/copyright.htm');"
             id="a1">2012 [company]</a></p>
    <?rh-region_end type="footer" ?>
    <?rh-script_start ?><script type="text/javascript" language="JavaScript1.2">//<![CDATA[
        if( typeof( FilePopupInit ) != 'function' ) FilePopupInit = new Function();
        FilePopupInit('a1');
    //]]></script><?rh-script_end ?>
    </body>
    </html>
    And here's the topic. The table that I edit to produce the error is styled as "data," but the table in the Master page is not styled at all.
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Language" content="en-US" />
    <meta name="topic-status" content="In Progress" />
    <meta name="template" content="default_master.htt" />
    <meta name="build tags" content="Admin" />
    <meta name="generator" content="Adobe RoboHelp 10" />
    <title>Capture</title>
    <link rel="stylesheet" href="default.css" type="text/css" />
    </head>
    <body>
    <?rh-script_start ?><script src="../ehlpdhtm.js" type="text/javascript"
                                 language="JavaScript1.2"></script><?rh-script_end ?>
    <?rh-placeholder type="header" ?>
    <h1>Capture</h1>
    <p>The interfaces are displayed below the iGraph. There is a separate box
    for each interface on the [product].</p>
    <p>&#160;</p>
    <p><img src="../gfx/138-interfaces.png" alt="" style="border: none;" border="0" /></p>
    <p>&#160;</p>
    <table class="data" cellspacing="0" width="100%">
        <col style="width: 6%;" />
        <col style="width: 94%;" />
        <tr>
            <td class="t1st" style="border-right: Solid 1px #000000; border-bottom: Solid 1px #000000;
                 vertical-align: Bottom;"><p class="table_text" style="text-align: center;">1</p></td>
            <td style="border-bottom: Solid 1px #000000; vertical-align: Bottom;"><p
                 class="table_text"><span>Interface speed</span></p></td>
        </tr>
        <tr>
            <td class="t1st" style="border-right: Solid 1px #000000; border-bottom: Solid 1px #000000;
                 vertical-align: Bottom; padding-right: 8pt;"><p class="table_text"
                                                                 style="text-align: center;">2</p></td>
            <td style="border-bottom: Solid 1px #000000; vertical-align: Bottom;"><p
                 class="table_text">Line color on iGraph</p></td>
        </tr>
        <tr>
            <td class="t1st" style="border-right: Solid 1px #000000; border-bottom: Solid 1px #000000;
                 vertical-align: Bottom;"><p class="table_text" style="text-align: center;">3</p></td>
            <td style="border-bottom: Solid 1px #000000; vertical-align: Bottom;"><p
                 class="table_text">Click to apply a capture filter; see <span
             style="background-color: #00ffff;">Capture Filters</span> for
             more information</p></td>
        </tr>
        <tr>
            <td class="t1st" style="border-right: Solid 1px #000000; border-bottom: Solid 1px #000000;
                 vertical-align: Bottom;"><p class="table_text" style="text-align: center;">4</p></td>
            <td style="border-bottom: Solid 1px #000000; vertical-align: Bottom;"><p
                 class="table_text">Toggle to enable/disable representation
             on iGraph</p></td>
        </tr>
        <tr>
            <td class="t1st" style="border-right: Solid 1px #000000; border-bottom: Solid 1px #000000;
                 vertical-align: Bottom;"><p class="table_text" style="text-align: center;">5</p></td>
            <td style="border-bottom: Solid 1px #000000; vertical-align: Bottom;"><p
                 class="table_text">Toggle to start/stop data capture</p></td>
        </tr>
        <tr>
            <td class="t1st" style="border-right: Solid 1px #000000; vertical-align: Bottom;"><p
                 class="table_text" style="text-align: center;">6</p></td>
            <td style="vertical-align: Bottom;"><p class="table_text">Interface
             name: <span style="font-weight: bold;">eth</span>—Ethernet;<span
             style="font-weight: bold;"> ift</span>—time-replay mapping;<span
             style="font-weight: bold;"> ifm</span>—merged mapping</p></td>
        </tr>
    </table>
    <p>&#160;</p>
    <p>Each interface box shows a table with the following columns:</p>
    <?rh-list_start class="rl-p-bullet" an="1" level="1" style="list-style: rh-list;
                     list-style: rh-list;" ?><p class="bullet"><span style="font-weight: bold;">Type</span>—Current,
    maximum, and total. </p><?rh-list_end ?>
    <?rh-list_start class="rl-p-bullet" an="1" level="1" style="list-style: rh-list;
                     list-style: rh-list;" ?><p class="bullet"><span style="font-weight: bold;">Captured</span>—Total
    amount of data captured by this interface. </p><?rh-list_end ?>
    <?rh-list_start class="rl-p-bullet" an="1" level="1" style="list-style: rh-list;
                     list-style: rh-list;" ?><p class="bullet"><span style="font-weight: bold;">Filtered</span>—Amount
    of filtered data captured by this interface.</p><?rh-list_end ?>
    <p>&#160;</p>
    <?rh-placeholder type="footer" ?>
    <?rh-script_start ?><script type="text/javascript" language="JavaScript1.2">//<![CDATA[
    //]]></script><?rh-script_end ?>
    </body>
    </html>

  • I was exporting photos from Light Room 5.3 to Face Book when this 'fatal error' message popped up.

    AN INTERNAL ERROR Has OCCURED: HOW CAN I FIX THIS PROBLEM? PLEASE HELP> THANK YOU.
    can't parse JSON at char 1 of: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
       xml:lang="en" lang="en" id="facebook">
      <head>
        <title>Facebook | Error</title>
        <meta http-equiv="Content-Type"  content="text/html; charset=utf-8" />
        <meta http-equiv="Cache-Control" content="no-cache" />
        <meta name="robots"              content="noindex,nofollow" />
        <style type="text/css">
          html, body {
            margin:       0px;
            padding:      0px;
            text-align:   center;
            font-family:  "Lucida Grande", "Tahoma", "Verdana", "Arial", sans-serif;
            color:        #333333;
          a.menu {
            margin:     auto;
            position:   relative;
            display:    block;
            width:      964px;
            height:     29px;
            background: #3B5998 url('https://s-static.ak.fbcdn.net/common/error.png')
                        top center no-repeat;
          .core {
            text-align: left;
            margin:     auto;
            width:      904px;
            padding:    1em 0em;
          h1 {
            font-size:  18px;
          p {
            font-size:  13px;
          .footer {
                  border-top: 1px solid #DDDDDD;
            color:      #777777;
            float:      left;
            width:      904px;
            padding:    5px 8px 6px 0;
            font-size:  11px;
        </style>
        <script type="text/javascript" charset="utf-8">
          function back() {
            if (1 < history.length) {
              history.back();
              return false;
            return true;
        </script>
      </head>
      <body>
        <a class="menu" href="http://www.facebook.com/"></a>
        <div class="core">
          <h1>Sorry, something went wrong.</h1>
          <p>We're working on getting this fixed as soon as we can.</p>
          <p><a onclick="return back();" href="http://www.facebook.com/">Go Back</a></p>
          <div class="footer" id="pagefooter_copyright">
            Facebook &copy;
            2013
            &#183;
            <a href="http://www.facebook.com/help/">Help</a>
          </div>
        </div>
      </body>
    </html>

    Hi,
    Thanks John!
    For some reason LR was not seeing the files on the drive. I reconnected it and it worked!
    Thanks again,
    Sherry

  • Character encoding with CF and MySQL

    Okay, I thought this should be rather straight forward but
    apparently not. I have set up my site to use UTF-8— my cfm
    pages, the MySQL table, even Dreamweaver. The problem is when I
    input international character via a form they get written correctly
    to the MySQL table; however, when I retrieve them in a query and
    display them on the page I get them displayed incorrectly.
    On my input.cfm page I'll enter the string
    "Téstïñg" in the textbox and submit it. If I look at
    the record via the MySQL Browser it appears as it should. However
    when I display it on my output.cfm page it shows the record as
    "T�st��g" and will do so until I change the
    meta tag to use charset=ISO-8859-1. Am I missing something or is
    this how it is suppose to work?
    My input.cfm page is set up with both the
    <cfprocessingdirective suppresswhitespace="YES"
    pageencoding="UTF-8">
    <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8">
    tags and a regular input formfield that writes to the MySQL
    database.
    The MySQL table is configured to use the utf8 char set and
    utf8_unicode_ci collation.
    And just to be safe I included
    useUnicode=true&characterEncoding=utf8&characterSetResults=utf8
    in the connection string on the CF Admin datasource setup page.
    I'm running CF 6.1, MySQL 4.1, the latest version of Apache
    Server on a Win2K3 box. I was running the 3.0.16 MySQL JDBC driver
    but I upgraded it to the 5.0.6 this morning thinking that may fix
    my issue.

    I'm still unsure why this works but I've found a solution. I
    switched all my pages over to character set ISO-8859-1 with the
    exception of my database table and it works. I get all the normal
    range character along with the extended Unicode characters to write
    to the database and output correctly. Unicode characters actually
    write to the table as their HTML coded character.
    If someone feels the need to enlighten me as to why this
    works please feel free, I'm always willing to learn.

Maybe you are looking for

  • How to realise a point track application with user-defined original point?

    hi,    I am developing a simple point track application, it is not the same as the traditional mouse cursor tracking problem and i get really confused.     there are two pictures to describe my application:    the first one descirbes the default stat

  • Convert dual boot to RT

    Hello all, Does anyone know if it is possible to convert a dual-boot controller to RT only?  I have a hard disk that just died and to simplify things I would like to install RT only on the new drive as we are moving over to RT only.  The PXI controll

  • Is there a shortcut to get to the end of a very long list of music?

    Hello, I couldn't find this in the threads, so hope it hasn't been covered. I have a lot of music loaded, no photos. The problem is that every time I select "Songs", "Albums" or whatever in the menu, I start at the top as they are arranged alphabetic

  • New MBP/Lion is "no longer authorized"

    Hi - I'm syncing my iPhone 4 for the first time with my new MBP/Lion and having some issues.  I've checked this forum and others have the same issues.  I've followed all the advice given but still have the same crazy problem syncing. The iPhone has n

  • Charge on 2.2.1 and some issues that I found.

    After I bought my charge and my daughters LG revolution on the SAME day my daughters phone was updated that day to 2.2.3 (Gingerbread)  while my phone is running an OS lower than I had on my Droid 1.  Now this bothers me as the 2.2.2 updates some iss