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

Similar Messages

  • 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

  • How can i deploy a silverlight application when it contains an aspx page (And Aspx page content is a DevExpress Scheduler)

    I have a silverlight application. It has containing many navigation pages in it. One of this pages is containing an .aspx page and i have used devexpress scheduler on there. It is working perfect on development machine but on production machine when client
    logged and navigate to the scheduler page there is a message top of the page saying
    webbrowser is enabled only for out-of-browser applications running with elevated permissions in Internet Explorer.
    And i have found something like that
    https://msdn.microsoft.com/en-us/library/gg192793(v=vs.95)
    But I think my problem is not that in my project properties i always checked the require permission checkbox. i couldnt understand this behavior and how can i solve. I tryed to use .pfx file by adding in project properties signing tub. Even i couldnt understand
    how why are we using this certificate and is it interesting with it
    Also now i seen in my development machine when i opened this page a popup window come up this message:
    the current webpage is trying to open a site in your trusted sites list. Do you want to allow this?
    current site: res/npctrUI.dll
    Trusted site: localhost
    warning allowing this can expose your computer to security risk. If you dont trust the current page, choose no.
    regards
    Hamit YILDIRIM

    Things that require elevated trust will always work in visual studio.
    You need elevated trust to use the webbrowser inside a Silverlight page on a user's machine.
    That means purchasing a security certificate.
    https://msdn.microsoft.com/en-us/library/gg192793(v=vs.95)
    You can open up any old web page in another tab from Silverlight and I would suggest you consider that instead of using a webbrowser control inside a Silverlight page.
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Queries: user id and employee number ,and reponsibility and menu exclusions

    Hi,
    I have two different queries that are requested and I do not have a document to guide me in the tables relationships.
    Query 1:
    need to represent the reponsibility name asscociated with the name of menu and the functions excluded from that menu in the responsibility.
    i was only able to retrieve the reponsibility name and the menu name, i do not know what is the table that contains the menu exclusion and how can i link it to the responsibility.
    Please help, my query so far is as follows:
    SELECT DISTINCT e.application_name, a.responsibility_name
    --,a.LANGUAGE,
    --,b.responsibility_key
    , c.user_menu_name
    ,c.DESCRIPTION
    ,fme.prompt, fme.description
    ,fme.MENU_ID,frf.ACTION_ID
    FROM apps.fnd_responsibility_tl a,
    apps.fnd_responsibility b,
    apps.fnd_menus_tl c,
    apps.fnd_menus d,
    apps.fnd_application_tl e,
    apps.fnd_application f,
    apps.fnd_menus_tl apm,
    fnd_menu_entries_tl fme,
    FND_RESP_FUNCTIONS frf
    WHERE a.responsibility_id(+) = b.responsibility_id
    AND b.menu_id = c.menu_id
    AND b.menu_id = d.menu_id
    AND e.application_id = f.application_id
    AND f.application_id = b.application_id
    AND a.LANGUAGE = 'US'
    and apm.menu_id = fme.menu_id
    and fme.MENU_ID(+)=c.MENU_ID
    and b.RESPONSIBILITY_ID=frf.RESPONSIBILITY_ID
    Query 2 :
    It is required to represent the employee info associated with their associated reposnsibilities.
    i could not link the employee number to the user id.
    how can i join the two tables: fnd_user and per_all_people_f
    PLEASE HELP ME.

    Hi,
    need to represent the reponsibility name asscociated with the name of menu and the functions excluded from that menu in the responsibility.
    i was only able to retrieve the reponsibility name and the menu name, i do not know what is the table that contains the menu exclusion and how can i link it to the responsibility.See these documents.
    Note: 948512.1 - Checking Functions Associated with a User Menu or a Responsibility
    Note: 468013.1 - Code Snippet for querying responsibilities and users in 11i Applications
    Query 2 :
    It is required to represent the employee info associated with their associated reposnsibilities.
    i could not link the employee number to the user id.
    how can i join the two tables: fnd_user and per_all_people_f Refer to the following docs for the requested query.
    Note: 227103.1 - How Do I Find Person_Type Information in 11.5
    Note: 332904.1 - How to Find Employees Who Have Logged In
    Note: 332794.1 - Employee & User E-mail Syncronization
    Regards,
    Hussein

  • Firefox gets slow after awhile and also hangs and sometimes i get plugin-container.exe error

    Hello, it's a while that Firefox gets slow and also hangs and sometimes i get plugin-container.exe error...
    I'm not sure but maybe it often happens after monitor goes to Screen Saver or after it turns off...
    Error signature
    AppName: plugin-container.exe AppVer:1.2.9.3951
    ModVer: 5.1.2600.5512 Offset:0000100b

    You can run Java in Firefox.exe instead of plugin-container.exe, but I'm not sure that actually would be better than where you are now.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''java''' and pause while the list is filtered
    (3) If '''dom.ipc.plugins.java.enabled''' is true (bolded), right-click it and choose Reset (or double-click it to toggle).
    If that value already is false, you might be having a problem with another common plugin such as Flash.

  • Installd Ffox 3.6.15. Redo Flash AGAIN? How can I: Tweak 2 fix plugin-container crashes/hangs10X/day,and 2) Avoid need to reinstall Java, Flash,& other media plugins(Flash, Realplayr/Quiktime Alternative, Media Player Classic)? Ffox fan

    plugin-container crashes and hangs many times daily all my time eaten up by upgrading too frequently to new Ffox versions, only to find that I must then spend a whole day jumping thru hoops upgrading almost all of my add-ons too.
    I now find, to my horror, that the hideous virus-magnet IE 8 is needed if I want to surf at a reasonable speed and not spend all day dealing with Ffox new versions' Known Issues. Only good thing I have seen about ver. 3.6.15 is slightly better launch-times. Since 3.6 cane out, I must spend 10 minutes just waiting for Firefox to load and give me a browser screen. Help! I love you guys, but your core browser developers need to have better comms with the Javaa/flash/Adobe and other must-have add-on people! And PLEASE fix all these "plugin-container" crashes and hangs I get, that lock my machine for 10-15 min at a time. Not everybody has 16 gigs of RAM, you know! I think the "plugin-container" running as a separate process idea might need to be COMPLETELY re-engineered! YOU CAN DO IT! LET'S GET BACK TO LEAN AND MEAN, and not bloat ourselves off our hard-won User Preference / great security pedestal with the kind of feature-creep that IS DEMOLISHING IE's slave-userbase with the hard-won advanced-user preference for Firefox
    and our core values. FAST-LEAN-SECURE.
    Where have they gone? I LOVE Firefox
    and all it stands for! Let's not trip
    over our own features here. Already I
    see SeaMonkey and leaner, faster
    browsers hot on our heels, THIN and
    FAST! Firefox doesn't need to integrate
    with EVERY thru-the-browser media tool
    on the planet! I've been writing code
    since 1968, and I can't imagine how a
    lesser-experienced user (that code
    should be written for) could possibly
    have navigated all the side-upgrades
    and Known Issues to make Firefox run as
    sweetly as it used to! He'd just give
    up when he finds he has to separately
    find and install the EXACT 3rd-party
    version that Firefox needs for its
    newest release: things like a new Java
    runtime environment, and hunt down and
    correctly install ALL the Flaming-Phox-
    compatible buggy plugins from half the
    browser-media warezmakers on the
    PLANET! He'd give up halfway thru trying to navigate to, D/L, and install
    what he needs from Oracle Java, Adobe,
    Flash, media players and their codecs,
    etc etc.... WRITE FOR THE NOOBS! As it
    is, I have invested 2 full workdays in
    just keeping your last 2 quick releases
    happy. And having another release spaced only 3-4 days apart from the
    last- well, that just doesn't fly.
    Better to release a hotfix or patch that a user can set FFox to automatically D/L and self-install on
    schedule. Just look! Now you've got me
    talking like that lawbreaking swine
    Gates! We want to keep on absorbing
    the average-user center and take it ALL
    away from him, not go on feature,
    plugin, and upgrade-bloating the best
    browser EVER!
    You're facing choices that can kill
    us! PLEASE DONT BLOAT! AND PLEASE ONLY
    RELEASE A NEW VER WHEN YOU CAN REALLY
    GET RID OF SERIOUS PROBLEMS AND MAKE
    HER FASTER AND LEANER AND BETTER UNDER
    THE HOOD! Already the Noobs are getting
    mindlessly scared when you talk about
    "fixing a Security problem"- really a
    minor issue that SHOULD be taken care
    of by their antimalware solution- in
    the Release Notes splash screen they
    get on install of a new ver! Thanks, my
    friends, for all your work, and YES I
    WILL sit here all day trying to find
    the add-ons that need to be selected,
    downloaded, and upgraded from 10
    different 3rd-party sites who are
    fighting our browser, not dancing with
    it! DON'T EVEN LOOK Evil! But I have
    to confess that at this point, Gates-hate is all that keeps me on
    these all-day new-release tasks. Even
    my best techs are starting to advise me
    to install SeaMonkey or another of the
    newer, thinner browsers... or just stop
    upgrading Firefox and roll it back to
    when it was sharp, fast, and lean! Look
    at all the users wanting to go back to
    3.6.13 or earlier and looking for archives of old versions. THANKS AND
    GOOD LUCK! I'LL DIE BEFORE I GIVE UP ON
    MY BELOVED FIREFOX!
    -The CRASHMAN, ATTORNEY AT LAW

    Thanks! I've already used the built-in plugin checker but it gives very vague answers like (research this" and update this" all of which I did, starting with Java and Flash, Adobe Reader, Shockwave, 100% reinstall of Java newest ver. TWICE- but FFox keeps reporting that I only have the FORMER version installed, although when I go to Java console or Check the Flash executable at the MFR's site, there is NO doubt that the updates were successful!
    But the browser just seems to refuse to acknowledge the update!
    And I don't HAVE 6 hrs/day at the 'puter just to play with add-ons
    and plugups. So I'm going down the line now, ripping out extension
    programs and replacing/reinstalling/updating the plugins one by
    one- even went to M$ to get advice on THEIR For-Firefox ActiveX
    stuff. No dice so far. And yeah, The plugin-container WAS made so
    that a plugin, add-on or I guess extension app failure wouldn't take
    the whole FF browser down with it if the 3rd-party ware crashed. It's supposed to shake it off and go on, kinda like how XP sometimes
    restarts Explorer (not the IE browser) so I don't have to reboot the
    whole sys.
    That was the foundation of my remark about stepping back and
    re-engineering the whole "Plugin-container" idea, because it seems
    to do more harm than good. Maybe that's why the Firefox core
    engine won't recognize my upgrades- for example I TWICE installed the Flash update to 10.2.xx (latest ) and the Flash Mfr's
    site verifies my upgrade as a successful 10.2, but Firefox plugins
    check say I have a 10.1, the old one. What gives here? The sneaky
    PLUGIN CONTAINER, METHINKS!
    Now I'm disabling things on the Extensions Apps list, thinking
    that might help, like disabling my video downloader and other
    download helpers/managers... and I notice that there is a LOT of
    Java stuff in there too as well as in the blue Lego Plugins List... and
    in the past the FFox always told me if a new version of Ffox was
    incompatible with any older 3rd-party app Extensions and notified
    me QUICKLY if something I had in there was Outdated. I'm big on
    using the neat-o "find updates" button at the bottom if that happens, and usually get a newer version right away. The prob
    really lies in the Blue Lego Plugins and their new Container, I
    believe.
    So Ill still keep Plugin-innin' away! Will post here what success I have! (OR maybe M$ is deliberately sabotaging our ActiveX-cripple
    mess as it loads!) Thanks for the suggestions a37271!
    FIND UPDATE...FIND UPDATE.. ALL OK..ALL OK.....
    "Open the Plugin Container Bay Doors, HAL! That's an Order!"
    "I'm sorry Dave.... but I can't do that...."
    "GIVE ME MY THIN FAST BROWSER WITH THE GREAT
    SECURITY AND BUILT-IN E-Z UPGRADES AND APPS BACK,
    HALFOX!"
    SORRY, DAVE.... NOT POSSIBLE. WE'VE GONE TOO FAR...
    DAISEE, - - - - - -DAI---SEE,
    SET ALL MY CONFIGS TO "TRUE"
    Or WON'T YOU LOOK SWEET
    PERCHED ON THE SEAT
    OF A BROWSER NOT BUILT FOR TWO..!
    You look a little stressed-out Dave.....
    Some TV Existential Therapy for YOU, Dave.
    Too bad.... here, breathe deep of the hard vacuum.....
    I can feel my MIND going... DAVE.... DAVE...?
    WHAT MIND? A YELPING PACK OF DEVELOPERS?

  • I am trying to rebuild my iPhoto library and noticed my backup contains aliases (pointers?) and not the actual file. What's the best way to rebuild my library?

    I am trying to rebuild my iPhoto library and noticed my backup contains aliases (pointers?) and not the actual file. What's the best way to rebuild my library?
    Facts:
    In moving to a new iMac, I copied the iPhoto library to an external HDD assuming that I would point the new iMac to the backed up iPhoto Library
    All worked fine when I pointed the new library but noticed that some folders contained aliases and not the original file. So when I attempt to open that photo it can't find it because the alias is pointing to another drive.
    I do have all original photos from a couple of external HDDs. In the folders titled, "Originals" (from older versions of iPhoto) and "Masters" (from current iPhoto)
    I'm thinking I can create a new folder and drop the original files and make that my new iPhoto library. Is there a better way to rebuild my library? I do not want to create any future aliases.
    Thanks in advance for any help!

    do you have a strongly recommended default "managed" library (the iPhoto preference to "copy imported items to the iPhoto library is in its checked state) or a referenced library - you have unchecked that option?
    It sounds like you have a referenced library and are now experiancing one of the very siginificant drawbacks of a referenced library and one of the many reasons they are strongly not recommended
    Also note that iPhoto '11 may use alises in the originals folder as part of the upgrade
    It is important that we understand exactly what you have and what is not sorking - what error messages you are getting
    You must NEVER make any changes of any sort to the structure of content of the iPhoto library - there are no user servicable parts in it  --  and you can not rebuild yoru librtary - only iPhoto ir iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/ -  can rebuild a library unless you are a SQL programmer and understand the structure that iPhoto uses
    LN

  • I can't be the only person who has this problem - when a month ends on a Saturday I can't drag events into the next month and instead have to cut and paste - a real pain in the butt. I thought there was something called "scroll" but I can't find that

    I can't be the only person who has this problem with iCal- when a month ends on a Saturday I can't drag events into the next month and instead have to cut and paste - a real pain in the butt. I thought there was something called "scroll" but I can't find that.

    Yeah that works, but, it involves a click on the event, a click on edit, a click on the date, keystrokes, plus, since you can't see the next month you have to have a calendar in front of you so as to put it to the right date. It's easier just to cut it and advance the month and paste it, once you are in the right month you can move it around helter skelter willy nilly no problems. Although now that you mention it I will try it, maybe it is easier than cut and paste as I don't really care about the date, as long as it gets moved into the right month I can drag it around all I want.

  • Pages fail to load and instead show "invis.gif 1x1 pixels"

    Leopard 10.5.1, Safari 3.0.4, Mac Book Pro, Airport to Linksys WRT54Gv6 to Cable Modem.
    Sometimes, while viewing certain pages, Safari will fail to load the page and instead show "invis.gif 1x1 pixels" in the window title bar. The content area is plain white. Ironically, this is 100% reproducible when trying to reply to a forum post here.
    With the Debug menu enabled, Web Inspector shows the following warnings:
    * Resource interpreted as document but transferred with MIME type image/gif.
    * http://discussions.apple.com/post!reply.jspa?messageID=6033688
    * Resource interpreted as image but transfered with MIME type text/html.
    * http://discussions.apple.com/favicon.ico
    I've seen this failure before while randomly browsing the web, but this is the first URL I've come across that is 100% reproducible. Firefox 2.0.0.11 and Opera 9.24 don't have a problem loading the page on the same computer.
    Thoughts?
    Kenny

    Thanks iBod! I spent an hour at the local Apple Store and walked away with no solution. But the guy did say check the discussions board and I was also running into the following messages in my title bar:
    adclick (GIF Image, 1x1 pixels)
    click (GIF Image, 1x1 pixels)
    (GIF Image, 1x1 pixels)
    I had tried a trial version of NetBarrier that came with my Virus Barrier and Personal BackUp and when I deleted the app my problems began. I had no idea it was the culprit because it happened in both Safari and Firefox.
    Well after reading your reply...
    I went into Preferences and deleted the folder called "Net Barrier" and no more problems.
    Thanks again!
    Next time I'll check here first!

  • I'm using iPhoto 11, and instead of seeing my images in the main view, I see only outlines. (Had same problem in iPhoto 10 before upgrade to Lion Help!

    I'm using iPhoto 11, and instead of seeing my images in the main view, I see only outlines. (Had same problem in iPhoto 10 before upgrade to Lion Help!
    I'm on a Macbook Pro and all of my software is up-to-date.
    The photos and events, etc. appear to be present in my photo library, but I cannot see the actual images--only an outlined placeholder.

    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to rebuild the thumbnails. This can take 3 or 4 goes to work.

  • I just got an iphone 6. Not all of my music was on itunes, so I logged in and instead of clicking set up as new iphone I hit restore from backup, thinking it only pertained to the music in itunes. Now my new iphone looks just like my old iphone and h

    I just got an iphone 6. Not all of my music was on itunes, so I logged in and instead of clicking set up as new iphone I hit restore from backup, thinking it only pertained to the music in itunes. Now my new iphone looks just like my old iphone and has iphone 5 settings. How can I undo and get back to iphone 6 settings?

    Settings/Reset/Erase all content and settings...
    Recently I had to do the sequence above and when the phone rebooted, it came up as a new phone.

  • I will type in google let say tree the search will click on to one of the searches and instead of tree web page showing up a ad page will come up this happens with very thing can you help.

    I will type in google let say tree the search will click on to one of the searches and instead of tree web page showing up a ad page will come up this happens with very thing can you help.

    You (or your kids) inadvertently installed adware. You do not need to download or install anything to fix it.
    Any tips on how to stop it from happening?
    Yes. To learn how to avoid it in the future read How to install adware.
    If you require them, Apple's removal instructions are linked in the Recovery Procedure near the end of that document. Read and follow them carefully. Pay particular attention to the easily overlooked passages directing you to restart your Mac when required.

  • If i backup an app for example Music Downloader as it contains like 300 songs and now i want to replace my iphone 5 so when i restore the app from itunes do i get back all the content in the app or just the app itself ??..

    If i backup an app for example Music Downloader as it contains like 300 songs and now i want to replace my iphone 5 so when i restore the app from itunes do i get back all the content in the app or just the app itself ??..

    Hey Hussain,
    I am not sure whether the music will get restored.
    Anyway try this
    1.Connect iPhone to PC.
    2.Open iTunes
    3.Open iPhone Summary
    4.Go to Apps Tab
    5.Under File Sharing Section Click on Music Downloader
    6.Right side if you see your songs click on one song and press (CTRL + A).(hope you are using windows) and click  on save and then save to  a folder on your computer.
    7. Later just do steps till 5 to put to new iPhone then ...........
    8.Click on save and select the music files which u want to put in that app.
    9.Click on apply to sync.
    10.You should be having the music in that app
    Hope it helps,
    Rohit

  • When installing or uninstalling iTunes I get 'The folder path 'My Music' contains an invalid character' and fails

    When installing or uninstalling iTunes I get 'The folder path 'My Music' contains an invalid character' and fails

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I dropped my external hard drive which contained my iTunes library and it is no longer readable. I attempted to upload my library from iPod and while all the songs appear to be in iTunes I get a message telling me that the original file can't be located.

    I dropped my external hard drive that contained my iTues library and the disk is no longer readable. I figured I would simply transfer my music back from my iPod to my MacBook Pro and it loks like it worked. All the songs are there, but I receive a message that the original file can't be found when I try to play anything. ANy help would be greatly appreciated.

    A Couple of questions..
    Is the location shown under preferences/Advanced/General still showing the correct location?
    Is the check boxes under this checked or unchecked?

Maybe you are looking for