Strange shared library?

I suddenly have a "shared library" on my iTunes page with a name I don't recognize. No clue where it came from or how to make it go away. Help?

Hey Chris... I am running iTunes 10.7 and am having the same issue others have reported in this post (unknown libraries suddenly showing up). I checked the Preferences, but do not see an option to uncheck "look for shared libraries". Any suggestions?
Cas

Similar Messages

  • I just noticed that i have a shared library from a stranger.  This is very concerning and I am not sure why or how this happened.  Please help!

    I have just realized I have a shared library with a stranger and do not know how and why.  Help

    Welcome to the Apple community.
    What do you mean by a shared library, what is it you are looking at.

  • Strange Issue  with Logout | Shared Library in WebCenter

    For our customer, we have written a couple of task flows. We deployed this as an ADF Library JAR and included the JAR into our WebCenter Portal project (using IDE Connection -> File System Connection). We then placed the task flows onto a few portal pages and everything works fine.
    Now to avoid redeploying the portal application each time we make a small change to the task flows, we decided to go ahead with the shared library approach. We create a new “Generic application” in ADF, added the ADF Library JAR to this application and created a WAR deployment profile. We then deployed this application as a “shared library” to the Weblogic server.
    We then made the necessary entry to weblogic.xml of our custom WebCenter Portal application and deployed it.
    The task flows were getting consumed properly and all functionality was working fine. Just to test, I even deployed an updated version of the shared library and noticed that the portal application picked up the new task flow code. Everything seemed perfect 
    But now when I click on logout of the Portal application, I am getting a error dialog which indicates a server 404 error.
    To eliminate any issue with our custom code, I repeated the same steps with a very basic task flow application and a new WebCenter portal application.
    1.     I ran the application, and logged in as “weblogic” and saw the task flow was displaying correctly
    2.     Click on Logout. Got an error dialog (A connection to server has failed (Status=404))
    3.     Click on OK in the dialog. Then click on Logout again. Got another error dialog ("Because of inactivity your session has timed out" )
    4.     Click on OK in the dialog. Got logged out (saw the page without the secure content i.e. my task flow)
    Ideally, I would like to get logged out the first time I get logged out (without having to see those two dialogs). The logout was working perfectly fine before we switched to the Shared Library approach.
    Am I missing something? Any pointers?
    Note – My Jdev/ADF/WebCenter versions are 11.1.1.5.0

    Sometimes resetting an Apple ID password can help >  Apple - My Apple ID
    If that doesn't help, from the iTunes menu bar click Store > Sign Out
    Restart the Mac, launch iTunes then sign in again.

  • How can I use a shared library made with the application builder?

    Hi,
    I am using LabVIEW 7.1 running on Slackware 10.1 (kernel 2.4.29) and I am trying to call a graph display from a C program that I use for debugging VME access from a VMIVME controler. So using the application builder I built the VI as a shared library (graph.vi -> graph.so) containing a function called "graph". In my main program the call to the dlopen fails with the error: "graph.so: undefined symbol: UninitLVClient". When I examin graph.so with nm I see that UninitLVClient and other LabVIEW functions are indeed undefined and using ldd shows that graph.so has dependencies only on libc.so.* and *linux*.so.* but not on LabVIEW related stuff. Those functions are defined in the liblv.so that's in the cintools directory but I have no idea if the user is supposed to use that.
    So I think I am missing an important concept here. Can somebody help or direct me to some documentation (I found lots of information about how to link external code to LabVIEW but nothing about how to link LabVIEW code to an external program)?

    Thanks Watermann,
    your message has been very useful so now I am linking to the proper library but I still have problems when trying to load dynamically the shared library produced with LabVIEW. It is strange that I could successfully load the lvrt library at loading time but it does not work when I am loading the library at execution time.
    I made a small LabVIEW program that prints a hello window and I am calling it from a C program. In the first program main.c I am linking to the lvrt library at loading time and it works but in the second one I am linking dynamically at execution time and it does not work. For my work I need to be able to load code done in LabVIEW at execution time. Any help is appreciated!
    Program main.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include "hello.h" // got this from the LabVIEW builder, i.e. when I made the hello.so
    int main(void)
    printf("Hello from C!\nLets call LabVIEW now\n");
    hello();
    printf("Bye ... \n");
    return 0;
    The command to compile main.c, i.e. linking shared library lvrt when loading main program:
    gcc -Wall -I /usr/local/lv71/cintools/ -o main main.c hello.so -l lvrt
    The LD_LIBRARY_PATH has been defined and exported:
    $ LD_LIBRARY_PATH=$PWD
    $ export LD_LIBRARY_PATH
    IT WORKS!
    Program main2.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include
    int main(void)
    void * h_lvrt;
    void * h_hello;
    void (* hello)(void);
    char * error;
    printf("Hello from C!\nLets call LabVIEW now\n");
    // open LabVIEW RunTime shared library
    // in my computer located at /usr/local/lib/liblvrt.so
    h_lvrt = dlopen("/usr/local/lib/liblvrt.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    printf("error : could not open LabVIEW RunTime library\n");
    printf("%s\n", error);
    return 1;
    // open hello shared library
    // in my computer located at /home/darss/lv_call/hello.so
    h_hello = dlopen("hello.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not open hello library\n");
    printf("%s\n", error);
    return 1;
    // get function hello from library hello.so
    hello = dlsym(h_hello, "hello");
    // check for error
    error = dlerror();
    if (error) {
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not get the hello function\n");
    printf("%s\n", error);
    return 1;
    // call hello function
    hello();
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("Bye ... \n");
    return 0;
    The command to compile main2.c, i.e. dynamically linking library lvrt at execution of main2 program:
    gcc -Wall -o main2 main2.c -l dl
    The LD_LIBRARY_PATH still defined and exported.
    IT DOES NOT WORK!
    Program output:
    Hello from C!
    Lets call LabVIEW now
    error : could not open hello library
    /home/darss/lv_call/hello.so: undefined symbol: WaitLVDLLReady

  • HT4557 Selecting a shared library starts connecting and gets to what looks to be 50% of the time circle and stops without connecting to the shared library..... Has anyone experience this before and knows how to overcome it?

    I have an iphone 5 with the current operating system and an up to date itunes as of 01.04.13. The strange thing about this problem is that I have the "remote" app also installed and the Iphone can access the shared library and control what is played on itunes on the PC but not the other way around. What I want to do is play from my library through my Iphone but it is not connecting through the music application???

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

  • Vista and iTunes shared library - Admin vs. Standard User

    Here's a good one.....I am the administrator of the family's Vista desktop computer, my kids are Standard Users. When I log in to the computer and bring up iTunes, I am able to see and access our shared library of music on our Synology DS207+ NAS. When either of my kids log in and bring up iTunes, the DiskStation appears on the left side underneath 'shared' but when they click on it, they are not able to access the music. A dialog box appears with the following message: 'the shared library "Disk Station" is not responding (-39). Check that any firewall software running on either the shared computer or this computer has been set to allow communication on port 3689.'
    Their Standard User accounts can access the music on the NAS through mapped drives and windows explorer.
    I am running CA (Computer Associates) Security Center and the firewall has the same rules in place for all of our logins. Here is the strange thing, when I change their account type from Standard User to Administrator, they are able to access the shared library of music, no more dialog box with that message. I change their account type back to Standard User and again, they are not able to access the music, and they get that message again.
    When I am logged in and enter the 'netstat' command, I see the following entry under foreign address:
    NAS:3689 Established
    When the kids are logged in, I see the following:
    NAS:microsoft-ds Established
    I've tried a lot of different things, too numerous to even remember or mention, all with no success. Some troubleshooting measures include:
    - change the kids permissions to the music folder on the DiskStation from read only to read/write.
    - disabled (not uninstalling) tcpip v6.
    - tried every combination of new firewall rule, to include ports 3689, 5353 and every port (and range) in between.
    - file and printer sharing is off on the administrator account, and is off on the standard user(s) accounts, but enabling it does not allow access to the library.
    - uninstalled Bonjour but once I do that, I cannot see the shared library anymore.
    - upgraded Bonjour to the latest version but still no success.
    If anybody reading this has other suggestions, please respond.

    I actually followed this, but I still had problems that I listed above. Is there any way that when you make changes to one account (even if there is only one main account where changes are made), the changes are automatically (or at least easily) applied to the other user accounts?

  • Can't load shared library, libgpg-error missing?

    Right, so this morning I decided to try out Cinnamon. I booted into Arch, logged into GNOME, installed cinnamon from the repositories, and did a system upgrade. I then rebooted. I select Arch Linux from GRUB, everything is working fine, but GDM won't load. And there are some strange error messages I've never seen before on the screen. Hmm. So, apparently, the journal service failed to start:
    /dev/sda1: recovering journal
    /dev/sda1: clean, 260391/7782400 files, 2855892/31099729 blocks
    [ 2.896956] systemd[1]: Failed to start Trigger Flushing of Journal to Persistent Storage.
    [ 2.902798] systemd[1]: Failed to start Trigger Flushing of Journal to Persistent Storage.
    [ 2.903928] systemd[1]: Failed to start Journal Service.
    [ 2.904007] systemd[1]: Dependency failed for Trigger Flushing of Journal to Persistent Storage.
    [ 2.904798] systemd[1]: Failed to start Journal Service.
    [ 3.092906] microcode: failed to load file amd-ucode/microcode_amd_fam15h.bin
    So, I figure I need to do a bit of troubleshooting, and I need to disable GDM, since it doesn't want to start. So I boot into my installation media, arch-chroot into my newly mounted partition, and try to disable GDM with systemctl disable gdm.service. Well, apparently, systemctl is having trouble loading a shared library, because it then spits out this error message:
    systemctl: error while loading shared libraries: /usr/lib/libgpg-error.so.0: file too short
    So, I think perhaps that a library has magically gone missing and I try to reinstall it, but to no avail:
    pacman -Sv libgpg
    pacman: error while loading shared libraries: /usr/lib/libgpg-error.so.0: file too short
    I'm very confused at this point, I haven't the slightest idea what I did. Sorry about the lack of logs, I haven't found anything about this from Google or these forums. I have no idea what logs would be relevant here, as I have no idea what's going on. Any help, or suggestions on which logs may be relevant, would be highly appreciated. Thanks!

    oops.  Two follow ups, first it seems you got that before my edit to at the -l flag to the second ls, I was curious if you still had the package in your cache, whether it was the right version, and whether it was the right size (poor man's checksum (1)).  It's there, and it's the right version, but I'm curious on the size too.
    The second follow up was that I hadn't accounted for the symlink, so the second command should really be as follows
    ls -l /usr/lib/libpgp-error.so.0.10.0
    as pacman says it's too short, I'm curious *how* short.  Is it an empty file, or does it look like the right size which would indicate other corruption, or is it just short.
    EDIT (1):  I suppose while were at it we may as well get a real checksum.  Here's mine on the package cache file, yours *should* match
    $ md5sum /var/cache/pacman/pkg/libgpg-error-1.12-1-x86_64.pkg.tar.xz
    602a18784e9916e1a4d13b10de6074aa /var/cache/pacman/pkg/libgpg-error-1.12-1-x86_64.pkg.tar.xz
    If yours matches that, the cause of this problem may remain a mystery, but the solution could be to reinstall that package.  I suspect this will be the solution regardless though.  And if you have a live media it might be easiest to just use pacman from the live system with your system as a target, and reinstall libgpg-error.  If you don't have a live media, then you *might* have to uncompress the package manually.
    Last edited by Trilby (2013-07-08 19:19:52)

  • ITUNES 7.5 - Shared Library TV Shows

    Hi very strange one.
    Running iTUNES 7.5 on my machine but 7.4 on the share when I view the TV SHows it show in the browser Show and Episode. I updated the shared library to 7.5 and first of all it would not conect to the server at all (including my AppleTV would not connect).
    I applied the fix talked about here about removing quicktime and re-installing 7.2. Great library at least can be seen. Apple TV see them OK but any other machine when you select the TV Show from the share show all of the items but the browser show Artist/Album ... not a great deal of use.
    Library is being shared from a Windows 2003 server.
    Any help would be appreciated. BTW - Mac and Windows machines show the same from the library.
    Malcolm

    I play them through Quicktime but the real issue is that Apple changed the rules mid-stream. The current upgrades require a 1ghz machine.
    For instance I purchased my multi-pass for the Daily Show prior to the upgrade. Then Apple changed the rules, giving me no choice but to download new software in order to download and play the shows I'd already purchased. I assumed this would be scalable somehow. But it's not and frankly I feel ripped off that my Quicksilver 867 can't play the files smoothly no matter what size I make them even though I am just short of the 1 GHz requirement.
    I was happy to purchase the files from iTunes. But I can get the files elsewhere at better quality and they play fine full screen - until they solve this issue, I will likely stop buying video files from iTunes and get them by other means.
    cb

  • Mystery Shared Library

    I have a G4 running 10.4.11, and iTunes 8.0.2 that streams music and movies to my Apple TV. There's a strange anomaly where when I open iTunes on my MacBook Pro, two shared libraries will appear: G4 Server, and G4 Music Server. I know there was at one point where I had named my library G4 Music Server, but then promptly switched to G4 Server. When I connect open up my Apple TV, it only recognizes one shared library - G4 Server - which is really the only one that I want.
    When I look in the G4 iTunes preferences, it's marked as G4 Server, which is correct. So, what I'm wondering is: where is this mystery G4 Music Server shared library coming from, and how can I delete it?
    Any help is greatly appreciated!
    Thanks,
    Fran.

    Hi there, not sure what all you've tried, but...
    Safe Boot, (holding Shift key down at bootup), & use Disk Utility from there to Repair Permissions, then try reallpying the big combo update...
    The combo update for PowerPC-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateppc.html
    Repair Permissions afterwords, reboot.
    If all the above fails, then it appears to be time for a relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings

  • Unable to see shared library

    I searched for and read about a dozen previous posts on this subject but was unable to find a solution. Not only can I not see any shared library but I don't even have a "shared" menu item on either PC as described in the help file. It should show up under the Library>Music heading?
    Both PC's:
    ...can connect to the internet
    ...can transfer files back and forth
    ...can see each others "Shared Docs" directory
    ...have iTunes and Bonjour listed as exceptions in Windows Firewall
    ...have the latest verions of iTunes and Bonjour
    When I point the iTunes Music Folder location on the 'remote' PC to the iTunes Music Folder on the 'host' PC, it finds it, see's it, and then asks if I want to update (the view)? to match? I said yes. Still the same list of songs that are physically on the remote PC and nowhere does it say anything about sharing or give any indication that it is aware of the host library.
    What am I not getting?

    "iTunes Sharing, the built-in feature, has nothing to do with pointing your iTunes Music folder setting to a shared folder on another computer. Those are two separate features/capabilities."
    Yes, I get that - I was just trying everything I could think of to make it see my shared library.
    "do you have Sharing and "Look for shared" turned on in the iTunes Sharing preferences?"
    Yes.
    "you want to have your iTunes library using the shared folder on your other computer, you need to use the Add Folder to Library command to get the tracks into the iTunes library listing"
    Not quite sure what your getting at here. The help file for sharing the entire library gives 3 simple steps and then says "its name appears in the iTunes window (below Shared) on other local computers (in the same subnet) set up to look for shared libraries." - obviously this is not happening.
    The whole reason to share and use the host library is specifically to avoid having to manually add tracks/folders from the remote PC.

  • Cannot deploy a shared library from jdeveloper to oracle webcenter spaces

    Hi guys,
    i used oracle jdeveloper 11.1.1.6  with extendwebcenterspaces workspace. I use WebcenterSpacesSharedLibExtension project.
    I have deployed with jdeveloper directly to webcenter by using a connection and deployed as shared library.
    Afther that i used DesignWebcenterSpaces and deployed with ant scripts: clean stage  and deploy as shared lib
    I get an error on deployment:
    Redeploying application webcenter ...
         [exec] <Sep 25, 2013 1:07:10 PM CEST> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating redeploy operation for application, webcenter#11.1.1.4.0 [archive: null], to WC_Spaces .>
         [exec] ..Failed to redeploy the application with status failed
         [exec] Current Status of your Deployment:
         [exec] Deployment command type: redeploy
         [exec] Deployment State       : failed
         [exec] Deployment Message     : weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs'
         [exec] No stack trace available.
         [exec] None
         [exec] #########################################################
         [exec] #####     ReDeploy Spaces Failed #########
         [exec] #####     Contact support with Exception Stack #########
         [exec] #########################################################
         [exec]
    Can someone help with some fix for that error?
    I want to override the login page from webcenter spaces using CustomLandingPage project
    Also, i have tried the deployment by using SampleWebcenterSpacesExtensions workspace with WebcenterSpacesSharedLibExtension project and deployed with ant scripts: clean stage  and deploy as shared lib.
    Afther that i used DesignWebcenterSpaces and deployed with ant scripts: clean stage  and deploy as shared lib
    There the deployment succeed but i get an error on browser
    The error is:
    OracleJSP error: oracle.jsp.parse.JavaCodeException: Line # 13, oracle.jsp.parse.JspParseTagScriptlet@1dbc116
    Error: Java code in jsp source files is not allowed in ojsp.next mode.
    Thank you very much for help.

    ####<Sep 27, 2013 9:44:07 AM CEST> <Error> <Deployer> <webcenter-vm> <WC_Spaces> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <11d1def534ea1be0:-3d303652:141559d6da7:-8000-000000000000112a> <1380267847678> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1380267843425' for task '20'. Error is: 'weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs''
    weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs'
        at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:395)
        at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
        at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
        at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:159)
        at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:45)
        at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
        at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
        at weblogic.deploy.internal.targetserver.operations.RedeployOperation.createAndPrepareContainer(RedeployOperation.java:104)
        at weblogic.deploy.internal.targetserver.operations.RedeployOperation.doPrepare(RedeployOperation.java:128)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747)
        at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:46)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: weblogic.management.DeploymentException: Error: Unresolved Webapp Library references for "ServletContext@21596057[app:webcenter module:/wcsdocs path:/wcsdocs spec-version:2.5 version:11.1.1.4.0]", defined in weblogic.xml [Extension-Name: custom.webcenter.spaces, exact-match: false]
        at weblogic.servlet.internal.WebAppServletContext.processWebAppLibraries(WebAppServletContext.java:2750)
        at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:416)
        at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:494)
        at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:418)
        at weblogic.servlet.internal.WebAppModule.registerWebApp(WebAppModule.java:976)
        at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:384)
        at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
        at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
        at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:159)
        at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:45)
        at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
        at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
        at weblogic.deploy.internal.targetserver.operations.RedeployOperation.createAndPrepareContainer(RedeployOperation.java:104)
        at weblogic.deploy.internal.targetserver.operations.RedeployOperation.doPrepare(RedeployOperation.java:128)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747)
        at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:46)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >

  • Please help! Shared Library Error... no applications will open!

    Hi. Major issues!!
    My computer was unplugged for 2 weeks (renovations). When I set it up in my new office, none of my applications would open! (Microsoft, Adobe, AOL, etc...) Safari is working.
    I get this error message:
    The application "Photoshop" could not be launched because of a shared library error: "5<application><CarbonLib><CFMPriv_SpeechRecognition>"
    The application "Word" could not be launched because of a shared library error:
    "8<Microsoft Word><CarbonLib><CFMPriv_SpeechRecognition>"
    The application "AOL" could not be launched because of a shared library error:
    "9<AOL (Bootstrap)><CarbonLib><CFMPriv_SpeechRecognition>"
    The application "AppleWorks" could not be launched because of a shared library error: "4<AppleWorks><CarbonLib><CFMPriv_SpeechRecognition>"
    Here's what I've tried...
    I have tried to install combo update 10.3.9. .. didn't work.
    My computer was purchased in 2004... just moved to a new house... do not know where my installation dvd is... so to reboot on that is not an option.
    I tried disk repair permissions... didn't work!
    I opened my log console to view the crash logs... and it appears a lot has crashed... but I can not understand what any of it means!?!
    Can anyone help or offer some advice?
    Can anyone understand a crash log if I post it?
    Please help!?! Taking an online masters course and this is a major dilemma!
    Thanks,
    Lindsay

    Hi Lindsay,
    "Can I get one from a mac store? Does it have to be the original one I used when I purchased my mac?"
    No, you can no longer purchase 10.3 Panther disks from Apple Stores, online or otherwise. You may however, be able to purchase replacement disks for your computer (if Mac OS 10.3 were the original install disks that came with your mac) by calling Apple and explaining and having the serial number ready of the computer.
    If your installation of 10.3 was an upgrade you can purchase retail copies of 10.3 disks online from many resellers, such as on ebay or sites such as FastMac, but be sure to purchase a retail box set and not upgrade or machine specific disks.
    Did you perform all of the steps that Kappy steered you to in Dr. Smoke's FAQ first and your only option left is the Archive and Install?
    littleshoulders

  • Adding shared library to project fails

    We've created a shared library of content and look & feel updates to Portal 9.2 mp1.
    Started by creating a new web and app project. Made sure it works in a test portal.
    I followed Floyd Jones instructions on creating shared J2EE libs.
    Created a "simple project" copied the files (with exception of the webcontent folder - but all its contents). Created the Manifest file. Saved it as a .war in the modules folder.
    Create a new web and app project for testing. When I pull in the library, portal doesn't seem to work following the instructions (Can't find WebLogic J2EE Libraries option to add). So I add the J2EE libraries via the project properties. When I link to the war file, the manifest information does not appear. Instead just the name of the actual .war file.
    I can add the versions. Workshop requires me to edit the weblogic.xml file to pull in the library.
    But no luck. My suspicion is there's something wrong with the library as it can't read the manifest. When I open the manifest inside the .war file all the information is there.
    Any idea what I'm doing wrong?
    Thanks...martin

    you'll have to physically put all the songs on to the computer that doesnt have it. to do this go to start>my network places and if you are on a network his computer should show up. You'll probably need to enable sharing for your My Music folder (just assuming thats where you music is at) and just copy it over.

  • Remote app on iPad2 not showing iTunes interface on ATV2 shared library

    I have an AppleTV 2 that's sharing an iTunes library via home sharing over Ethernet from a Mac Mini. Running Remote App on my iPhone 5S, I can control that library as expected. Running Remote App on my iPad2, however, I'm unable to see the main iTunes-like interface that lists songs, albums, artists, etc. on the shared library. While I can see the currently playing song at the top of the screen and have access to the Back, Pause, and Forward buttons, the main pane below that only shows the icons for Home Sharing and Using Gestures. Under Home Sharing, where it says "Tap the Apple TV button in the bottom left...," there's not Apple TV button, only "Devices." I can use the gestures interface in Remote App on the iPad2 to control playback, but I never see the main library interface. Any thoughts you have for remedying this would be really appreciated!

    Well the response I got to the above post was outstanding!
    Shall we put this in the bracket along with "If a tree falls in the forest with no one there to hear it, does it make a sound?"
    If anyone is wondering, for my party I ended up using my Mac as the server for the iTunes DJ. And I discovered that if more than 5-7 people try to get onto it, it crashes the whole system and the music stops. Glorious.

  • Remote for itunes on shared library

    Hello.
    On my mac mini in the living room is attached a USB drive with all music for itunes. The remote app on IOS works fine for this mini.
    In my office on the same lan I have a mini which uses home sharing to see that library. However its headless straight into a hifi.
    For the life of me I cannot owrk out how I can play music from the home share through this mini, is it possible? All the remote app shows is the few songs it has in its native library.
    Any help appriciated because it seems to detract from the point of the home share thing.

    Hi Gary,
    Thanks for visiting Apple Support Communities.
    You should be able to access your Home Sharing library with Remote by pairing the two using these steps:
    Pair Remote with your Home Sharing network
    To use Remote 2.0 (or later) with Home Sharing, every iTunes library you want to control must have Home Sharing turned on. For more information, see Use Home Sharing to import items from another iTunes library.
    Tap Remote on your device’s Home screen.
    Tap Settings.
    Tap to turn Home Sharing on.
    Type your Apple ID and password, and tap Done.
    Tap the iTunes library or Apple TV you want to control.
    For more information, see the Remote Support website.
    You can find these steps and more information here:
    iTunes 11 for Mac: Use the Remote app to control your iTunes library
    http://support.apple.com/kb/PH12157
    Best Regards,
    Jeremy

