SOAP Reponse contains &gt and &lt instead of and

I am new to Web Services. I wrote a simple SOAP client in Java. It seems to work and I get the SOAP response back; however the XML response has < and > instead of < and >. Am I making a mistake in my source code? I have placed my source code below and the result that I get when I run the code. How do I get a proper response with < and > instead of &lt and &gt?
Webservice Endpoint: http://www.webservicex.net/stockquote.asmx
WSDL Location: http://www.webservicex.net/stockquote.asmx?wsdl
From the <GetQuoteResult>, the reponse I get has &lt and &gt for < and >. However, when I past it here, the &lt and &gt are being converted to < and >.
SOAP Response that I get:
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.
xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetQuoteResponse xmln
s="http://www.webserviceX.NET/"><GetQuoteResult><StockQuotes><Stock>
<Symbol>IBN</Symbol><Last>38.58</Last><Date>7/30/2
010</Date><Time>10:24am</Time><Change>-0.35</Change&g
t;<Open>38.42</Open><High>38.86</High><Low>38.29&l
t;/Low><Volume>314170</Volume><MktCap>21.505B</MktCap&gt
;<PreviousClose>38.93</PreviousClose><PercentageChange>-0.90%&
lt;/PercentageChange><AnnRange>28.53 - 45.95</AnnRange><Earns&
gt;1.782</Earns><P-E>21.85</P-E><Name>ICICI Bank Limite&
lt;/Name></Stock></StockQuotes></GetQuoteResult></GetQuoteRespons
e></soap:Body></soap:Envelope>
SOAP response that I am expecting:
<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.
xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetQuoteResponse xmln
s="http://www.webserviceX.NET/"><GetQuoteResult><StockQuotes><Stock>
<Symbol>IBN</Symbol><Last>38.58</Last><Date>7/30/2
010</Date><Time>10:24am</Time><Change>-0.35</Change&g
t;<Open>38.42</Open><High>38.86</High><Low>38.29&l
t;/Low><Volume>314170</Volume><MktCap>21.505B</MktCap&gt
;<PreviousClose>38.93</PreviousClose><PercentageChange>-0.90%&
lt;/PercentageChange><AnnRange>28.53 - 45.95</AnnRange><Earns&
gt;1.782</Earns><P-E>21.85</P-E><Name>ICICI Bank Limite&
lt;/Name></Stock></StockQuotes></GetQuoteResult></GetQuoteRespons
e></soap:Body></soap:Envelope>
Source Code:
import java.net.*;
import java.io.*;
public class stocksoapClient {
  public final static String DEFAULT_SERVER = "http://www.webservicex.net/stockquote.asmx";
  public final static String SOAP_ACTION = "http://www.webserviceX.NET/GetQuote";
  public static void main(String[] args) {
    String input = "IBN";
    String server = DEFAULT_SERVER;
    if (args.length >= 2) server = args[1];
    try {
           Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("proxy.compaq.com", 8080));        
           URL u = new URL(server);
           URLConnection uc = u.openConnection(proxy);
           HttpURLConnection connection = (HttpURLConnection) uc;
           connection.setDoOutput(true);
           connection.setDoInput(true);
           connection.setRequestMethod("POST");
           connection.setRequestProperty("Content-Type",  "text/xml; charset=utf-8");
           connection.setRequestProperty("Content-Length",  String.valueOf(input.length()));
           connection.setRequestProperty("SOAPAction", SOAP_ACTION);
           //connection.connect();
           OutputStream out = connection.getOutputStream();
           Writer wout = new OutputStreamWriter(out);
           //wout.write("POST" + DEFAULT_SERVER  + "HTTP/1.1");
           //wout.write("Host:www.webservicex.net");
           //wout.write("Content-Type: text/xml; charset=utf-8");
           //wout.write("Content-Length: " + String.valueOf(input.length()));
           //wout.write("SOAPAction:" + SOAP_ACTION);         
          //wout.write("\n");     
           wout.write("<?xml version='1.0' encoding='utf-8'?>"); 
           wout.write("<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'>");
           wout.write("<soap:Body>");
           wout.write("<GetQuote xmlns='http://www.webserviceX.NET/'>");
           wout.write("<symbol>"+input+"</symbol>");
           wout.write("</GetQuote>");     
           wout.write("</soap:Body>");
           wout.write("</soap:Envelope>");
           wout.flush();
           wout.close();
           BufferedReader rd = new BufferedReader(new InputStreamReader(connection.getInputStream()));
           String line;     
           //InputStream in = connection.getInputStream();
           //int c;
           while ((line=rd.readLine()) != null) {
              System.out.println(line);
           rd.close();
    } catch (IOException e) {
           System.err.println(e);
}

This problem won't occur if the server side returns xmlobject to the client instead of a xmlstring
Thanks
Srinivas K G

Similar Messages

  • SOAP Reponse contains and instead of and

    I am new to Web Services. I wrote a simple SOAP client in Java. It seems to work and I get the SOAP response back; however the XML response has < and > instead of < and >. Am I making a mistake in my source code? I have placed my source code below and the result that I get when I run the code.
    Webservice Endpoint: http://www.webservicex.net/stockquote.asmx
    WSDL Location: http://www.webservicex.net/stockquote.asmx?wsdl
    SOAP Response that I get:
    <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.
    xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
    " xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetQuoteResponse xmln
    s="http://www.webserviceX.NET/"><GetQuoteResult><StockQuotes><Stock>
    <Symbol>IBN</Symbol><Last>38.58</Last><Date>7/30/2
    010</Date><Time>10:24am</Time><Change>-0.35</Change&g
    t;<Open>38.42</Open><High>38.86</High><Low>38.29&l
    t;/Low><Volume>314170</Volume><MktCap>21.505B</MktCap&gt
    ;<PreviousClose>38.93</PreviousClose><PercentageChange>-0.90%&
    lt;/PercentageChange><AnnRange>28.53 - 45.95</AnnRange><Earns&
    gt;1.782</Earns><P-E>21.85</P-E><Name>ICICI Bank Limite&
    lt;/Name></Stock></StockQuotes></GetQuoteResult></GetQuoteRespons
    e></soap:Body></soap:Envelope>
    SOAP response that I am expecting:
    <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.
    xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
    " xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetQuoteResponse xmln
    s="http://www.webserviceX.NET/"><GetQuoteResult><StockQuotes><Stock>
    <Symbol>IBN</Symbol><Last>38.58</Last><Date>7/30/2
    010</Date><Time>10:24am</Time><Change>-0.35</Change&g
    t;<Open>38.42</Open><High>38.86</High><Low>38.29&l
    t;/Low><Volume>314170</Volume><MktCap>21.505B</MktCap&gt
    ;<PreviousClose>38.93</PreviousClose><PercentageChange>-0.90%&
    lt;/PercentageChange><AnnRange>28.53 - 45.95</AnnRange><Earns&
    gt;1.782</Earns><P-E>21.85</P-E><Name>ICICI Bank Limite&
    lt;/Name></Stock></StockQuotes></GetQuoteResult></GetQuoteRespons
    e></soap:Body></soap:Envelope>
    Source Code:
    import java.net.*;
    import java.io.*;
    public class stocksoapClient {
      public final static String DEFAULT_SERVER = "http://www.webservicex.net/stockquote.asmx";
      public final static String SOAP_ACTION = "http://www.webserviceX.NET/GetQuote";
      public static void main(String[] args) {
        String input = "IBN";
        String server = DEFAULT_SERVER;
        if (args.length >= 2) server = args[1];
        try {
               Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("proxy.compaq.com", 8080));        
               URL u = new URL(server);
               URLConnection uc = u.openConnection(proxy);
               HttpURLConnection connection = (HttpURLConnection) uc;
               connection.setDoOutput(true);
               connection.setDoInput(true);
               connection.setRequestMethod("POST");
               connection.setRequestProperty("Content-Type",  "text/xml; charset=utf-8");
               connection.setRequestProperty("Content-Length",  String.valueOf(input.length()));
               connection.setRequestProperty("SOAPAction", SOAP_ACTION);
               //connection.connect();
               OutputStream out = connection.getOutputStream();
               Writer wout = new OutputStreamWriter(out);
               //wout.write("POST" + DEFAULT_SERVER  + "HTTP/1.1");
               //wout.write("Host:www.webservicex.net");
               //wout.write("Content-Type: text/xml; charset=utf-8");
               //wout.write("Content-Length: " + String.valueOf(input.length()));
               //wout.write("SOAPAction:" + SOAP_ACTION);         
              //wout.write("\n");     
               wout.write("<?xml version='1.0' encoding='utf-8'?>"); 
               wout.write("<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'>");
               wout.write("<soap:Body>");
               wout.write("<GetQuote xmlns='http://www.webserviceX.NET/'>");
               wout.write("<symbol>"+input+"</symbol>");
               wout.write("</GetQuote>");     
               wout.write("</soap:Body>");
               wout.write("</soap:Envelope>");
               wout.flush();
               wout.close();
               BufferedReader rd = new BufferedReader(new InputStreamReader(connection.getInputStream()));
               String line;     
               //InputStream in = connection.getInputStream();
               //int c;
               while ((line=rd.readLine()) != null) {
                  System.out.println(line);
               rd.close();
        } catch (IOException e) {
               System.err.println(e);
    }

    I meant to say my SOAP response contains "&lt" and "&gt" instead of < and >.
    Edited by: [email protected] on Jul 30, 2010 7:44 AM
    Edited by: [email protected] on Jul 30, 2010 7:44 AM

  • I have upgraded to OS X mavericks and there is now a problem with my email. I have discovered several emails no longer contain the original message instead another completely different message is appearing but under the name of original sender. Any ideas?

    I have upgraded to OS X mavericks and there is now a problem with my email. I have discovered several emails no longer contain the original message instead another completely different message is appearing but under the name of original sender. Any ideas?

    With the account mailbox selected, Mailbox menu, Rebuild.

  • Different soap request in 9.2.0.4 linux and windows for same webservice

    hi,
    i deployed a webservice on iis5 (dotnet 1.1). the client for this web service is written in java and is loaded into oracle db (9.2.0.4 linux). and there are errors. the same java code is working fine on 9.2.0.4 windows.
    description of the error:
    <?xml version="1.0" encoding="UTF-8" ?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:MethodName xmlns:ns1=http://tempuri.org/Service/message/ SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <SomeString xsi:type="xsd:string" xsi:nil="true" />
    <ErrorDes xsi:type="xsd:string" xsi:nil="true" />
    </ns1:MethodName>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    there are problems with the 'SomeString' and 'ErrorDes' elements. there is an attribute xsi:nil="true". in the working requests this isn't present. the result of this, if for example DName isn't assigned a value this element isn't in the resulting response:
    <?xml version="1.0" encoding="utf-8" ?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns=http://tempuri.org/ xmlns:types="http://tempuri.org/encodedTypes" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <q1:MethodNameResponse xmlns:q1=http://tempuri.org/Service/message/>
    <Result xsi:type="xsd:int">0</Result>
    <ErrorDes xsi:type="xsd:string">string</ErrorDes>
    </q1:MethodNameResponse>
    </soap:Body>
    </soap:Envelope>
    what can cause this behaviour? is there a way to prevent sending the xsi:nil attribute?
    thanks
    ralf

    This is just one of the web service interop problems you can face. Both omitting the accessor with the NULL value as in your "working request" and placing xsi:nil attribute with the value "true" as in "not working request" are valid in soap messages. The problem happens when either the soap client or soap server/container does not fully support the soap spec or support with wrong interpretations. Most of the toolkit are not sophisticated enough to let you choose one of two options above.
    Maybe you might want to consider not allowing non-null values so that you can get around with the interop problem, and add logic in the client and service implementation to handle special cases for default values indicating null.
    Below is FYI.
    SOAP 1.1 spec says the following.
    "A NULL value or a default value MAY be represented by omission of the accessor element. A NULL value MAY also be indicated by an accessor element containing the attribute xsi:null with value '1' or possibly other application-dependent attributes and values."
    On the other hand, there is no "null" attribute in http://www.w3.org/2001/XMLSchema-instance namespace referenced by xsi in your soap messages, and xsi:nil is the valid attribute name.
    Regards,
    Pyounguk

  • I spilled water on my laptop and my "i", "j" and "k" letters don't work on my laptop. However my main problem is that my password contains an "i" so i am locked out of my computer. Any ideas how I can get around the password and login.

    I spilled water on my laptop and my "i", "j" and "k" letters don't work on my laptop. However my main problem is that my password contains an "i" so i am locked out of my computer. Any ideas how I can get around the password and login. I tried the method where you go into single user mode and type in commands, however that method uses some of the letters that are not working on my laptop.

    You didn't mention which version of OS X your running but there are password reset utilities provided OS X: Changing or resetting an account password (Snow Leopard and earlier) - Apple Support  or  OS X: Changing or resetting an account password - Apple Support
    Alternately you can use an external keyboard to log in and change the password. Make a backup if you don't have one, it's likely that your problems aren't over. If that water continues to migrate downward and fries the logic board your macbook will be toast.

  • My play lists and songs on iTunes and on my iPhone won't play.  They are light grey instead of black and nothing happens when I click on the songs.  All of the songs were either from CD's or from iTunes that I purchased. I have home sharing turned on. Thi

    My play lists and songs on iTunes and on my iPhone won't play.  They are light grey instead of black and nothing happens when I click on the songs.  All of the songs were either from CD's or from iTunes that I purchased. I have home sharing turned on. This is a new issue.  It used to work fine.  I tried restarting my iPhone and syncing with iTunes. Neither worked.  Please help!

    Try delete those songs using iTunes by de-selecting and sync. After that mark those songs and sync again.

  • I scraped my old computer disc and lost all my data including my itunes library backup. I recreated a new itune library on my new computer but it only contains my purchased music,apps,books and movies. I Can I reverse a sync Ipod to Itunes?

    How can I rebuild my itunes library on my new computer that will include all my downloaded CD's. My new library only contains my purchased music,apps.books and movies, (My library on my old computer is scraped)
    The library on my ipod is intact. I don't dare to sync with the library on my new computer because I will loose my cd music.  Can I do a reverse sync IPOD to Itunes?

    Browse the app store.  You will need a special purpose app to help you.

  • What are the T-codes that contain the master data for material and vendor?

    what are the T-codes that contain the master data for material and vendor?

    hi ,
    - Display Material  tcodes...
    MM01 - Create Material
    MM02 - Change Material
    MM03 - Display Material
    MM50 - List Extendable Materials
    MMBE - Stock Overview
    MMI1 - Create Operating Supplies
    MMN1 - Create Non-Stock Material
    MMS1 - Create Service
    MMU1 - Create Non-Valuated Material
    ME51N - Create Purchase Requisition
    ME52N - Change Purchase Requisition
    ME53N - Display Purchase Requisition
    ME5A - Purchase Requisitions: List Display
    ME5J - Purchase Requisitions for Project
    ME5K - Requisitions by Account Assignment
    MELB - Purch. Transactions by Tracking No.
    ME56 - Assign Source to Purch. Requisition
    ME57 - Assign and Process Requisitions
    ME58 - Ordering: Assigned Requisitions
    ME59 - Automatic Generation of POs
    ME54 - Release Purchase Requisition
    ME55 - Collective Release of Purchase Reqs.
    ME5F - Release Reminder: Purch. Requisition
    MB21 - Create Reservation
    MB22 - Change Reservation
    MB23 - Display Reservation
    MB24 - Reservations by Material
    MB25 - Reservations by Account Assignment
    MB1C - Other Goods Receipts
    MB90 - Output Processing for Mat. Documents
    MB21 - Create Reservation
    MB22 - Change Reservation
    MB23 - Display Reservation
    MB24 - Reservations by Material
    MB25 - Reservations by Account Assignment
    MBRL - Return Delivery per Mat. Document
    MB1C - Other Goods Receipts
    MB90 - Output Processing for Mat. Documents
    MB1B - Transfer Posting
    MIBC - ABC Analysis for Cycle Counting
    MI01 - Create Physical Inventory Document
    MI02 - Change Physical Inventory Document
    MI03 - Display Physical Inventory Document
    MI31 - Batch Input: Create Phys. Inv. Doc.
    MI32 - Batch Input: Block Material
    MI33 - Batch Input: Freeze Book Inv.Balance
    MICN - Btch Inpt:Ph.Inv.Docs.for Cycle Ctng
    MIK1 - Batch Input: Ph.Inv.Doc.Vendor Cons.
    MIQ1 - Batch Input: PhInvDoc. Project Stock
    MI01 - Create Physical Inventory Document
    MI02 - Change Physical Inventory Document
    MI03 - Display Physical Inventory Document
    MI31 - Batch Input: Create Phys. Inv. Doc.
    MI32 - Batch Input: Block Material
    MI33 - Batch Input: Freeze Book Inv.Balance
    MICN - Btch Inpt:Ph.Inv.Docs.for Cycle Ctng
    MIK1 - Batch Input: Ph.Inv.Doc.Vendor Cons.
    MIQ1 - Batch Input: PhInvDoc. Project Stock
    MI01 - Create Physical Inventory Document
    MI02 - Change Physical Inventory Document
    MI03 - Display Physical Inventory Document
    MI31 - Batch Input: Create Phys. Inv. Doc.
    MI32 - Batch Input: Block Material
    MI33 - Batch Input: Freeze Book Inv.Balance
    MICN - Btch Inpt:Ph.Inv.Docs.for Cycle Ctng
    MIK1 - Batch Input: Ph.Inv.Doc.Vendor Cons.
    MIQ1 - Batch Input: PhInvDoc. Project Stock
    MI21 - Print physical inventory document
    MI04 - Enter Inventory Count with Document
    MI05 - Change Inventory Count
    MI06 - Display Inventory Count
    MI09 - Enter Inventory Count w/o Document
    MI34 - Batch Input: Enter Count
    MI35 - Batch Input: Post Zero Stock Balance
    MI38 - Batch Input: Count and Differences
    MI39 - Batch Input: Document and Count
    MI40 - Batch Input: Doc., Count and Diff.
    MI08 - Create List of Differences with Doc.
    MI10 - Create List of Differences w/o Doc.
    MI20 - Print List of Differences
    MI11 - Physical Inventory Document Recount
    MI07 - Process List of Differences
    MI37 - Batch Input: Post Differences
    for vendor..
    XKN1  Display Number Ranges (Vendor)
    XK01  Create vendor (centrally)
    XK02  Change vendor (centrally)
    XK03  Display vendor (centrally)
    XK04  Vendor Changes (Centrally)
    XK05  Block Vendor (Centrally)
    XK06 Mark vendor for deletion (centrally
    XK07  Change vendor account group
    XK11  Create Condition
    XK12  Change Condition
    XK13  Display Condition
    XK14  Create with cond. ref. (cond. list)
    XK15  Create Conditions (background job)
    reward points if useful,
    venkat.

  • Extra bytes in data transfer when using VISA and C++ instead of LABVIEW

    Hello,
    I've a problem when I try to download the capture buffer from a spectrum analyzer with C++Builder and VISA.
    If I do that with LABVIEW (with VISA read and write) everything is fine. Instead, with C I get extra bytes in
    the stream. In particular whenever there is a '0A' in the stream I get also a '0D' before it. I'm using a GPIB-USB-B card from National. I know I could easily get rid of those extra bytes in my code, but I'd like a cleaner solution.
    Does anybody know the difference between the following code and LABVIEW VISA read and write routines?
    Is there some attributes I have to set in C which is automatically set in LABVIEW?
    Thanks a lot in advance!!
    Simone
    ViSession defaultRM, vi;
    viOpenDefaultRM (&defaultRM);
    viOpen (defaultRM, "GPIB0::10::INSTR", VI_NULL,VI_NULL, &vi);
    ViStatus err = viSetAttribute(vi, VI_ATTR_IO_PROT, VI_NORMAL);
    ViUInt32 retCount;
    err = viWrite(vi, "CGET?0,0\n", strlen("CGET?0,0\n"), &retCount);
    ViByte* buffer = new ViByte[100000];
    err = viRead(vi, (ViByte*)buffer, 100000, &retCount);
    FILE *fp;
    fp = fopen("data", "w");
    fwrite (buffer, retCount, sizeof(ViByte), fp);
    fclose(fp);
    viClose(defaultRM);
    viClose(vi);
    delete []buffer;

    Simone,
    this has to do with LabVIEW running on multiple platforms with different End-of-line signals.
    With Windows this is usually 0x0d0a, which is the ASCII control code for . Other platforms use typically just one of those characters; I believe with MacOS there used to be just a 0x0a and with Unix this might have been 0x0d.
    In order to avoid hazzles, the LabVIEW develloper decided to convert the platform-specific End-of-line signals into a LabVIEW-internal character (which is 0x0a) when reading strings and back when sending strings out of LabVIEW.
    So, your device sends out 0xd0a and LabVIEW removes the 0x0d. Everything is OK.
    Greetings from Germany!
    Uwe

  • The system doesn't recognize or capitalize the word (I) or the first word of every sentence. Another really annoying thing about the integrated mail on your Mac computers is the fact that the system learns the word as you type it more and more instead of

    The system doesn’t recognize or capitalize the word (I) or the first word of every sentence. Another really annoying thing about the integrated mail on your Mac computers is the fact that the system learns the word as you type it more and more instead of highlighting it as incorrectly is this is a word that’s being misspelled. Can Apple fix this bug to make it user friendly as if you were using Office or a Word Document?

    You hit the target CT.
    It’s only fair that if Apple is going to integrate Mail into Mac PCs, it would be nice if the system does it for you like Office or perhaps Outlook. I just don’t to use Outlook although I have it installed and ready to use, but instead use Mail which comes with Mac OS already.
    I hope to make some sense here.

  • MacBook Air fails to wake and reboots instead after upgrading to Mavericks

    Hi,
    I've got a MacBook Air, 2011, 13', that has been working fine for a few years already. I upgraded to Mavericks two days ago and so far it has been working great except for one irritating issue - it keeps rebooting my system instead of waking up the computer from sleep after some long sleep cycles. For instance, I was working on my MacBook for the whole day yesterday and put it to short sleep for a few times and everything worked fine. But when I put my Mac to sleep and got back home and tried to awake it, I saw a rebooted login screen, and the system suggested that I should send a crash report to Apple.
    The exact same thing happened just a few minutes ago when I awoke my Mac from a night-long sleep.
    On Lion and Mountain Lion, I never had such issues.
    Is this an issue with Mavericks that I should fix somehow?
    Thanks for your replies.

    Well, since upgrading to Mavericks, I started watching a movie. Suddenly the screen dims and then goes black. Trying to waken my MBA means I need to restart. I have turned off all the sleep fuctions for the monitor and the hard drive. Still is happening??

  • I've had itunes on my laptop for over a year; it seems to arbitrarily duplicate songs and now, instead of 800 songs, I have 3,500 with 2,700 being dupes.  How do I get rid of the dupes?

    I've had itunes on my laptop for over a year; it seems to arbitrarily duplicate songs and now, instead of 800 songs, I have 3,500 with 2,700 being dupes.  How do I get rid of the dupes?

    How to find and remove duplicate items in your iTunes library

  • Brand new 5s- sometimes phone numbers display when receiving calls and texts instead of contact name.

    Brand new 5s- sometimes phone numbers display when receiving calls and texts instead of contact name. Hard to know who is calling/texting! A few times I've tapped on the text message icon and I can actually watch as the conversations turn from showing just numbers to the contact names. Same thing when looking at call history and voice mail- sometimes it shows numbers and then I'll go back and the contacts will be back. So frustrating!

    boomer1630 wrote:
    - i have a Samsung S3)
    -I have tried using *228 to update.
    You don't dial *228 to update the Preferred Roaming List on 4G phones; I"m surprised the call went through.  The PRL updates are handled by the SIM card. 
    Try this and see if it helps:  turn off the phone, remove the SIM card, and wait a few minutes.  Then re-insert the SIM card, turn the phone back on, and give the phone a few minutes to re-establish a network connection.

  • How to create a folder (in unified folders) which contains all the messages of inboxes and outboxes

    Hi, i've searched without success how to create a folder (in unified folders) which contains all the messages of inboxes and outboxes (as it exists in Windows Live Mail).
    For me, it would be very useful to search in only one folder when i try to find something in sent and received mails.
    Thank's

    This is what Unified Folders does. I'm not sure what exactly you're trying to achieve.
    http://kb.mozillazine.org/Global_Inbox#Unified_Folders
    You might take a look at this article.
    https://support.mozilla.org/en-US/kb/global-search

  • I have a manual that contains headings and index entries that contain less than and greater than characters, and . The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the C

    I have a manual that contains headings and index entries that contain less than and greater than characters, < and >. The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the Contents or the Index of the generated HTML. In the Contents the words are completely missing and in the index entries the '\' characters that are required in the markers remain in the entry but the leading less than symbol and the first character of the word is deleted; hence what should appear as <dataseries> appears as \ataseries\>. I believe this is a FMv12 bug. Has anyone else experienced this? Is the FM team aware and working on a fix. Any suggestions for a workaround?

    The Index issue is more complicated since in order to get the < and > into the index requires the entry itself to be escaped. So, in order to index '<x2settings>' you have to key '\<x2settings\>'. Looking at the generated index entry in the .js file we see '<key name=\"\\2settings\\&gt;\">. This is a bit of a mess and produces an index entry of '\2settings\>'. This ought to be '<key name=\"&amp;lt;x2settings&amp;gt;\" >'. I have tested this fix and it works - but the worst of it is that the first character of the index entry has been stripped out. Consequently I cannot fix this with a few global changes - and I have a lot of index entries of this type. I'm looking forward to a response to this since I cannot publish this document in its current state.  

Maybe you are looking for

  • Error when adding a provider

    Hi I am new to Biztalk RFID and am trying to follow exapmples from a book " Pro RFID in Biztalk Server 2009" When i try to add a contoso provider to the device simulator i get the following error The HTTP request is unauthorized with client authentic

  • Error message when downloading Indesign CS6 trial: file in Adobe manager is corrupt

    When I try to download the trial version of ID(Indesign cs6) I get an error message saying the file in adobe manager is corrupt to contact customer service.

  • Color .jpg/.gif images in the .CHM and true (4BPP/8BPP) grayscale in Printed Output?

    I do all my document creation in RH first, then output WinHelp and to Word 2003. I want to keep color images in the CHM and have a majority of the images become true monochrome grayscale in the Word doc. Yes, Word does have a nifty "grayscale" optopn

  • "Correct" way to do data entry form?

    I have a situation where I want to build a page that will accept input for a number of fields. The data entered will be passed to a PL/SQL procedure that will then be sent to another application. There are no database tables being read, nor are any b

  • Trans QA12  ERROR:DYNPRO_NOT_FOUND

    I create quality notification by using trans qm01 then I assign task to it and release both (notification and the task)  I can see and work on the task (i.e. change its status to complete) through trans qm02 . but when I want to work on the task usin