BUG: iTunes truncates lyrics when using COM Interface

Hi!
I am using iTunes 6.0.4.2 for Windows (Latest Version at the moment), running under Windows 2000, both in english. I wrote an application that accesses iTunes using the COM Interface, and i am using the latest type library (1.7).
Everything works fine, except for one odd thing: Lyrics.
When i get Lyrics from a track, they get truncated - one char for each line break.
Tried the following: Added the following lyrics to a Track:
12345678901234567890
Works fine, when i get the lyrics, i get 20 chars and they are intact.
Now, i change the Lyrics:
1234567890
1234567890
When i now get the lyrics, i only get a string with 21 characters - the resulting string is
1234567890<#13><#10>123456789
(<#13><#10> are representing the ascii chars 13 and 10, not the actual strings <#13><#10>!)
For every line break I add, i lose a char. With this Lyrics:
1234567890
1234567890
1234567890
1234567890
the result is:
1234567890
1234567890
1234567890
1234567
iTunes seems to have a problem with line breaks, as they are represented by 2 chars (CR+LF, Ascii 13+10) in Windows rather than 1 char (CR, Ascii 13) in UNIX.
This seems to be a Bug in iTunes. I tried the following JScript Code:
var iTunesApp = WScript.CreateObject("iTunes.Application");
var currTrack = iTunesApp.CurrentTrack;
var Lyrics = currTrack.Lyrics;
WScript.Echo("Current Track: " + currTrack.Name);
WScript.Echo(Lyrics);
and this gives me:
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
1234567890
123456789
As you see, it truncated the last 0.
I am doing my real programming in Borland Delphi 7 Personal Edition, and it happens there as well - for every line break, I lose 1 Character.
The display in iTunes Lyrics-Tab is fine and not truncated, so it just seems to be a bug in the COM-Interface. Not sure where to report them, so i'll just post here. maybe someone knows a remedy?
Here are some Screenshots:
iTunes and Script-Output:
http://img474.imageshack.us/my.php?image=lyricsbroken3nd.jpg
Selecting Lyrics in iTunes (Not sure if this is important, but notice the difference at the end of the first 3 lines and on the last one)
http://img60.imageshack.us/my.php?image=lyrics4linesselected7yc.jpg
My iTunes Version:
http://img239.imageshack.us/my.php?image=version7fo.jpg
  Windows 2000   iTunes 6.0.4.2, iTunes Type Library 1.7

Edit: I just tried a german Version of iTunes 6.0.4.2 on an english Windows 2003 Server with a different Track - same problem here.
I then downgraded to iTunes 6.0.1.3 on the same machine - same: 1 lost char for each line break. It does not matter if I add "fresh" lyrics using iTunes 6.0.1.3 or if I query the ones made in 6.0.4.2.
I don't have iTunes 5.0.1 anymore, but I will try to get it to try with this version.

Similar Messages

  • ITunes closed unexpected when using BeoSoundPlugin

    Hi,
    After installing iTunes 10 a few days ago I am not able to open my iTunes anymore. If I try to I get a "Problem report about iTunes" saying that iTunes closed unexpected when using BeoSoundPlugin. I have never experienced any problems with this before. I don't think I have any BeoSound installed anymore. I am simply not able to enter iTunes. I have tried to uninstall iTunes and install it again but without any success.
    Does anybody know what to do? I have attached some of the text from the Problem report below.
    Process: iTunes [422]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: 10.0 (10.0)
    Build Info: iTunes-10006701~1
    Code Type: X86 (Native)
    Parent Process: launchd [79]
    PlugIn Path: /Users/jesperstrunge/Library/iTunes/iTunes Plug-ins/BeoSoundPlugin.bundle/Contents/MacOS/BeoSoundPlugin
    PlugIn Identifier: com.bang-olufsen.itunes.2
    PlugIn Version: ??? (1.0.0f1)

    Hej Jesper and velkommen to the forums!
    The answer, if there is one, seems to be contained here (scroll down):
    http://beophile.com/?page_id=1091
    You may still have part of BeoSound left on your Mac. Either use Spotlight to find them or have a look in the most obvious places:
    Home/Library/Input Managers
    Hard Disk/library/Input Managers
    Hard Disk/Library/Application Support
    Also, try repairing permissions.

  • I have purchased and began to download music several times.  While i is downloading iTunes quits and when I come back to iTunes my account has been charged and my songs have not been downloaded? How do I get my songs?

    I have purchased and began to download music several times.  While i is downloading iTunes quits and when I come back to iTunes my account has been charged and my songs have not been downloaded? How do I get my songs?

    Hi there Angel T,
    You may find the articles below helpful.
    iTunes: Finding lost media and downloads
    http://support.apple.com/kb/TS1408
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    -Griff W.

  • No performance gain when using local interfaces

    Hello,
    I'm doing some tests to compare performances between remote ejb interfaces and local ejb interfaces.
    I have two stateless session beans EJB1 and EJB2, EJB1 calls a method on EJB2, this method receives one object as the only parameter and returns it immediately. The parameter is a big object (~700ko). My test consists simply of making 1000 calls from EJB1 to EJB2, one time with remote interfaces, one time with local interface. For both tests, the EJBs run in the same container, same VM.
    The results show absolutely no differences between the remote and the local interface !
    As I found these results a bit surprising, I changed the serialization method of my parameter object this way:
    private void writeObject(java.io.ObjectOutputStream out) throws IOException {
    System.out.println("writeObject(MyBigObject)");
    out.defaultWriteObject();
    just to check if my object is serialized when using remote interface. And the response is no.
    So question is: is there an "undocumented optimization" of the stub/skel generated by weblogic which make local calls when calling a remote method inside the same VM ?
    Some precisions:
    - I'am using weblogic 8.1sp2
    - When calling remotely my EJB2 from an external batch (running in a separate VM), I see the message "writeObject(MyBigObject)" so the serialization is done in this case.

    <Fr?d?ric Chopard> wrote in message news:[email protected]..
    So question is: is there an "undocumented optimization" of the stub/skel generated by weblogic which make local calls when callinga remote method inside the same VM ?
    >
    Some precisions:
    - I'am using weblogic 8.1sp2
    - When calling remotely my EJB2 from an external batch (running in a separate VM), I see the message "writeObject(MyBigObject)" sothe serialization is done in this case.
    WebLogic 5.x, 6.x and 7.x do call by reference for co-located EJBs by default. 8.1 has this behavior turned off by default. You may
    experience call-by-reference optimization in 8.1 only if it has been turned on explicitly in the deployment descriptor.
    Hope this helps.
    Regards,
    Slava Imeshev

  • Why is my iTunes so slow when used on an external drive

    I have an late 2006 iMac Intel 2.0GHz w/ 512mb ram, Model MA200LL. It has a 250GB HD. 13.4GB of used space on the internal HD. The problem has occurred when it had Tiger and has persisted through Leopard 10.5.2.
    I have 125GB of music on a Seagate Free Agent 250GB external hard drive. When I try to delete a song it takes 87 seconds to delete. When I scroll through the 22,222 songs I get a spinning wheel for 10 - 15 seconds. Switching songs works very good.
    I used the same external drive on my Mac Pro (2.66GHz - 1GB Ram) and when I try the same actions it works instantly.
    The same issues arises when I used a 500GB WD World Book external hard drive.
    I have run Onyx which reported no problems with the internal hard drive.
    Should I expect to delete files quicker on the iMac in iTunes? If there is a problem, what can I do so that I get iTunes to perform better using an external drive?
    Thank you.

    One thing that you can do in general to help overall performance is upgrade your RAM. The late 2006 iMacs should be able to take up to 3GB of RAM(some people install 4GB anyway) but even going up to 2GB should help your system a lot. Besides RAM is cheap these days: http://eshop.macsales.com/MyOWC/Upgrades.cfm?model=288&type=Memory&TI=3454&shoup grds=Show+Upgrades
    The Free Agent drives are USB only so for one thing USB will be slower than your internal drive by at least half, however it still shouldn't take 10-15 seconds to access unless something else is going on. What version of iTunes do you have? Did you try Repairing the Disk Permissions and Verifying your internal drive? Try resetting the SMC and see if that helps: http://docs.info.apple.com/article.html?artnum=303446
    Should I expect to delete files quicker on the iMac in iTunes? If there is a
    problem, what can I do so that I get iTunes to perform better using an external
    drive?
    Yes. The internal drive inside your iMac has read/write speeds somewhere between 55-65MB/sec while your USB will max out at about 30MB/sec. This may not fix your problem but just as recommendation, next time purchase an external drive that has a Firewire connection. Firewire 400 maxes out at about 40MB/sec but overall performance is usually better than USB 2.0.
    George

  • Bug Report: Images broke when using get_blob_file_src and not authenticated

    Hi,
    it looks like that images which are retrieved with a
    apex_util.get_blob_file
    call are broken when the user is not authenticated. If the generated image URL is directly called in the browser, it shows a 404 Not found error with a "Invalid Session" in the error log file on the Apache.
    The above image URL is generated when using the apex_util.get_blob_file_src function call. If the new IMAGE format mask (eg. in an IRR) is used it seems to be fine, because that generates a apex_util.get_blob call.
    Testcase:
    1) http://apex.oracle.com/pls/otn/f?p=17201:3 (That's the sample application with page set to "doesn't need authentication")
    -> Image column is broken
    2) Login with demo/patricks_demo_workspace
    3) Go again to page 3 (Products)
    -> Image column is displayed correctly
    Thanks for looking into that
    Patrick
    Oracle APEX Essentials: http://essentials.oracleapex.info/
    My Blog, APEX Builder Plugin, ApexLib Framework: http://www.oracleapex.info/

    Hi Scott,
    when I woke up today it also came into my mind that it may has something to do with the referenced P6_PRODUCT_IMAGE in the
    apex_util.get_blob_file_src('P6_PRODUCT_IMAGE',p.product_id)call which references a page item on a non-public page.
    I think apex_util.get_blob_file_src or better apex_util.get_blob_file shouldn't really care if the "definition" of how the BLOB looks like and where to read the information from is on a non-public page. Because it doesn't read or set actual data it just reads the definition, so it shouldn't be a security issue.
    Another question is, if it's so useful to reference a page item to get this BLOB information and not directly being able to specify this information as parameters in the apex_util.get_blob_file_src call. I think I also raised that during the 3.1 beta, because in case if you just want to display a BLOB you still have to create somewhere a page item of type "file browser" to being able to reference it in the get_blob_file_src call. Direct passing of the vales would also be more transparent and self documenting.
    BTW, the above code is an example of the "Sample Application" and wasn't made up by me, so probably a lot of people are using this technique to get rid of there own blob download procedures.
    Have a nice weekend
    Patrick
    Oracle APEX Essentials: [http://essentials.oracleapex.info/]
    My Blog, APEX Builder Plugin, ApexLib Framework: [http://www.oracleapex.info/]

  • Choose accent color for hovered icons when using dark interface in Bridge?

    How about add the ability to choose the accent color for hovered icons when using a dark interface in Bridge?  Currently, the icon color remains orange and unchangeable.  Personally, I would prefer a blue accent color to match my system.  Any chance of making this possible in CS6?

    Oh, I should add that I'm looking for solutions somewhat up-to-date and/or are related to or designed for 10.6 Snow Leonard. I did a search for answers before asking the question, and the (mostly unsatisfactory) answers I found were all from several years ago and applied to earlier versions of OSX (10.3, 10.4, etc.), and therefore no longer were relevant or usable.

  • Bug in HttpServletRequest.getParameter when using anchors (#)?

    When using
    response.sendRedirect("getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor");
    to redirect to a jsp, a call to getParameter in that JSP for parm2 returns "moreblurb#myanchor" rather than "moreblurb".
    I thought originally that I was building the URL incorrectly but IE5 navigates correctly to the anchor point in my HTML.
    Is this a bug in getParameter or am I doing something wrong?
    Many Thanks, full code below.
    getParameterError.jsp
    <%@ page session="true"
    import="javax.servlet.*,
            java.util.*
    "%>
    <html>
    <head>
    <title>Illustrates problem with request.getParameter and anchors</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <%
        String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor";
        response.sendRedirect( response.encodeRedirectURL( newURL ) ) ;
    %>
    </body>
    </html>
    getParameterError_display.jsp
    <%@ page session="true"
    import="javax.servlet.*,
            java.util.*
    "%>
    <html>
    <head>
    <title>Illustrates problem with request.getParameter and anchors</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <a href="getParameterError.jsp">try again</a>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <a name="myanchor">here is myanchor</a>
    <a href="getParameterError.jsp">try again</a>
    <p>The paramaters are:</p>
    <%
            Enumeration e = request.getParameterNames();
            String name;
            String [] values;
            while( e.hasMoreElements() ) {
                name = (String)e.nextElement();
                values = request.getParameterValues(name);
                for(int i=0; i< values.length; i++) {
    %>
                    <%= name + " = " + values%><br>
    <%
    %>
    </body>
    </html>
    Output
    The paramaters are:
    parm2 = moreblurb#myanchor
    parm1 = blurb

    I get the same problem in Tomcat 4.0.1. Fixed it by terminating the param string with "&".
    e.g. instead of
    String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor"; try
    String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb&#myanchor";This worked in IE6 and Netscape 6.2. Hope it works for you.

  • How to handle type safety when using com.sap.typeservices.IProposalList

    Hi,
    I have been testing out the new features in Web Dynpro Java CE EHP1 using a scenario with BPM and SAP MDM. One of the new features I tested is the Ajax feature of using suggestion values. I have an InputField UI element which have bound to a context attribute (CountriesView/Country) which is of type string. The UI element has the "suggestValues" value set to true. I then use the IProposalList to produce a valueset. This will make the InputField UI appear as a combo box and allow the users to type in a few characters and utilize the Ajax framework to automatically search in the list of values.
    The following code works perfectly ok but I don't understand how I should handle the compiler warning "IProposalList is a raw type. References to generic type IProposalList<T> should be parameterized"?
    IProposalList proposalsCountry = wdContext.nodeCountriesView().getNodeInfo().getAttribute(IPrivateComp1.ICountriesViewElement.COUNTRY).getModifiableSimpleType().getSVServices().getProposals();
    for(int i=0;i<bua.length;i++){
        IPrivateComp1.ICountriesViewElement buaelement=wdContext.createCountriesViewElement();
        buaelement.setCountry(bua<i>[0]);
        buaelement.setCode(bua<i>[1]);
        bualist.add(buaelement);
        proposalsCountry.add(bua<i>[0]);
    wdContext.nodeCountriesView().bind(bualist);
    I don't have any issues handling this for other types such as ArrayList. Using the syntax "IProposalList<String> proposalsCountry ...." will handle the "proposalsCountry.add .." part but I still have a warning "Type safety: The expression of type IProposalList needs unchecked conversion to conform to IProposalList<String>"
    Any ideas on how to handle this?
    Thanks,
    Johan

    Hi,
    Eventhough there are no replies to this thread I thought I should update with what I belive is an answer to my question. Excerpt from http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts:
    "This warning is there because Java is not actually storing type information at runtime in an object that uses generics. Thus, if 'object' is actually a List<String>, there will be no ClassCastException at runtime except until an item is accessed from the list that doesn't match the generic type defined in the variable. This can cause further complications if items are added to the list with this incorrect generic type information. Any code still holding a reference to the list but with the correct generic type information will now have an inconsistent list. To remove the warning, try:
    List<?> list = (List<?>) object;However, note that you will not be able to use certain methods such as add because the compiler doesn't know if you are trying to add an object of incorrect type. The above will work in a lot of situations, but if you have to use add or some similarly restricted method, you will just have to suffer the yellow underline in Eclipse (or a SuppressWarning annotation)."
    The last line explain the reason for my issue and the lack of a solution when using add method.
    /Johan

  • Bug in iPhoto v6 when using Mail

    Bug in image quality when sending photos with Mail.
    Description:
    I click on Email icon in iPhoto, and then choose Medium as the quality, that's when iPhoto tells me that the Photo Count = 1, and Estimated Size = 122Kb. And then the Mail app opens, and I see the same photo inside the message composition window, and now Mail tells me that the Message Size = 55Kb (on the status line at the bottom). And When I send that photo to myself, I receive a photo which is about 40Kb in size, and the photo looks just terrible... how can it look good at 640x480 with only 40Kb?
    Is this a bug, or I can change the jpeg quality somewhere? My friend has a 2-year old iMac with iPhoto 5 and when she sends me pictures the same Medium size they are closer to 100Kb each
    We did a little test: I sent her the same photo in original size, and then she sent me back the Medium Size, and it was around 90Kb. How can I fix/change this, or am I cursed by this BUG in iPhoto v. 6? or a bug in Mail?
    Thanks.
    MacBook Pro 2.4 GHz   Mac OS X (10.4.10)  

    Misio:
    Even though iPhoto said the final size would be 122 KB for a medium size, my test, a 4.2 MB file came in at 68 KB. Another test with a 2 MB file was estimated at 122 KB but came in around the 68 KB size. I think the 122 kb value is hard coded into the application as an approximation only before compressing and not really a bug. Maybe a poor approximation, however.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • ITunes cuts out when using Airport Extreme - what's going on here

    I have a Powerbook G4 with both Airport Extreme (hooked into Comcast internet through ethernet) and Airport Express (hooked into stereo in the next room).
    Where I used to live had the same set-up and had full 4 bars of reception. I moved this past weekend and had Comcast internet set up again in a different city (same set-up though)
    Now I have maybe 2 bars of strength on the Airport Extreme and when playing music on the Airport Express it plays for maybe 5-6 seconds, cuts off, then comes back on. This cycle repeats.
    When I hooked the ethernet directly into the Airport Express the music worked just fine.
    Is the Airport Extreme dying on me? Please help.
    Thanks

    Thanks - went to the Extreme and Express and turned on interference robustness. This helped in that now I have all 4 bars of signal strength.
    Still getting the cut-off on the ITunes though. Have gotten the "error 3256" twice now and Itunes freezes. Looked it up online and it said the cause is a 3rd party router or firewall - I dont believe I am using either. Error 3256 means something is blocking the UDP traffic which causes the Itunes to turn off and on.
    Am very frustrated Itunes wont work. Its only 15 feet from the Extreme Base Station. I moved the 5.8ghz cordless phone (8 feet away)and the Comcast VOIP phone modem (10 feet away in closed closet) but to no avail.

  • JDev 10.1.3 Prod Bug in Structure Window when using PL/SQL and Stored Types

    Using JDev 10.1.3 build 3673
    When loading/editing a PL/SQL package with code like the following:
    rec := NEW Record001Row;
    Where Record001Row is a stored type on the database gives an "Error Expecting ;" in the JDev Structure Window. Once the above line is commented out, the PL/SQL program structure appears in the Structure Window. I can then uncomment the above line and the structure of the PL/SQL program stays, but the "Error Expecting ;" still appears.

    Logged the bug 5010466.
    Thank you for reporting this.

  • Bug in Flash 8 when using Strings Panel?

    A problem with the strings panel in Flash 8 I have found is
    that, when working with 6 languages, if you save and close down
    your Flash file with the Strings panel hidden, and re-open the FLA
    and then view the strings panel/view your text on the stage (or
    open the xml file) that, in my cae, some EN strings have been
    corrupted/mutated to other languages.
    This is obviously a bug in Flash which corrupts one of the
    XML files if the strings panel is closed. Why does it do this? Its
    very annoying having to remember to open the strings panel whenever
    I load that specific project, even if I am not going to use it. And
    the panel takes up a lot of space as it is so can't leave it open
    all the time for other projects.
    Any ideas?

    Howdy. I'm having a very similar problem. I'm working with 21
    languages (including EN) on the strings panel in Flash 8. I've
    found that my languages get corrupted -- EN strings get substituted
    in for some, not all localized strings in the panel -- when I
    publish or test the movie. I was publishing for Flash 7. When I
    changed my publishing settings to Flash 8, the problem went away.
    Have you gotten any answers to your problem?

  • Possiblely a bug - windows update error when using NAT between Hyper-V Virtual Ethernet Adapter

    I'm using SCVMM managing my Hyper-V machine.
    I have three physical network adapter on my hyper-v host as below:
    I'm using SCVMM 2012 SP1 to create two virtual network adapter base on each Realtek controller, Bridge the traffic from the physical adapter, NAT the traffic from the internal virtual adapter to the internet facing virtual adater.
    I can access the internet but i got the windows update error as below
    If i NAT the internal virtual adapter traffic to the WIFI physical  internal facing adapter, windows update is fine.
    I'm using my hyper-v server windows NAT feature.
    I did google a round, it looks like something wrong when you NAT the two virtual network adatper..
    if anyone here can help, that's would be much appreciated.
    2013-03-27    18:38:25:627     868    ba4    AU    ## START ##  AU: Search for updates
    2013-03-27    18:38:25:627     868    ba4    AU    #########
    2013-03-27    18:38:25:627     868    ba4    AU    <<## SUBMITTED ## AU: Search for updates  [CallId = {F6806137-9A32-4476-AF23-38B11881056E} ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}]
    2013-03-27    18:38:25:627     868    934    Agent    *************
    2013-03-27    18:38:25:627     868    934    Agent    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2013-03-27    18:38:25:627     868    934    Agent    *********
    2013-03-27    18:38:25:627     868    934    Agent      * Online = Yes; Ignore download priority = No
    2013-03-27    18:38:25:627     868    934    Agent      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation'
    or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2013-03-27    18:38:25:627     868    934    Agent      * ServiceID = {7971F918-A847-4430-9279-4A52D1EFE18D} Third party service
    2013-03-27    18:38:25:627     868    934    Agent      * Search Scope = {Machine & All Users}
    2013-03-27    18:38:25:627     868    934    Agent      * Caller SID for Applicability: S-1-5-21-759915917-1653667288-1560420946-1106
    2013-03-27    18:38:25:627     868    934    EP    Got 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL: "http://ds.download.windowsupdate.com/v10/2/microsoftupdate/redir/muauth.cab"
    2013-03-27    18:38:25:627     868    934    EP    Got 7971F918-A847-4430-9279-4A52D1EFE18D redir Client/Server URL: "https://fe1.update.microsoft.com/v6/ClientWebService/client.asmx"
    2013-03-27    18:38:25:627     868    934    Setup    Checking for agent SelfUpdate
    2013-03-27    18:38:25:627     868    934    Setup    Client version: Core: 7.8.9200.16465  Aux: 7.8.9200.16451
    2013-03-27    18:38:25:799     868    934    EP    Got 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SelfUpdate URL: "http://fe1.update.microsoft.com/v10/2/windowsupdate/selfupdate"
    2013-03-27    18:38:25:799     868    934    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2013-03-27    18:38:25:815     868    934    Misc     Microsoft signed: Yes
    2013-03-27    18:38:25:815     868    934    Misc     Infrastructure signed: Yes
    2013-03-27    18:38:26:002     868    934    Misc    Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab:
    2013-03-27    18:38:26:002     868    934    Misc     Microsoft signed: Yes
    2013-03-27    18:38:26:002     868    934    Misc     Infrastructure signed: Yes
    2013-03-27    18:38:26:002     868    934    Setup    Skipping SelfUpdate check based on the /SKIP directive in wuident
    2013-03-27    18:38:26:002     868    934    Setup    SelfUpdate check completed.  SelfUpdate is NOT required.
    2013-03-27    18:38:26:440     868    934    PT    +++++++++++  PT: Synchronizing server updates  +++++++++++
    2013-03-27    18:38:26:440     868    934    PT      + ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}, Server URL = https://fe1.update.microsoft.com/v6/ClientWebService/client.asmx
    2013-03-27    18:38:28:846     868    934    WS    WARNING: Nws Failure: errorCode=0x803d0014
    2013-03-27    18:38:28:846     868    934    WS    WARNING: Original error code: 0x80072efe
    2013-03-27    18:38:28:846     868    934    WS    WARNING: There was an error communicating with the endpoint at 'https://fe1.update.microsoft.com/v6/ClientWebService/client.asmx'.
    2013-03-27    18:38:28:846     868    934    WS    WARNING: There was an error receiving the HTTP reply.
    2013-03-27    18:38:28:846     868    934    WS    WARNING: The connection with the remote endpoint was terminated.
    2013-03-27    18:38:28:846     868    934    WS    WARNING: The connection with the server was terminated abnormally
    2013-03-27    18:38:28:846     868    934    WS    WARNING: Web service call failed with hr = 80240440.
    2013-03-27    18:38:28:846     868    934    WS    WARNING: Current service auth scheme='None'.
    2013-03-27    18:38:28:846     868    934    WS    WARNING: Proxy List used: '(null)', Bypass List used: '(null)', Last Proxy used: '(null)', Last auth Schemes used: 'None'.
    2013-03-27    18:38:28:846     868    934    WS    FATAL: OnCallFailure(hrCall, m_error) failed with hr=0x80240440
    2013-03-27    18:38:28:846     868    934    PT    WARNING: PTError: 0x80240440
    2013-03-27    18:38:28:846     868    934    PT    WARNING: SyncUpdates_WithRecovery failed.: 0x80240440
    2013-03-27    18:38:28:846     868    934    PT    WARNING: Sync of Updates: 0x80240440
    2013-03-27    18:38:28:846     868    934    PT    WARNING: SyncServerUpdatesInternal failed: 0x80240440
    2013-03-27    18:38:28:846     868    934    Agent      * WARNING: Failed to synchronize, error = 0x80240440
    2013-03-27    18:38:28:862     868    934    Agent      * WARNING: Exit code = 0x80240440
    2013-03-27    18:38:28:862     868    934    Agent    *********
    2013-03-27    18:38:28:862     868    934    Agent    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2013-03-27    18:38:28:862     868    934    Agent    *************
    2013-03-27    18:38:28:862     868    934    Agent    WARNING: WU client failed Searching for update with error 0x80240440
    2013-03-27    18:38:28:862     868    598    AU    >>##  RESUMED  ## AU: Search for updates [CallId = {F6806137-9A32-4476-AF23-38B11881056E} ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}]
    2013-03-27    18:38:28:862     868    598    AU      # WARNING: Search callback failed, result = 0x80240440
    2013-03-27    18:38:28:862     868    598    AU    #########
    2013-03-27    18:38:28:862     868    598    AU    ##  END  ##  AU: Search for updates  [CallId = {F6806137-9A32-4476-AF23-38B11881056E} ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}]
    2013-03-27    18:38:28:862     868    598    AU    #############
    2013-03-27    18:38:28:862     868    598    AU    All AU searches complete.
    2013-03-27    18:38:28:862     868    598    AU      # WARNING: Failed to find updates with error code 80240440
    2013-03-27    18:38:28:862     868    598    AU    AU setting next detection timeout to 2013-03-27 12:38:28
    Ricky

    some more interesting article i've found so far
    http://practicalkungfu.net/2013/03/11/windows-update-error-code-8024402f-on-hyper-v-guests/
    http://faultbucket.ca/2012/08/windows-server-2012-windows-update-error-0x80240440/
    http://social.technet.microsoft.com/Forums/en-US/winserver8gen/thread/80548a4e-6c68-4700-a37b-9e22890bd8af
    Ricky

  • Return code 1073807364 (0x40010004) on Windows when using COM to script Illustrator and Photoshop

    Hi,
    I'm using python via COM to run Illustrator and Photoshop on a Windows machine and I occasionally get this return code in python from the subprocess: 1073807364 (0x40010004). I've done some googling and it seems to indicate that that's a Windows return code for "the process is still running". Is it safe for me to let the process continue when I see that return code? Or does that indicate something else?
    Thanks.

    I have similar setup to yours.
    From my point of view you need more RAM. I have 16GB. Than you will need to change in preferences to adjust memory used by PS and Illustrator. Maybe take a look at virtual memory in Windows and disable aero effects.
    Disk. It is better to have one disk for system (eg.SSD) and one for documents. But don't buy something like WD Green series that is intended for backup.
    Graphics. It is not a major player I think for your tasks, but OpenGl can speed up rendering in Photoshop and Illustrator.
    When exporting AI with layers to PSD it will always show "out of memory" unless you turn off anti aliasing.
    and the most important thing reinstall Windows after some time... It will work faster.

Maybe you are looking for

  • Where is the song I purchased on my Ipod Touch?

    I downloaded a song on my iPod Touch, but it isn't showing up anywhere. I saw that it had downloaded because it showed 1 item was downloaded in the more tab. But I didn't listen to it right away, went to a game, then shut off the iPod. When I turned

  • Zen V Plus Line-In Record

    I'm recording various shows on TV and Satellite radio by line-in audio recording. Can anyone tell me if the V Plus can charge and record line-in at the same time? If not, how long can it line-in record before the player shuts down? I have the Nano Pl

  • Monitor SQL in real-time?

    Greetings, everyone. I am new to SQL Developer and I am trying to find a way to monitor what SQL statements are executing in a real time fashion. Sorta like a SQL profiler. Thanks.

  • Coverting .pdf Image To Excel

    anyone know of a way to convert a pdf document (scanned in to pdf format) to excel?

  • URGENT!!!: REP-51002 ERROR   with local installation without network

    Hi, we have a problem with the Oracle Reports Services (10.1.2). We get an REP-51002-Error (Bindung an Reports Server nb-gta nicht möglich). We have a development environment where all works fine. For presentation purpose we installed the ReportsServ