Maybe you are looking for

  • Hi, my ipod has been not allowing me to touch the screen. Also the volume buttons are locking the ipod instead of turning up the music.

    Hi! Yesterday I was at the gym, and i wass going to get my iPod touch and it wasnt allowing me to unlock the screen. I let it go for awhile then I went to go look at it again and still wasnt able to unlock my iPod. Then I did;t really bother with it,

  • Exception: ORABPEL-05007 No messages being delivered

    Can any one help me with the following errors? I have a number of composites deployed into an environment and all composites have stopped delivering messages. I can see from the EM console that the end point is being called when I run a test from the

  • Drag and Drop stops working!

    I have been using various versions of Final Cut for the last several years, and other similar video editors for much longer (finally left the world of the PC for video editing a few years ago!). I am excited by Final Cut Pro X and am learning it quic

  • Editing in iPhoto app

    Hi, I can't seem to figure out how to get certain edits to stick. I can apply an effect, but then when I tap another icon, for example, to change the exposure or colors, my photo reverts back to the original without the first effect I applied. How ca

  • Managing iTunes library size on my MacBook Air

    I'm trying to figure out an efficient way to manage a copy of my iTunes library using iTunes Match & am hoping somebody can help. I have a 20000 song library that lives on my iMac (which has a 2TB hard drive). That library is backed up regularly and