Unable to preview rtf file in any format

Hi,
I have created a rtf file and I also have the xml for the same.I loaded xml file with rtf successfully.but when I am trying to see the preview then I am getting error. below is error:
ConfFile: C:\Users\sye59968\AppData\Local\Oracle\BIPublisher\TemplateBuilderforWord\config\xdo.cfg
Font Dir: C:\Program Files (x86)\Oracle\BI Publisher\BI Publisher Desktop\Template Builder for Word\fonts
Out File: C:\Users\sye59968\AppData\Local\Oracle\BIPublisher\TemplateBuilderforWord\tmp\tmp\151380515796672out.pdf
Run XDO Start
Template: C:\Users\sye59968\AppData\Local\Oracle\BIPublisher\TemplateBuilderforWord\tmp\tmp\tmp.rtf
RTFProcessor setLocale: en-us
FOProcessor setData: C:\Users\sye59968\Desktop\rex files\test.xml
FOProcessor setLocale: en-us
oracle.xdo.XDOException: java.lang.reflect.InvocationTargetException
  at oracle.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1207)
  at oracle.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:278)
  at oracle.xdo.template.FOProcessor.createFO(FOProcessor.java:2007)
  at oracle.xdo.template.FOProcessor.generate(FOProcessor.java:1142)
  at RTF2PDF2.runRTFto(RTF2PDF2.java:473)
  at RTF2PDF2.runXDO(RTF2PDF2.java:337)
  at RTF2PDF2.main(RTF2PDF2.java:230)
Caused by: java.lang.reflect.InvocationTargetException
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  at java.lang.reflect.Method.invoke(Unknown Source)
  at oracle.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:835)
  at oracle.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:572)
  at oracle.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:327)
  at oracle.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:187)
  at oracle.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1183)
  ... 6 more
Caused by: java.util.EmptyStackException
  at oracle.xdo11g.xslt.XSLProcessor.reportException(XSLProcessor.java:965)
  at oracle.xdo11g.xslt.XSLProcessor.newXSLStylesheet(XSLProcessor.java:725)
  at oracle.xdo11g.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:391)
  ... 15 more
Kindly suggest me how to resolve and root cause for the same

what is in rtf template ?
looks like you have some errors in rtf / incorrect using of smth
try to remove all in rtf and add code by code or field by field

