Bundle Not Exporting Package

I have made a bundle in Crxde lite called MyRepositoryManager
package com.support.jcr;
import javax.jcr.Repository;
import javax.jcr.SimpleCredentials;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.apache.sling.api.resource.Resource;
import org.apache.jackrabbit.commons.JcrUtils;
@Component
@Service(value=MyRepositoryManager.class)
public class MyRepositoryManager{
    public Repository getRepository(String repositoryUrl){
         Repository repository = null;
        try{
            repository = JcrUtils.getRepository(repositoryUrl);
        } catch(Exception e){
            e.printStackTrace();
         return repository;
    public javax.jcr.Session startSession(Repository repository,String admin,String pass){
        javax.jcr.Session session = null;
        try{   
            session = repository.login( new SimpleCredentials(admin,pass.toCharArray()));
        } catch(Exception e){
            e.printStackTrace();
        return session;
    public void endSession(javax.jcr.Session session){
        try{
            session.save();
            session.logout();
        } catch(Exception e){
            e.printStackTrace();
And here is the bnd file for this bundle
Export-Package: com.support.jcr
Import-Package: *
#Private-Package:  
# Include-Resource:
Bundle-Name: MyRepositoryManager
Bundle-Description: Handles repository management
Bundle-SymbolicName: MyRepositoryManager
Bundle-Version: 1.0.0-SNAPSHOT
Bundle-Activator: com.support.jcr.Activator
Problem is that when I build this bundle and look at it in OSGi console, the exported packages show nothing (Exported Packages ---)
How can I make this class available to code in my other packages. and why is it not exporting?

Hi All,
Before answering your question I have few queries:-
1. Please share screen shot where you see export package show nothing.
2. What is your approach to access this class ?
3. You have created this class as a services and any service can be access in other class using
     @Reference MyRepositoryManager myRepositoryManager;
   OR in Jsp
    sling.getService("MyRepositoryManager");
Regards
Brijesh Yadav

Similar Messages

  • Error In BPC Export Package-version 7.5

    Hi Bpc Experts,
    We upgraded DEV BPC Version 7 to 7.5 netweaver version.
    We are facing an issue when using Export package to export file from BPC to BI application server.
    After running EXPORT Package a window appears with input field to enter File name and path,But i am not able to enter the file name in the Input field(Non editable).I used the below Advanced Script
    PROMPT(OUTFILE,%DESTINATIONFOLDER%,"Please enter an output path and file name",)
    PROMPT(SELECTINPUT,%SELECTION%,,"Select the members to filter","%DIMS%")
    TASK(ZBPC_EXPORT_TRANS,EXPORT_FILE_PATH,%DESTINATIONFOLDER%)
    TASK(ZBPC_EXPORT_TRANS,SELECTION,%SELECTION%)
    Process Chain:ZBPC_EXPORT_TRANS
    But my Quality and Production system Export functionality is allowing to enter the path and file name in version 7.
    Thanks
    Mahesh

    Hi Rich,Thanks for your reply.
    I tried with standard Process chain /CPMB/EXPORT_TD_TO_FILE, but still i am not able to enter path and file name to export to BI application server
    Can u send the list of modification to be done after upgradation of BPC 7 to 7.5
    Thanks
    Mahesh

  • Difference between IDOC Bundling and IDOC Packaging

    Hi,
    Can anybody please explain the difference between IDOC bundling and IDOC packaging?
    Thanks,
    Loveena.

    Hi,
    IDoc Bundling is the changing the occurance of IDoc.
    In a scenario If there is a necessitity for changing the Occurance of some segment of the IDOC u have to perform this steps
    1.Import the IDoc to XI.
    2.Export the IDoc(i.e XSD format) and save it to the local machine.
    3.Make changes to the IDoc structure by modifying the XSD file in the local machine.
    4.Save it as an XSD file Itself.
    5.Import the XSD file in the IR under the External Defination.
    6.Use this XSD in your Message Interface/Mapping which is same as IDoc structure but with some changes that u have made.
    Go Thru this Blog <a href="/people/michal.krawczyk2/blog/2005/12/04/xi-idoc-bundling--the-trick-with-the-occurance-change Bundling - Trick without BPM</a> BY Michal Krawczyk where the Occurance of the IDoc is changed to 1...Unbounded from 1...999999999 by using the XSD.
    IDoc Packing is collecting of IDoc
    <a href="/people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm of Multiple type IDOCs in BPM</a> BY Pooja
    Regards
    Santhosh
    Remember to set the thread to solved when you have received a solution
    [url=Use a Good Subject Line, One Question Per Posting - Award Points;  Use a Good Subject Line, One Question Per Posting - Award Points[/url]

  • Podcast not exporting chapters

    Hi all. I have a podcast episode here (~45 mins) and for some reason, it's not exporting chapter markers in AAC exports (through iTunes or to disk). It is based on a template project that I have used in the past (last time was ~May or so), and those worked fine.
    I just tried to re-export another podcast I had made previously, based on the same template project, and it exported exactly as expected. So there's something with this file, it would seem.
    The Console log shows this:
    [0x0-0x558558].com.apple.garageband[38040] An error occured while parsing the TeXML document.
    [0x0-0x558558].com.apple.garageband[38040] Line: 1, Position: 4865
    [0x0-0x558558].com.apple.garageband[38040] Description: An internal QuickTime error occured (6)
    GarageBand[38040] Audio engine overloaded, resetting
    Seems like GarageBand isn't generating the podcast XML properly for the conversion process? I looked in the .band bundle, but didn't see the file to examine it.
    Help?

    There was a '&' elusive and hiding behind some uppercase letters. I needed to borrow some blueblocker sunglasses and hunting gear to find it. Wiley little ampersand. Those things are tricky to catch.
    May I now say that I think that it's completely stupid that Apple doesn't filter those text strings, or at least notify in the help what the allowed characters are? About to submit a bug report.
    Thanks for the help.

  • Use wmi methods with powershell to export packages

    I'm looking for a way to export packages from a ConfigMgr 2012 ( NOT SP1 ) instance using wmi and powershell. I am aware of the wmi classes under the namespace 'root\sms\XYZ_Site' but I can't find any classes with an 'export' method. 
    ( Please don't tell me to load the SP1 module )
    Many thanks! 

    Hi,
    Have you figured this out?
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Custom DSC can't find exception class, error about export-packages

    I've got a DSC which has a method that can throw two custom exceptions. It all works, and the exceptions show up available for handling in a process in Workbench, but the issue here is that the server.log has this error:
    2013-05-13 16:59:35,353 WARN  [com.adobe.workflow.AWS] An exception has been thrown for which the class information has not been exported in the service's export-packages, it is essential for the clients of the service to have the class information via export-packages to handle the exception.
    Yet I have added the exceptions' package to the export packages. And I also made a DataTypes entry for each of the two exceptions as well.
    Does anyone have an idea how I can get rid of this warning?
    Thanks,
    Jack

    You continue to use slash instead of dot.
    You did not follow any of my suggestions and still awarded me dukes,
    so I feel I have to make a last attempt.
    Here is what I have:
    D:\try>dir /s
    Volume in drive D is New Volume
    Volume Serial Number is 3ECC-CB52
    Directory of D:\try
    11/05/2007  12:18 PM    <DIR>          .
    11/05/2007  12:18 PM    <DIR>          ..
    11/05/2007  12:19 PM    <DIR>          a
                   0 File(s)              0 bytes
    Directory of D:\try\a
    11/05/2007  12:19 PM    <DIR>          .
    11/05/2007  12:19 PM    <DIR>          ..
    11/05/2007  12:19 PM    <DIR>          b
    11/05/2007  12:17 PM               808 MyClass.class
                   1 File(s)            808 bytes
    Directory of D:\try\a\b
    11/05/2007  12:19 PM    <DIR>          .
    11/05/2007  12:19 PM    <DIR>          ..
    11/02/2007  01:56 PM                11 Messages.properties
                   1 File(s)             11 bytes
         Total Files Listed:
                   2 File(s)            819 bytes
                   8 Dir(s)  70,889,848,832 bytes free
    D:\try>java a.MyClass
    value
    D:\try>Here is the code for MyClass:
    package a;
    import java.util.*;
    public class MyClass
      public static void main( String[] args ) throws Exception
        ResourceBundle rb = ResourceBundle.getBundle( "a.b.Messages" );
        System.out.println( rb.getString( "key") );
    }Here is the contents of Messages.properties:
    key = value

  • Muse 2014 not exporting video

    I just updated a previous website and when I exported to html, the video did not export. It previews just file in preview page mode and preview site mode but will not export.
    ben

    Part of the problem solved. The actual video IS exporting. In order to see it, I found that you have to actually upload it to your server and go live with it. The preview MUSE gives you after packaging (exporting html) does not show the embedded video at all.

  • Which functions and features in Numbers are NOT exported correctly to Excel?

    I wish to know EXACTLY which functions I use in a Numbers sheet WILL FAIL to export correctly to an Excel or Neoffice spreadsheet.
    For instance, I created a Numbers spreadsheet using prolific use of the IFERROR function. However, when I EXPORT to XLS, all the cells that used the IFERROR function were replaced by the literal value of the cell. My IFERROR formulae were not EXPORTED as I had expected.
    I note that some formulae were converted correctly in my EXPORTED spreadsheet: eg MAX, MIN, AVERAGE.
    I understand that IFERROR was a function introduced recently to Excel, ie in the 2007 version. Consequently, I suspect that Numbers exports to a pre-2007 version of Excel. If so, which version?
    I have found this list that shows which functions are compatable amongst various versions of Excel:
    Excel Functions: Compatibility Reference (2010, 2007 & 2003). (n.d.). Retrieved from https://docs.google.com/spreadsheet/ccc?key=0AsHau4_IeCfwdG45c0VhcjBBUGNreVo2ZzN NRU1BT0E#gid=0
    This list shows that, for instance, IFERROR exisits inb both Excel 2007 and Numbers-09. So why is IFERROR not exported?
    Curmi, J. (n.d.). Summary of function in excel and numbers-09. Retrieved from http://curmi.com/blog/wp-content/uploads/2009/01/functions-in-excel-and-numbers- 09.pdf
    Some examples of my use of ISERROR in Numbers are as follows:
    =IFERROR(RANK(C47,$C47:$J47,1),"")
    =IFERROR(MEDIAN(C51:C58),"")
    =IFERROR($C32-C88+1,"")
    I use the above function to  carry out the calculation ONLY IF  a cell is non-blank and contains a number.
    More questions
    What are the rules that Numbers uses to convert to Excel?
    Is Numbers converting to the 2003 version of Excel? ... or an earlier version? ... which version?
    Why desn't Numbers advise me there were conversion errors or simplifications made?
    eg: "Cell A33 Function IFERROR was exported to the cell value for Excel"
    Is there a preference that I can select which version of Excel that Numbers will export to?
    In the meantime, I must abandon Numbers and use NeoOffice!

    Thanks,
    I applied your suggested ISERROR transformation to examples such as:
    =IFERROR(RANK(C47,$C47:$J47,1),"")
    =IFERROR(MEDIAN(C51:C58),"")
    =IFERROR($C32-C88+1,"")
    However, a caution for young players....
    Certainly, the ISERROR function exports to .xls. However, it behaves differently in NeoOffice.
    Items 1 and 2 function identically in the case of say, ranking a row in which some cells are blanks.
    Item 3, when translated using ISERROR to =IF(ISERROR(C32-C88+1),"", C32-C88+1), results in "" (ie error is raised) in Numbers but yields figure 0 in NeoOffice when there is a blank in either of the cells.
    I  recall from programming school in the mid-1970s that using GOTO statements and On Error branch statements were not admissible as routine programming steps. In fact, we received an automatic fail grade if we used a GOTO or GOTO like construction. So, I have found a more programmatically elegant way to solve my problem: eg:
    =IF(C88="","",C32-C88+1)
    Curiously, earlier I found/suspect this does not work equivalently in Numbers and NeoOffice:
    =IF(ISBLANK(C88),"",C32-C88+1)
    When you try using ISBLANK you always get an intuitively unexpected result because ISBLANK ONLY gives TRUE when there is absolutely nothing in a cell. A Formula reference in the cell, even if the function result yields "", gives FALSE... because, according to the definition of ISBLANK the cell contains a formula.
    As I tell my students, ALWAYS lookup the HELP on any function you use. ALWAYS test the function to see how it performs!.... and lesson 3: Always test your spreadsheet on different systems.... then hope!
    FYI:
    Here's a  link to my Spreadsheet (Neoffice .xls) and a video explaining its use.
    Team Contribution: Introduction (Prototype). (2013). Retrieved from http://www.youtube.com/watch?v=bj87FGLoplk&feature=youtube_gdata_player 
    I don't guaranteee this link for ever! ... and I continue to "tweak" it
    https://www.dropbox.com/s/1jz7gzksejnbqo1/Team%20Contribution.xls

  • I've been using Ringtone Maker to add ringtones to my iPhone. The app is now telling me my music I bought from the iTunes store is not exportable. I downloaded a new app called Ringer and it says my song "has no audio tracks". What am I doing wrong?

    I've been using Ringtone Maker to add ringtones to my iPhone. The app is now telling me my music I bought from the iTunes store is not exportable. I downloaded a new app called Ringer and it says my song "has no audio tracks". Wha am I doing wrong??

    never mind.  i think it just makes you review the information -- it looks like you have to click through everything.

  • When I tried to Mail Merge for Data is is not exporting any data.

    HI,
    EBS-12.1.3
    DB-11gR1
    OS - RHEL 5.6
    [With my Login User and SysAdmin Login User] When I enter into to the "People -> Enter and Maintain" Form and then I press the "Export Button", there is error Alert
    Function is not available to this responsibility. Change Responsibilities or Connect to the System Administrator
    I Added the Function "HR ADI Seeded Integrator Form Functions" into the "AE HRMS Manager" Responsiblity. It is also working and Export Data icon is enable.
    Problem:
    But Problem is when I tried to Mail Merge for Data is is not exporting any data.
    ====================================================================
    Steps
    1.Move to the "People -> Recruirment" and then "Request Recruitment Letter" .
    2. Enter the New Request. as
    Letter Name "App. Letter Contract Site",
    Automatic or Manual = Manual.
    Select the Name from the LOVs for the Request for Detail Block.
    3. Press the "Export Data" icon.
    4. Integrator Page Appear with my Custom Integrator Name as "Appointment Letter - Contact Site".
    5. Select the "Word 2003" from the View List. and Reporting is Checked.
    6. Review the Folowing Enteries as:
    Integrator Appointment Letter - Contact Site
    Viewer Word 2003
    Reporting Yes
    Layout App. Letter Contract Site
    Content XXHR_MBE_APP_LET_CONT_SITE_V
    Session Date 2011/08/02
    Mapping XXHR_MBE_APP_LET_CONT_SITE_V Mapping
    7. Press "Create Document" Button.
    8. It will open the Excel 2003 and then Word 2003. But no data down download from the Form.
    9. It open the Mail Merge Letter but no Data is Display.
    ===========================================================
    Note:
    a. I am following the Steps from the Link:"http://apps2fusion.com/at/38-ss/351-generate-recruitment-letters-web-adi".
    b. From the "Desktop Integrator Manager", "Oracle Web ADI", "HRMS Web ADI", it is working fine and Dowload the Data.
    ===========================================================
    Thanks
    Vishwa

    Please try the solution in ("Function not available to this responsibility" Error While Cliclking On Forms Personalisation [ID 1263970.1]) and see if it helps.
    Thanks,
    Hussein

  • Error trying to run SSIS Package via SQL Server Agent: DTExec: Could not set \Package.Variables[User::VarObjectDataSet].Properties[Value] value to System.Object

    Situation:
    SSIS Package designed in SQL Server 2012 - SQL Server Data Tools
    Windows 7 - 64 bit.
    The package (32 bit) extracts data from a SQL Server db to an Excel Output file, via an OLE DB connection.
    It uses 3 package variables:
    *) SQLCommand (String) to specify the SQL Statement to be executed by the package
    Property path: \Package.Variables[User::ExcelOutputFile].Properties[Value]
    Value: f:\Output Data.xls
    *) EXCELOutputFIle (String) to specify path and filename of the Excel output file
    Property path: \Package.Variables[User::SQLCommand].Properties[Value]
    Value: select * from CartOrder
    *) VarObjectDataSet (Object) to hold the data returned by SQL Server)
    Property path: \Package.Variables[User::VarObjectDataSet].Properties[Value]
    Value: System.Object
    It consists out of 2 components:
    *) Execute SQL Task: executes the SQL Statement passed on via a package variable. The resultng rows are stored in the package variable VarObjectDataSet
    *) Script Task: creates the physical output file and iterates VarObjectDataSet to populate the Excel file.
    Outcome and issue:The package runs perfectly fine both in SQL Server Data Tools itself and in DTEXECUI.
    However, whenever I run it via SQL Server Agent (with 32 bit runtime option set), it returns the errror message below.
    This package contains 3 package variables but the error stating that a package variable can not be set, pops up for the VarObjectDataSet only.  This makes me wonder if it is uberhaupt possible to set the value of a package variable
    of type Object.
    Can anybody help me on this please ?
    Message
    Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 32-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  6:40:20 PM  DTExec: Could
    not set \Package.Variables[User::VarObjectDataSet].Properties[Value] value to System.Object.  Started:  6:40:20 PM  Finished: 6:40:21 PM  Elapsed:  0.281 seconds.  The package execution failed.  The step failed.
    Thank you very much in advance
    Jurgen

    Hi Visakh,
    thank you for your reply.
    So, judging by your reply, not all package variables used inside a package need to be set a value for when run in DTEXEC ?
    I already tried that but my package ended up in error (something to do with "... invocation ...." and that error is anything but clearly documented. Judging by the error message itself, it looks like it could be just about anything. that is why I asked my
    first question about the object type package variable.
    Now, I will remove it from the 'set values' list and try another go cracking the unclear error-message " ... invocation ...". Does an error message about " ... invocation ..." ring any bells, now that we are talking about it here ?
    Thx in advance
    Jurgen
    Yes exactly
    You need to set values only forthem which needs to be controlled from outside the package
    Any variable which gets its value through expression set inside package or through a query inside execute sql task/script task can be ignored from DTExec
    Ok I've seen the invocation error mostly inside script task. This may be because some error inside script written in script task. If it appeared after you removed the variable then it may because some reference of variable existing within script task.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Data is not exported by the FD : GUI_DOWNLOAD in background.

    Hi all,
    Data is not Exported by the program scheduled in background by the FD "GUI_DOWNLOAD"
    its only exporting into the excel sheet and notepad in foreground.
    Plase me out how should I follow the process.
    Thanks & Regards,
    Rajeev

    You can write data to Application server in background. For path of file on Application server see TCode AL11
    e.g.
    file = '/tmp'.  "Path
    concatenate file '/itab.txt' into file.
    open dataset file for output in text mode.
    if SY-SUBRC = 0.
      write : /  'File opened on application server' .
    else.
      write : /  'Unable to open file on application server'.
    endif.
      loop at itab.
        transfer itab to file.
      endloop.
      if SY-SUBRC = 0.
        write : /  'Data transfer to file on application server complete.' .
      else.
        write : /  'Unable to transfer data to file on application server.'.
      endif.
      close dataset file.
      if SY-SUBRC = 0.
        write : /  'File closed on application server' .
      else.
        write : /  'Unable to close file on application server'.
      endif.

  • Table of Contents bookmarks not exporting to PDF (CS5)

    I have a 200 page book made up of 15 documents.  I've created a table of contents based on paragraph styles and the TOC generates and formats correctly.  When I create the TOC, the Create PDF Bookmarks box is checked.  When I export the whole book I've tried it with Create Tagged PDF checked and unchecked.
    After I export to PDF from the Book palette, the TOC items are links (at least they give me the pointer-hand icon) but they don't go anywhere.  The only one that does is the one in the same document as the TOC.  (I have tried the TOC both within a chapter and also in it's own document with no other links in it).  The behavior is the same in the Bookmarks pane - all are shown but only one works.  I've looked at several of the bookmarks' Properties > Actions.  It says its "Going to a page in another document" > (document-name-of-the-correct-chapter-but-with-pdf-instead-of-indd.pdf) > Page 1 (this is correct) > Zoom level: actual size.
    This isn't right - it's pointing to an imaginary pdf that doesn't exist.  It should be pointing to page X in the current document.
    Here's what I've tried:
    * restarting InDesign
    * restarting my machine
    * deleting the TOC and regenerating it
    * generating the book with all documents open or all documents closed
    * moving the TOC to its own document
    * probably some other things I've forgotten in the struggle
    All of the links and references in the individual documents are good.
    I've looked around these forums and this seems to be an ongoing and unsolved issue for other folks using older versions.  This is the closest I came to finding an answer but ended up with an Adobe employee logging it as a bug in 2009.  Bookmarks not exporting from InDesign to PDF in CS4                     By (c_goates)
    So here's hoping there is some new information.  I've been trying to get this to work for far too long and don't relish drawing bookmark boxes around all 55 of my text links.
    Specs: Max OS 10.6.6, CS5 (Version 7.0)
    Sorry this is so long, but details help, usually.  Thanks in advance for any advice. 

    There are some known problems with bookmarks and CS5 as well. As far as I know, the 7.0.3 update won't fix them, but it does solve some other problems, so you should install it.

  • Page headers are not exported to excel files - Is there a workaround?

    I use 2008, SP3.
    I am experiencing a problem with exporting to Excel(.xls): the page headers, but the very first, are not exported.
    The report page headers consist of weekdays and the corresponding dates, meanning they are different on each page.
    The report looks OK in pdf and doc formats.
    Is this a known problem or limitation?
    Is there is a way to controll the export to Excel to correct this problem?
    Thanks and ragards
    Israel M Brill, Analyst

    hi,
    Are you exporting from Crystal Report Designer or InfoView?
    If you are exporting from CR Designer, follow the below steps.
    - Click Export button
    - Microsoft Excel (97-2003) , OK
    - 'Excel Format Options' dialog box appears
    - Export Page Headers and Page Footers -> On Each Page, OK
    Regards,
    Vamsee

  • Page headers are not exported to excel files - can this be fixed in 2008SP3

    I use 2008, SP3.
    I am experiencing a problem with exporting to Excel(.xls): the page headers, but the very first, are not exported.
    The report page headers consist of weekdays and the corresponding dates, meanning they are different on each page.
    The report looks OK in pdf and doc formats.
    Is this a known problem or limitation?
    Is there is a way to controll the export to Excel to correct this problem?
    Thanks and ragards
    Israel M Brill, Analyst

    Note that this is the .NET - SAP Crystal Reports forum;
    Is this an issue in a .NET app?
    Does the report export as expected from the CR 2008 designer? If not, close this thread and post a new one in the [SAP Crystal Reports Design|SAP Crystal Reports, version for Visual Studio; forum.
    What version of .NET?
    Web or Win app?
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Maybe you are looking for

  • Why does air display no longer work from IMac, with mavericks to apple tv???

    Ever since last two updates of Mavericks, I have not been able to broadcast to apple tv as extended or mirroring desktop. It says it is avalable, and does nothing but a black screen on apple tv, and does not even come up as a desktop in display prefr

  • Updating JOptionPane message dynamically

    I need to have a option pane where the message gets updated dynamically, something like "Time remaining n sec" where n decreases by 1 every sec. I am using JOptionPane.setMessage to do this, but sometimes (and it's easy to reproduce), the click on th

  • SG300-28 How update boot from file rfb - version 1.3.5.06

    I download to my switch SG300-28 new firmware version 1.3.5.58 I package zip i found two file: sx300_fw-13558.ros   - this is the firmware sx300_boot-13506.rfb  this is the boot code I upgrade firmware by WEBGUI swicth. ADMINISTRATION>FILE MANAGEMENT

  • Recover time machine old backups

    I just pluged in my external hard drive and descovered that my old backup was deleted... i went to settings to learn for the first time that time machine deletes old backups when the drive is full... is there any way to recover those files? There was

  • Can I use a US spec iMac in the UK?

    Hi everyone, this is my first post here so please forgive me if I sound ignorant. I will be vacationing in the US during the summer and am tempted to purchase an iMac while I am there. The reason is quite simple, price. In the US a basic iMac would c