File Adapter not working

OK.....
I've PM server on linux machine...I've deployed FileAdapter connector and restarted server...
I've deployed ComplexStructure tutorial but in BPEL Console I've this error for ComplexStructure Process:
Exception Name:
Error while creating activation job
Exception Description:
An error occurred while attempting to instantiate the activation agent class "oracle.tip.adapter.fw.agent.jca.JCAActivationAgent". The
exception reported was: "javax/resource/spi/BootstrapContext".
Where is my error?
Thank
Andrea

Hi Andrea,
This exception is occurring due to the fact that the J2EE Java Connector Architecture JAR file connector.jar in the Application Server CLASSPATH is of version 1.0.
Our JCAActivationAgent however needs version 1.5 of this JAR file (released with J2EE 1.4) since it uses the new JCA 1.5 inbound classes (such as BootstrapContext, ActivationSpec etc).
Please try to copy
   {orabpel-home}/lib/connector15.jar
to
   {j2ee-home}/lib/connector.jar
and try again. When we ship the product, this will not be necessary since the OC4J version then will support JCA 1.5.
-Bo

Similar Messages

  • Archive file with errors in sender file adapter not working! please help!

    Hi Experts,
       I have a file to RFC scenario. the input is a XML file. I have setup the flag in sender file adapter channel for archiving the input files with errors. But it is not working.
    For testing I have used an invalid xML file for example without the main XML tag. I have also tested with a MSWORD file saved with.xml extension. But in both the cases the files are not getting archived.
    My archive location permissions are fine and in fact normal archive operation is happening. That is, if I select the processing mode as "Archive" and gave the Archive directory then files are getting archived. The problem is only with the "Archive faulty source files" option.
    What am I missing? DO I need to do some more configurations?
    What are the prerequisites if any for this option?
    How to test this?
    Please help me! I will be greatfull to you all!
    Thanks & Regards
    Gopal

    and go thru this links
    Creating a Single Archive of the Version Files
    http://help.sap.com/saphelp_nw04/helpdata/en/79/1e7aecc315004fb4966d1548447675/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/31/8aed3ea86d3d67e10000000a114084/frameset.htm
    Note: reward points if solution found helpfull
    Regards
    Chandrakanth.k

  • KeyFieldValue in Sender File Adapter Not Working

    Hi,
    I have a flat file like this...
    1Field1Field2Filed3.....
    2Field1Field2Field3....
    1Field1Field2Filed3.....
    2Field1Field2Field3.....
    1Field1Field2Filed3.....
    2Field1Field2Field3....
    My requirement is to pick only lines starting with '1'.
    I have configured the Sender File Adapter like this,
    Recordset Structure : SOURCE,*
    Key Field Name: KF
    Key Field Type : String(Case-Sensitive)
    File Content Conversion:
    SOURCE.fieldFixedLengths  1,5,5,5....
    SOURCE.fieldNames           KF,FIELD1,FIELD2....
    SOURCE.keyFieldValue      1
    After all this, still it picks up all the recored instead of records starting with '1'. Can any one solve this?
    Regards,
    Sreedhar

    If you feel module processor is bit tough you can use XSLT Mapping which is simple in sloving ur problem.
    Check this blog to do a sample example using module processor.
    /people/sap.user72/blog/2005/07/04/read-excel-instead-of-xml-through-fileadapter
    To implement the above check this link....
    https://websmp201.sap-ag.de/~sapdownload/011000358700003237612005E/HowToCreateAdapterModules.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e21106cc-0c01-0010-db95-dbfc0ffd83b3
    http://help.sap.com/saphelp_nw04/helpdata/en/8b/895e407aa4c44ce10000000a1550b0/content.htm
    /people/gowtham.kuchipudi2/blog/2006/01/13/stop-creation-of-an-empty-file-from-file-adapter-using-module

  • File Adapter Not Working Proper

    Hi XI Experts,
    Here, we configured Idoc to File Scenario using File Adapter. We are getting errors in records while receiving the Text File.
    The error we r getting in those record of the file where some data is missing. After which whole records get curropted. ForEx:
    HeaderLine
    Store    ArticleCode    ArtDescription    MerCat    Amount   TaxCode
    3022    130000000      Shirt                  FMCG     200           k5
    3022    130000001       Short                FMCG     150           k5
    As above line items have allthe fields filled so uptill this text file we r getting is error free.
    3022     130000003      shirt 
    3022     130000004      masalas         fmcg         50             k1
    As in above line item few of fields are missing and whole recordsafter this record get corrupted. And weget following corrupted data
    3022     130000003      shirt         50        fmcg
    3022     130000004      masalas         fmcg         50             k1
    Can something be done with FCC ????
    As this is effecting the business Please reply ASAP.

    Hi,
    Also check ur mapping program.It is Idoc to file scenario rite...then see whether ur target structure is getting mapped from the idoc and check ur mapping once and see whether u r getting all the fields in the target xml.Check ur xml payload of ur file in RWB.
    And that too no need of giving  PA01.fieldNames in the content conversion parameters.
    Directly u can give:
    recordset structure name.addHeaderLine         
    recordset structure name.fieldSeparator  
    recordset structure name.endSeparator      
    Hope u got my point.
    Regards,
    Prasanthi.

  • .jar file is not working properly :developed in NETBEANS

    Hi Gurus,
    i am using NETBEANS IDE 7.2.
    i am developing a project that interacts with databases 10g and COM ports of machine , these all processes are performed by .bat file which i am trying to run from jFramform , code works perfectly .bat file is also called perfectly when i run the project using F6 from the NETBEANS, for testing i placed some dialogue boxes on the form to test it ,
    but when i run executable .jar  file , form run successfully and dialogue box works perfectly but .bat file is not called by executable .jar file.
    this is how i call the .bat file...
      String filePath = "D:/pms/Libraries/portlib.bat";  
            try { 
              Process p = Runtime.getRuntime().exec(filePath); 
            } catch (Exception e) { 
                e.printStackTrace(); 
    and below is the contents of portlib.bat file
    java -jar "D:\SMS\SMS\dist\SMS.jar" 
    you must probably ask why i am calling a .jar file using .bat file .
    reason is that this .jar project sends message using GSM mobile , System.exit(); is compulsory to complete a job and then do the next one ,
    if i use the same file to execute this job it makes exit to entire the application (hope you can understand my logic).
    that's why i use extra .jar file in .bat file , when single job is completed .bat exits itself and new command is given.
    Problem is that code is working perfectly in NETBEANS when i run the project but when i run .jar then .bat file is not working  ,
    thanks.

    Thanks Sir ,
    You need to first test an example that works like the one in the article.
    There are plenty of other examples on the web - find one you like:
    http://javapapers.com/core-java/os-processes-using-java-processbuilder/
    I tried this one.
      try {
                ProcessBuilder dirProcess = new ProcessBuilder("D:/SMS/SMS/Send_message.bat");
                 File commands = new File("D:/SMS/SMS/Send_message.bat");
                 File dirOut = new File("C:/process/out.txt");
                 File dirErr = new File("C:/process/err.txt");
               dirProcess.redirectInput(commands);
                 dirProcess.redirectOutput(dirOut);
               dirProcess.redirectError(dirErr);
                 dirProcess.start();
            } catch (IOException ex) {
                Logger.getLogger(mainform.class.getName()).log(Level.SEVERE, null, ex);
    as instructed in the article i compiled  both the projects at same version or sources and libraries which is 1.7
    here is my version details
    C:\>javac -version
    javac 1.7.0_07
    C:\>java -version
    java version "1.7.0_07"
    Java(TM) SE Runtime Environment (build 1.7.0_07-b11)
    Java HotSpot(TM) Client VM (build 23.3-b01, mixed mode, sharing)
    inside the NETBEANS IDE c:\process\err.txt  remains empty and code works perfectly , but when I run executable .jar file( by double clicking on that file in dist directry) then c:\process\err.txt becomes full with this error text and there is no response from calling D:\SMS\SMS\send_message.bat
    here is the error text
    java.lang.UnsupportedClassVersionError: sms/SMSMAIN (Unsupported major.minor version 51.0)
      at java.lang.ClassLoader.defineClass0(Native Method)
      at java.lang.ClassLoader.defineClass(Unknown Source)
      at java.security.SecureClassLoader.defineClass(Unknown Source)
      at java.net.URLClassLoader.defineClass(Unknown Source)
      at java.net.URLClassLoader.access$100(Unknown Source)
      at java.net.URLClassLoader$1.run(Unknown Source)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.net.URLClassLoader.findClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Exception in thread "main"
    here is /SMS/SMS
    unknown source ?

  • File- Export not working after upgrade from 11i to R12

    Hi,
    File -> Export not working after upgrade from 11i to R12.1.3 in few systems. Can you please let me know what could be the issue.
    If export record count more than 200 it is working fine in all the systems and if change the profile option "Export MIME type” value to ‘text/tab-separated-values’ from application/excel also it is wokring.
    Thanks and Regards,
    Jagadeesha

    Enabled the FRD. Below are few last lines. Can you please let me know what i can in this log file contents.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing GET_ITEM_PROPERTY/FIELD_CHARACTERISTIC Built-in:
    In Argument 0 - Type: Integer Value: 196613
    In Argument 1 - Type: Number Value: 54
    Out Argument 0 - Type: String Value: 12
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Entering app_menu.set_prop.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing FIND_MENU_ITEM Built-in:
    In Argument 0 - Type: String Value: FILE.EXPORT
    Out Argument 0 - Type: Integer Value: 19
    Executing GET_MENU_ITEM_PROPERTY Built-in:
    In Argument 0 - Type: Integer Value: 19
    In Argument 1 - Type: Number Value: 79
    Out Argument 0 - Type: String Value: TRUE
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_menu.set_prop.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_synch.menu_toolbar_sync. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.APP_CUSTOM_MODE
    Out Argument 0 - Type: String Value: NORMAL
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.APP_CUSTOM_MODE
    Out Argument 0 - Type: String Value: NORMAL
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: NULL
    In Argument 1 - Type: String Value: GLOBAL.OUT
    Executing USER_EXIT Built-in:
    In Argument 0 - Type: String Value: FND GETPROFILE NAME="UPK_RECORDING_ENABLED" FIELD="GLOBAL.OUT" N
    FNDCPVCM, 11, Built-In, Entry, 316509814, USER_EXIT
    FNDCPVCM, 11, Built-In, Exit, 316509814, USER_EXIT
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: GLOBAL.OUT
    Out Argument 0 - Type: String Value: N
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_form
    Out Argument 0 - Type: String Value: FNDCPVCM
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_block
    Out Argument 0 - Type: String Value: MASTER
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_form
    Out Argument 0 - Type: String Value: FNDCPVCM
    Executing NAME_IN Built-in:
    In Argument 0 - Type: String Value: system.current_block
    Out Argument 0 - Type: String Value: MASTER
    Executing GET_APPLICATION_PROPERTY Built-in:
    In Argument 0 - Type: Number Value: 75
    Out Argument 0 - Type: String Value: IHR40P
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed call_all_libraries. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    Executing COPY Built-in:
    In Argument 0 - Type: String Value: Completed app_standard.event. Event is WHEN-NEW-ITEM-INSTANCE.
    In Argument 1 - Type: String Value: global.frd_debug
    FNDCPVCM, 10, Prog Unit, Exit, 316509814, /FNDCPVCM-3/P45_30_DEC_201223_28_33
    FNDCPVCM, 9, Trigger, Exit, 316509814, WHEN-NEW-ITEM-INSTANCE
    FNDCPVCM, 8, Prog Unit, Exit, 316509814, /DMU-4/P8_30_DEC_201223_23_12
    # 15 - FNDCPVCM:MASTER.USER_CONCURRENT_QUEUE_NAME.1359399301498413820
    WINDOW FNDCPVCM PROGRESS_INDICATOR RESIZE 4198 1500 3
    # 16 - FNDCPVCM:MASTER.USER_CONCURRENT_QUEUE_NAME.1359399301512613925
    WINDOW FNDCPVCM PROGRESS_INDICATOR RESIZE 4198 1500 3

  • Mini-Displayport to DVI adapter not working, but Mini-Displayport to VGA and Thunderbolt work fine

    Mini-Displayport to DVI adapter not working, but Mini-Displayport to VGA and Thunderbolt work fine.
    This is a brand new MacBook Pro (15-inch, mid-2012) just received.  I suspect that this is a hardware problem as:
    The mini-displayport to DVI adapter and the external monitor that I am utilizing connect and operate just fine using my older MacBook Pro (mid-2010) with the same OS.
    The new MacBook Pro powers the external monitor with a mini-displayport to VGA adapater without issue.
    The new MacBook Pro powers an Apple Thunderbolt display without issue.
    Both MacBook Pro's are running OSX Lion 10.7.4.
    The only combination which does not work is the mini-displayport to DVI adapater used in conjunction with the brand new MacBook Pro (mid-2012).
    All adapters and components (mini-displayport adapters) are Apple retail adapter.
    I have tried several external monitors, including my Dell U2412m.
    When I connect the mini-displayport to DVI adapater to the new MacBook Pro (mid-2012), nothing happens. The external monitor reports "no signal" and attempts to go into sleep mode.  Using the "Detect displays" button has no effect, even when used multiple times.  Rebooting does not help, nor does resetting the SMC or PRAM.
    Any other suggestions before I take it to the Genius Bar?

    I turns out that the logic board of my MacBook Pro was faulty (despite being brand new).
    I took it to the Apple Store, presented the problem, and one of the Tech's came to the same conclusion that I had -- hardware failure.  Phone support was no help in the matter (and even told me that what I was trying to do wasn't a supported option, which is rediculous).  However, the Genius Bar did take care of the problem, and my MacBook Pro was back to me with a replaced logic board within a few days.
    Hope that htis helps.

  • G5 dvi to vga adapter not working

    DVI to VGA adapter not working with my G5 Dual 2.3 GHz Power PC. I am trying to use a VGA Monitor but can not get a signal. I also am using a Dell with a DVI Input and that works fine using a DVI Cable from my G5 to the Dell u2410.

    Bad adapter?
    The G5 ports are DVI-I. Any good DVI-I to VGA adapter should be fine.

  • StarTech Adapter not working with Dell Inspiron 15, model 3521

    Side Note: I wrote a reply to a thread that was from 2013. I do apologize because the link was sent to me by my bf and I did not realize how old it was. Since my reply has to be approved I can't delete it.
    Current Issue: StarTech Adapter not working with Dell Inspiron 15 model 3521 
    I bought my Dell laptop last year and at first I did not realize that it had only one audio jack (combo, as the specifications manual says), I only noticed when I was trying to plug in my Ozone Rage ST headset.
    I searched online threads and found out that I needed an adapter and most people mentioned Headset Buddy. I couldn't find any adapters for sale in my country (or employees didn't really know what I was talking about) and since Headset Buddy is a bit expensive, I decided to try StarTech Headset adapter for headsets with separate headphone/microphone plugs - 3.5mm 4 position to 2x 3 position 3.5mm M/F www.amazon.com/.../ref=cm_cr_pr_product_top.
    It arrived today and let me tell you that I can't make it work. I can hear everything but I can't get the external mic to work or even be detected. I have always used my headset (mostly for gaming) and I prefer to use my external mic rather than the internal one. First I connected my headphone and mic jacks to the adapter and only after that did I connect it to the laptop combo jack. I also tried vice-versa. It didn't work, regardless of the order. I even tried with a different headset and it still didn't work. What else can I do?
    I have also found a thread on Dell forums saying that Headset Buddy doesn't even work on Dell Inspiron 15, model 3521. So since it doesn't work and I'm assuming StarTech doesn't, either, what am I to do/buy?! I am getting extremely frustrated and I'm very disappointed with Dell because the brand should have included with the laptop a proper working adapter for these situations and not make its customers buy an extra accessory to make whatever working gear they already had function. It just doesn't make sense to me! Either make the changes work properly or simply don't touch anything. I spent some of my savings on this laptop which, overall, is great but now I am being forced to spend more on an item to allow me to use my headset. I am running out of options here and even Dell can't seem to tell its customers with 100% certainty what really works for this specific model. 
    If I can't make the adapter work, I just hope I can return it, otherwise I'll end up with no refund and with a piece of equipment I have no other use for! 
    Any thoughts?

    Hi,
    Thanks for your reply.
    This is the first time I was forced to buy adapters such as these so I don't know if I'm doing something wrong or if there's anything else I can do to make it work. When I plug the adapter to my Dell, the laptop presents me with several options such as: headphones, headphone, speakers, skull candy headphones, etc (maybe some may have different names but since I see them in Portuguese, I'm not quite sure how they appear for someone who has the computer in English), I have picked different options and it still doesn't work, the only noticeable changes are sound quality related, I guess.

  • My hdmi adapter not working anymore, no physical damage. Solution?

    My hdmi adapter not working anymore, no physical damage. Solution?
    Strange is, that i used it several times, it worked fine. Then wothout any reason (like software updete, etc) it just stopped workung, no sync.
    I have not changed any parameters of my TV or Beamer.
    Hardware:
    Ipad 2, Apple Ipad HDMI Adapter,  Samsung P2770FH, Optoma HD 65.
    Thanks for any help.

    I've only used mine a couple of times without any problem, but due to the thinness of the iPad, care has to be taken in inserting the adapter.  Slightly wrong angle and it won't go it. 
    I had a laptop a few years ago where the USB connector failed. I had it replaced under the warantee,  The service man told me it was not an uncommom failure on a laptop due to people "torquing" the USB socket while inserting/removing USB items.  I have much the same feeling when inserting either the charger cord or my HDMI adapter.
    From your description, unless the HDMI adapter failed internally, it sounds like the socket is causing the problem.  A few days ago we watch our first movie from the iPad via my ATV2 and "Air Play".  Worked great so I don't plan on using the HDMI adapter much at all in the future.  Yes, it is a $99 solution, but it works for me.  Of course, I already had the ATV2.  I doubt if I would buy one just for this abiliity.  If nothing else, it seems like a trip to the Apple Genius bar is in order for maybe a replacement unit.
    However, with iOS 5 coming out with supposedly total mirroring, it might be worth thinking about getting an ATV2.

  • File- Print not working from SQL Developer 1.2.1 Build MAIN-32.13

    File->Print not working from SQL Developer 1.2.1 Build MAIN-32.13.
    I downloaded sqldeveloper-1.2.1.3213.ZIP and extract to a local directory. From the extracted directory I ran ..\sqldeveloper\sqldeveloper.exe from Windows XP sp2. The program itself seems to run just fine but File-Print doesn't do anything. In Help-About, Java Platform is reported as 1.5.0_06 and Oracle IDE is 1.2.1.3213. I'm not sure where to look for what is causing the problem.
    Thanks

    I hadn't tried CTRL-P before but I did today. On the first attempt, I saw a small jump in the memory usage for sqldeveloper.exe as reported in Windows Task Manager. Otherwise, there was no change. A second CTRL-P in the same session produced a further bump but subsequent attempts in the same session produced no further change in CPU or Memory Usage.
    Using Task Manager to monitor this further, I tried File->Print again and saw that sqldeveloper would periodically climb to 1 or 2 percent CPU and consume a little more memory. After a minute or so, though, all activity stops again.
    I do not get a print dialog box from SQLDeveloper using either CTRL-P or File->Print

  • File sharing not working 10.6

    file sharing not working on 10.6

    Rather more information is needed!
    With what are (not) sharing?
    Other computers on a network? (if so, are they all Macs or some Windows?)
    Other Users on the same Mac?

  • JCBC Adapter and File adapter not processing messages

    Hi
    I noticed that messages are being delivered to Adapter engine and the same are visible in Runtime Workbench with status "to be delivered". But, JDBC Adapter and File Adapter not processing these messages.
    Any idea where I can find the problem?
    I was able to re-deliver successfully via the JDBC Adapter using the MessagingSystem GUI using XISUPER user.
    Regards
    Chandu

    Hi,
    1.Status: TO_BE_DELIVERED
    Which means that the message was successfully delivered from Integration Server point of view and it states that the messages is initially handed over to the Messaging System.
    TO_BE_DELIVERED occurs while the message is put into the Messaging System receive queue.
    Regards
    Agasthuri Doss

  • Flash file, clicks not working in one environment

    Hi everyone,
    I have produced files using Captivate 2, that have output as .exe. These work perfectly across all of our sites, except one.
    The only issue with the site where the files are not working is:
    - Click box within the Flash file do not progress to the next page
    I have output with 'Playback control' and the users at the site in question are able to progress through along the Playback bar. However, I only placed this in for the purposes of testing the file. The final files need to not have the 'Playback control'.
    Does anyone know what I can do differently, to ensure the click boxes work on this site in question?
    I look forward to hearing from you.
    Ravi Sandhu

    Hi Ravi
    I'm not sure I fully understand your question. You seem to be saying a Click Box isn't working. But you say the "Click Box within the Flash File". I'm not sure if this means you have used Flash to create a button or something that you are trying to use with Captivate or if you simply mean that you have used Captivate to create a SWF, and inside that SWF the Click Box doesn't seem to work.
    What would be helpful is if we could see the project first hand. Are you able to post the .CP file for us to download and view? If that's not possible, what about posting a screen capture of the slide with the issue where we can see the entire timeline and all objects.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Microsoft teredo tunneling adapter not working

    i have been facing this problem from about 3 days and I am not able to connect my phone through cable to my laptop neither i am able to use bluetooth...so I checked for the prblm and its this teredo adapter not working which is related to the devices i think....I
    have followed every measure I could given by microsoft...I have tried uninstalling the teredo adapter but i couldn't...actually I clicked on the option dat was der as uninstall but it didn't....
    after uninstalling only we had to restart the computer but since the uninstallation was not successfull so it didn;t helped me..
    plz tell me some solution for this prblm!!!

    Hi,
    I am afraid that this forum is not a correct forum for this issue. Since this forum is discuss about Windows form development . I suggested you posting this thread to
    answer.microsoft.com-Windows OS
    Have a nice time!
    Regards,
    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.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • My iCloud ID is more than 21 characters

    When I registered for ICloud I used my Australian email address, which is 25 characters long, and it was accepted and shows as my ID. But if I want to log in to add a device, etc. I get told my ID exceeds 21 characters! What to do? If I shouldn't hav

  • Is there a way to retrieve original iPhone photo after it has been edited and saved?

    I cropped and saved a photo, not realizing the original would be deleted.  Is there any way to retrieve the original?

  • Which RAW convertor - Nikon or Aperture?

    I have just started playing with RAW, and have a question about work flow and RAW converters. I have Nikon Capture NX and Aperture, and see that some features are better in Capture and others in Aperture. I've been importing into Aperture, and if I s

  • 2010 Mac Mini freezing on USB activity

    A long-time Mac user client of mine bought a Mac Mini in August, It ran faultlessly until early in October when it began to freeze, most frequently when Time Machine was doing its thing with an external, USB-connected, hard drive. Ten days I took it

  • Want Entire Hotmail/Gmail Inboxes Available

    Had the Blackberry Storm2 for a day, and love it, but I've spent several unsuccessful hours trying to find a fix for this issue: I have Hotmail (use Outlook 2007) and Gmail accounts.  I've come to understand by reading various posts that I won't be a