Similar Messages

  • Has anyone run into the problem of downloading or opening an E.pdf file? I am running on 10.6.8 and am unable to open the file. Any suggestions?

    Has anyone run into the problem of downloading or opening an E.pdf file? I am running on 10.6.8 and am unable to open the file. Any suggestions?

    That crash appears to be casued by the Facebook plug-in.
    Create a new account (systempreferences -> accounts or Users & Groups on 10.7 and 10.8), make a new Library in that account, import some shots  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.

  • How can u insert and retrieve text files in any format using forms6i.

    how can u insert and retrieve text files in any format using forms6i.
    can u give me an example of an insert statement, let's assume the file is located in the a:drive.
    and retrieving the files, i would give the user a list of all the files that are in the database, the user would select one, but what command(or piece of code) would open the file in its apppropriate editor.
    e.g .pdf formatted file would open in acrobat.
    any help would be appreciated.
    Thanks
    Hussein Saiger

    the filereference class is for downloading and uploading files.
    if you want to load xml, use the xml class.
    and, if you want to write to an xml file and don't want to use server-side code, wait.

  • I am using the app pdf to word and every time I place a a pdf file into the app no text appears on the rtf file. Any suggestions?

    I am using the app pdf to word and every time I place a a pdf file into the app no text appears on the rtf file. Any suggestions?

    http://answers.microsoft.com/en-us/mac/forum/macword

  • Unable to upload RTF file in the long text

    Hi all,
    Could you please help me out in this issue. I am trying to upload the RTF file in the long text editor through this menu path Text-> Upload->RTF file.The RTF file is about only 56 KB memory size consists only texts.
    I could able to select the file and when i am executing , ABAP dump is showing as follows:
    Runtime error : TABLE_INVALID_INDEX
    abap program : SAPLSTXK
    Whether any SAP notes to be applied for this ?
    Please throw you ideas
    Regards,
    Suresh.

    try this.
    REPORT YCMTESTE LINE-SIZE 255 MESSAGE-ID TD.
    PARAMETERS:
    TEXTNAME LIKE THEAD-TDNAME DEFAULT 'SAPSCRIPT-DRUCKERTEST',
    FILE LIKE RLGRAP-FILENAME DEFAULT 'C:\temp\'.
    DATA: TEXTHEADER LIKE THEAD.
    DATA: TEXTLINES LIKE TLINE OCCURS 100 WITH HEADER LINE.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING NAME = TEXTNAME
    LANGUAGE = SY-LANGU
    OBJECT = 'TEXT'
    ID = 'ST '
    IMPORTING HEADER = TEXTHEADER
    TABLES LINES = TEXTLINES
    EXCEPTIONS OTHERS = 1.
    CHECK SY-SUBRC = 0.
    CALL FUNCTION 'EXPORT_TEXT'
    EXPORTING CODEPAGE = '1133'
    FILE = FILE
    FORMATWIDTH = 132
    FORMAT_TYPE = 'RTF'
    HEADER = TEXTHEADER
    SSHEET = ' '
    WITH_TAB = ' '
    TABLES ITF_LINES = TEXTLINES
    EXCEPTIONS DOWNLOAD_ERROR = 1
    FILE_OPEN_ERROR = 2
    FILE_WRITE_ERROR = 3.
    CASE SY-SUBRC.
    WHEN 0. MESSAGE S807 WITH FILE.
    WHEN 1. MESSAGE E815 WITH FILE.
    WHEN 2. MESSAGE E811 WITH FILE.
    WHEN 3. MESSAGE E814 WITH FILE.
    ENDCASE.
    Reference::[http://help.sap.com/saphelp_sm32/helpdata/en/d6/0db7f3494511d182b70000e829fbfe/content.htm]
    <removed_by_moderator>
    Edited by: Juan Reyes on May 16, 2011 12:05 PM

  • DW CS6 Unable to Find .cgi Files in any Local Site

    Hi
    I noticed the other day while searching across local websites for particular keywords in DW CS6 that the Find operation could not find them in any .cgi files in any local sites even though the keywords do exist in the .cgi files. I made sure that the Find had the entire sites as the target for searching. It seems odd that when DW CS6 can open .cgi files its Find cannot find keywords in them.
    Have other users experiened the same problem? Let me know.
    Best,
    Ead

    This could help: http://www.experts-exchange.com/Web_Development/Software/Macromedia_Dr eamweaver/A_4600-How-to-add-Perl-support-for-Adobe-Dreamweaver-CS5-and -the-cgi-extension-with-color-coding-and-syntax-highlighting.html

  • Unable to convert PDF files to any other file format using Acrobat XI Pro

    Acrobat XI Pro ver11.0.2
    Office 2013 Pro Plus
    Windows 8 Pro
    When I open a PDF file and try to export file to: Word, RTF, Excel, XML or PowerPoint, I woud receive the error below.
    Save As failed to process this document. No file was created.
    I recall in the past that I was able to export PDF to Excel & Word.  I simply tried the other file formats to see what happens.
    Unfortunately for me, this is happening to both of my machines.  Same version software except the other machine is Windows 7 Pro. I have admin level rights to both PCs.
    Not sure what to do at this point.
    As another test, I did the following.
    Created a document in Word, then saved as a PDF file.  Opened that PDF file to save as a Word doc and I received the error listed above.
    Any suggestions are appreciated.
    Thank you

    Thank you for the suggestions
    "Created a document in Word, then saved as a PDF file.  Opened that PDF file to save as a Word doc and I received the error listed above".
    I used another machine.  Created a Virtual Machine with Office 2013 and Acobat XI and I do not have issues with converting PDF to any of the available formats.  Its not the file I'm using, its the software itself that is the issue.
    Unfortunately, I did uninstall Office 2013 & Acrobat XI then reinstalled but I still have the problem so I can only guess once its broken in the registry, I will continue to have an issue.
    For now, I'm going to move Acrobat XI on the VM since I dont have time to reinstall Windows 8. 

  • Not able to export files in any format from PP 5.5 new installation.

    Hi all.
    Hoping someone can help. I just recentlyinstalled a full licensed education version of CS5.5. I was previously running a trial version. I have been trying to export a project, yet everytime I try and export, it crashes at around 2%. I have tried a number of different export formats and have adjusted the codecs to settings that I knew worked in the trial version. It just comes up with an "Unexplained error".
    it's driving me nuts as I have to get this file output.
    the file I am trying to output is 2 hours and 10 mins long, although I'm pretty sure the length would not cause an issue as it exported fine in the trial version.
    has anyone encountered something similar or can anyone please offer a solution or advice.
    thank you in advance.

    More information needed for someone to help... click these links and provided the requested information
    -http://forums.adobe.com/message/4200840
    -http://forums.adobe.com/thread/416679
    For CS5 and later, the easy way to insure that your video and your project match
    See 2nd post for picture of NEW ITEM process http://forums.adobe.com/thread/872666
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing
    For PC http://www.headbands.com/gspot/ or http://mediainfo.sourceforge.net/en
    For Mac http://mediainspector.massanti.com/
    http://blogs.adobe.com/premiereprotraining/2011/02/red-yellow-and-green-render-bars.html
    If you have a red line over the timeline after importing a video and before adding any effects... your project is wrong for your video... read above about codecs
    Once you know exactly what it is you are editing, report back with that information... and your project setting, and if there is a red line above the video in the timeline, which indicates a mismatch between video and project
    H.264 will NOT work inside an AVI wrapper http://forums.adobe.com/thread/854115
    Run as Administrator http://forums.adobe.com/thread/771202
    -Set to always "run as" via icon http://forums.adobe.com/thread/969395
    Odd Errors http://forums.adobe.com/thread/670174
    Long File Names or odd characters cause problems
    Read http://forums.adobe.com/thread/588273
    And #4 http://forums.adobe.com/thread/666558
    And This Message Thread http://forums.adobe.com/thread/665641

  • Unable to preview SWF file.

    Hi All,
    We have a dashboard created on webi report by using Live-Office connection. And i have exported the dashboard as SWF file and stored in my local desktop. When i am trying to open this SWF file, it is showing message "Initializing......" from very long time.
    I am facing this issue only if i selected option "Refresh before components are loaded" in Live-office data manager connections tab.
    If i un select this option, i am able open my dashboard with out any issue.
    Versions:
    Xcelsius: 14.0.2.641
    Live-Office: 14.0.2.682
    Regards,
    PRK.

    HI Niraj,
    Thanks for clear navigation steps. But unfortunately I am unable to find "Advanced" tab within the privacy tab.
    Please refer the screen shot attached.
    Regards,
    PRK.

  • Problems saving large animation file to any format

    I worked on an animation file that ended up being about 600 frames with a resolution of about 1024 * 768 pixels which had hudreds of layered vector and raster objects. This was in CS4 Photoshop on my school's computer as a final project for Graphic Arts class. The animation plays very slowly with a stuttering framerate while in photoshop and will not save to any file format. It saved fine up until around frame 500. I've tried saving it to gif and PSD, but each time it takes several hours to load the save screen and even longer for it to try to save the file only to have it fail to finish saving. I don't really know anything about keyframes or symbols, so I created each object as I needed it. I'm thinking this is a hardware issue more than Photoshop, but is there any other way to save this?

    Playing slowing could be lack of ram, but it could also be the incorrect frame rate(especially if someone before you had changed it). Make sure you are in timeline mode, click on the small icon in the upper right hand corner of the animation window, select Document settings(This option is only available in timeline mode) Now set the correct fps(frames per second) Normal video is 29.97, most web videos are 15fps but I have seen videos especially for screen grabs to be as low as 5fps. The smaller the number the slower the animation and the more jumpy it will be. On the other hand the higher the number the smoother the video and the larger the animation file will be. Its up to you to find the compromise.

  • Unable to burst to file when output format is Excel or MHTML

    What do i need to do in order to be able to burst to a mhtml or Excel file (using BIP in OBIEE 11.1.1.7.0)? I am able to burst to a PDF file, but when I change output type to mhtml (or xlsx/excel) i get the following error:
    Document generation failed
    [INSTANCE_ID=OSLAPP014.1367927089596] [OUTPUT_ID=1068][ReportProcessor]Error rendering documentoracle.xdo.servlet.scheduler.ProcessingException: [ReportProcessor]Error rendering document
    at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.renderReport(BurstingReportProcessor.java:445)
    at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.onMessage(BurstingReportProcessor.java:127)
    at oracle.xdo.enterpriseScheduler.util.CheckpointEn
    This is my bursting sql:
    select
    d.togslag_navn KEY,
    'test_rtf' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'mhtml' OUTPUT_FORMAT,
    'FILE' DEL_CHANNEL,
    'Test_output.mht' OUTPUT_NAME,
    'C:\BIP' PARAMETER1,
    'test.mht' PARAMETER2
    from
    dim_togslag d
    where togslag_kode = 'Pt'
    Any suggestions?

    Same here (using BIP 11.1.1.7.0)
    I have no issue with reports upgraded from BIP 10, but all the new ones have the same problem; only PDF works fine.

  • Unable to create PDF files from any application in any Acrobat version

    Hello, I am hoping someone can help me find a solution to a problem I am having creating PDF files.
    I have searched the Internet for a solution to this problem and can't find any information that helps me.
    I am running OSX 10.8.5 on a 2.5 GHZ Intel i5 Mac Laptop
    I cannot create PDFs from any program, Quark, Word, ect.
    When I try to print to the PDF printer, the printer pauses when it tries to open the Distiller. When I click resume, it pauses itself again.
    I have tried to save the document and create the PDF from within the distiller itself and get this error log:
    %%[ Error: undefined; OffendingCommand: MMXPR3 ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    I was originally using Acrobat 8, But I installed the trial version of Acrobat 11 and it has the same problem.
    The problem seems to be something to do with the distiller. I have a lot of Adobe software so I am trying to avoid a clean/re-install of Adobe software but will do it as a last resort.
    Thanks in advance for any suggestions.

    Hi,
    Besides pamma has suggested, here are similar issues, you can take a look at:
    http://unsolicitedbutoffered.blogspot.com/2014/01/quick-fix-volume-syntax-error-when.html
    http://crowdsupport.telstra.com.au/t5/T-Suite-Applications/There-was-an-error-opening-this-document-The-filename-directory/td-p/197425
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

  • Problem converting MPEG-1 Files to any format - Wanting to make a DVD

    I wish I could use Compressor, but it doesnt work! My home videos are all nice quality, MPEG-1 files, but everytime I try to convert them with compressor, it gives an error, like: "Cant encode audio from MPEG-1 SOuce... bla bla bla"... another one is "Error Opening File"...
    And I dont understand, ffmpegX works, so does MPEGStreamclip, but I still wanna give a try to Apple's Compression Software, and see if it can make a nice thing of my videos compression. Im trying to compress 40GB of home videos (like 6 hours of footage) and but them on a DVD or two... I am trying to convert all of them but I am kind of lost....
    That is why I wanted to give a try to compressor... but it doesnt open my MPEG-1 files.
    I converted my videos... it took me 2 days... all of them to MOV... if I compare each original MPEG-1 FILE... the MOV one has a little little less quality... but the space is 4 times smaller! ... Sorry, I forgot to say, I have exactly 32 horus of video... that means... with those MOV files I converted, I can put all of my videos in two DVDs...
    But what happened them? Well... I gotta a surprise... :/... with DVD Studio Pro.. when I add my MOV files... they become 2.5 times bigger!!! :o... so now it is not the two DVDs thing I was dreaming about...
    That is why I wish I could give it a try, with Compressor, but it doesnt seem to work...
    Please, is there someone that could really helep me out on this? I really appreciate any help....
    Thank you so much reading my post,
    Gabriel

    Hey Gabriel
    first and foremost, compressor has a real problem importing a muxed mpeg1 (video and audio joined as one file).
    what you first need to do with your files is take them into ffmpegx or mpegstreamclip (like you have already) and do what is called a transcode (that's the official, fancy name).
    you would take the file into the above mentioned apps, then transcode them to a Quicktime movie via export.
    i would recommend mpegstreamclip for this task, since you do have a lot of footage and this app does offer a batch option (which you can set it and forget it).
    once you have transcoded all your files to *.mov's, you can then take those files into compressor!
    as you may have noticed, i didnt sepcify a codec to output (like sorenscon 3 or DV for example) since i dont know how much of your storage you can allocate for this task (you will need quite a bit for 32 hours of video).
    this is really an easy task, but quite time consuming, so dont think it will go by fast!
    i would recommend a DV codec export from mpegstreamclip (via QT movie) with the highest possible quality and uncompressed audio.
    please advise
    Mikey m.

  • Unable to read multiple files in BODS

    hi all,
    i am unable to read multiple files [with same format of fields] using wild card characters in file name.
    scenario:
    i have 2 files: test1.xlsx & test2.xlsx
    in the excel file format, for the file name column, i have given test*.xlsx.
    and done the direct mapping to target column.
    but when i run the job i am getting below error.
    at com.acta.adapter.msexceladapter.MSExcelAdapterReadTable.ReadAllRows(MSExcelAdapterReadTable.java:1242)
    at com.acta.adapter.msexceladapter.MSExcelAdapterReadTable.readNext(MSExcelAdapterReadTable.java:1285)
    at com.acta.adapter.sdk.StreamListener.handleBrokerMessage(StreamListener.java:151)
    at com.acta.brokerclient.BrokerClient.handleMessage(BrokerClient.java:448)
    at com.acta.brokerclient.BrokerClient.access$100(BrokerClient.java:53)
    at com.acta.brokerclient.BrokerClient$MessageHandler.run(BrokerClient.java:1600)
    at com.acta.brokerclient.ThreadPool$PoolThread.run(ThreadPool.java:100)
    please let me know if there is any solution to this.
    regards,
    Swetha

    Hi,
    i just copied a xlsx file with 3 different names (Test_Data.xlsx, Test_1.xlsx, Test_2.xlsx) and tried with below options and it worked for me.
    Note: I tried on the same OS and DS 4.1 SP2(14.1.2.378)versions. In Linux File names are case sensitive.

  • Design View Not Displaying Pages with any Formatting

    I asked this question in another thread and somebody locked it.  The question is not answered.  My Design view is not displaying my files with any formatting.  I can view them in a browser, but not in Design view where I can see my work as I'm working.  While I can upload files to the remote server (host provider) the links got screwed up so files on the remote server don't show any formatting either.  Every link, thousands of links, are off by one word (folder) from where my site was residing on my hard drive.  When I try to make a change to the links manually then I can no longer view them with any formatting in my own browser either.
    On my local broswer on my PC the address line reads: http://localhost/folderNameIneedToDelete/filename.php
    On the live website (for my homepage) the address line reads http://websiteName.com/folderNameIneedToDelete/index.html
    (Here is the text from another thread that was improperly locked)
    I just added a remote server to my site so I could begin uploading files to my host provider.  When I saved the setup I saw a message popup about the cache changing.  Now when I try to view a file in Dreamweaver in Design View it doesn't recognize any of the external style sheets.  It displays with no formating.
    I can still view the pages in a browser and they look appropriate, just not in Design View where I can continue working on the site as I've been doing.
    How do I get Design View to display my pages properly again using the .css pages that apply to each page design?
    Thanks,
    Robert

    Murray, thanks for all your assistance.
    Before I edit thousands of links again I want to confirm I've interpreted all your info correctly.  If I setup everything as follows all my pages should work in Design View, browsers accessed from the "Preview/Debug in browser" icon in Dreamweaver and most importantly in a live environment at a host provider:
    Site Setup
    Site - Site Name:  anything including spaces
    Site - Local Site Folder:  C:\wamp\www\rootfoldername\
    Servers - Testing Server (Testing: checked)
    Server Name:  Testing Server
    Connect Using:  Local/Network
    Server Folder:  C:\wamp\www\rootfoldername\
    Web URL:  http://localhost/rootfoldername/
    Remote Server - Maintain synmchronization information:  checked
    Remote Server - Automatically upload files to server on Save:  unchecked
    Remote Server - Enable file check-out:  unchecked
    Testing Server - Server Model:  PHP My SQL
    Version Control - Access:  None
    Advanced Settings - Local Info - Default Images Folder:  C:\wamp\www\rootfoldername\_images\
    Advanced Settings - Local Info - Links relative to:  Document
    Advanced Settings - Local Info - Web URL:  http://sitename.com/
    Advanced Settings - Local Info - Case-sensitive links checking:  unchecked
    Advanced Settings - Local Info - Enable Cache:  checked
    Advanced Settings - Cloaking - Enable Cloaking:  checked
    Cloak files ending with:  unchecked
    Advanced Settings - Design Notes - Maintain Design Notes:  checked
    Advanced Settings - Design Notes - Enable Upload Design Notes for Sharing:  unchecked
    Advanced Settings - File View Columns - Name:  Built In - Show
    Advanced Settings - File View Columns - Notes:  Built In - Hide
    Advanced Settings - File View Columns - Size:  Built In - Show
    Advanced Settings - File View Columns - Type:  Built In - Show
    Advanced Settings - File View Columns - Modified:  Built In - Show
    Advanced Settings - File View Columns - Checked Out By:  Built In - Show
    Advanced Settings - Contribute - Enable Contribute compatibility:  unchecked
    Advanced Settings - Templates - Don't rewrite relative document paths: checked
    Advanced Settings - Spry - Asset Folder:  C:\wamp\www\rootfoldername\SpryAssets\
    Site File Structure - place files in the following folders:
    C:\wamp\www\rootfoldername
    webpages (html & php)
    _images  - [folder] (there are numerous image folders beginning with _images) containing .jpg and .png files
    _includes - [folder] containing attached .php files for the header, navigation and footer attached to every page
    _scripts - [folder] containing .js script files
    _styles - [folder] containing .css files (external style sheets)
    Connections - [folder] contains one php file (databasename.php)
    SpryAssets - [folder] containing system generated .js files .css files and .gif files
    ZendFramework - [folder] - I have no idea if the files in this folder are necesary and why it was placed here many months ago
    ** Links **
    Remove the leading / from every link in every file
    HTML5 shiv
    using an external link will always reflect the latest changes(Question) - If I link to this .js file externally at google instead of linking to a current copy in my _script folder could future changes to this external .js file cause future problems with the webpages that have this file attached?
    Remote Server
    Setup a remote server using the ftp address settings provided by the host provider.  (Question) Any settings defined for the future Remote Server (the first remote server was deleted when problems occured) will not cause any harm to anything involving the Testing Server such as viewing webpages in Design View, browsers accessed from the "Preview/Debug in browser" icon in Dreamweaver and will not cause any harm to any files eventually put to the host provider via that future Remote Server. Is that correct?
    Murray, thanks again for your help,
    Robert

Maybe you are looking for

  • Keep the user up to date

    I have a servlet that does a lot of processing within a for loop. i.e. it takes a lot of time for the server to finish its job. e.g. for(1000 objects)    //do work   //takes very long }what i would like to do is to keep the user up to date of the cur

  • 2 different brand USB external hard drives not mounting- Firewire ok

    Hi, first timer here so apologies in advance. i have to different brand external hard disks and they both show up fine with a firewire connection. the trouble is that i need to use the usb connection and neither show up. (shows up in system profiler

  • How do I backup a calendar

    How do I backup a calendar created in iPhoto and save to an external drive?

  • How do I transfer selected purchases to my Mac?

    I've downloaded several TV shows onto my Apple TV. Different shows, different episodes. How do I transfer at least one show to my Mac and ultimately to my iPhone? I don't have the hard drive space to transfer ALL of the shows - I just want ONE show t

  • UPDATE FAILURE ON Nokia 6288

    What should i do when i was updating my phone with "Nokia Software Updater" and it failed????? I think my phone software is crashed (. I tried to turn it on but it's no use.  I need your help guys :/// Solved! Go to Solution.