Font in shared library

Hello everyone
Been reading all your posts and tried everything, but nothing seems to work. The problem is:
index.swf as a class named AssetsLoader.as. This class loads sharedlib.swf which as a font in it. I need to register the font at index.swf, but i get this damn error
Error #1508: The value specified for argument font is invalid. at flash.text::Font$/registerFont()
Here are the files:
***sharedlib.swf***
Font properties at library panel:
-Export for ActionScript (CHECKED)
-Export in frame 1 (CHECKED)
-Class: DINBold
-Base Class: flash.text.font
**AssetsLoader.as***
var _loader = new Loader();
_loader.addEventListener(Event.COMPLETE, loadComplete);
_loader.load(new URLRequest('sharedlib.swf'));
private function loadComplete(e:Event):void {
var _fontClass:Class = e.target.applicationDomain.getDefinition('DINBold' ) as Class;
_index.addFont(_fontClass);
***index.swf***
var _assets:AssetsLoader = new AssetsLoader()
function addFont(_fontClass:Class){
Font.registerFont(_fontClass);
PROBLEM:
ArgumentError: Error #1508: The value specified for argument font is invalid. at flash.text::Font$/registerFont()
FOUNDED SOLUTIONS THAT DOESN'T WORK FOR ME:
#1 (at AssetsLoader.as)
var _loaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
_loader.load(new URLRequest('sharedlib.swf'), _loaderContext);
#2 (at AssetsLoader.as)
var _loaderContext = new LoaderContext(false, new ApplicationDomain(), null);
_loader.load(new URLRequest('sharedlib.swf'), _loaderContext);
#3 (at AssetsLoader.as)
var _loaderContext = new LoaderContext(false, new ApplicationDomain(ApplicationDomain.currentDomain) , null);
_loader.load(new URLRequest('sharedlib.swf'), _loaderContext);
#4 (at AssetsLoader.as)
var _loaderContext = new LoaderContext(false, new ApplicationDomain(ApplicationDomain.currentDomain) , null);
_loader.load(new URLRequest('sharedlib.swf'), _loaderContext);
#5 (at AssetsLoader.as)
var _loaderContext = new LoaderContext(false, new ApplicationDomain(ApplicationDomain.currentDomain) , SecurityDomain.currentDomain);
/* this solution throws an error saying
SecurityError: Error #2142: Security sandbox violation: local SWF files cannot use the LoaderContext.securityDomain property. */
The strangest thing is that e.target.applicationDomain.hasDefinition('DINBold' ) always returns true!
Been trying to solve this problem for the last week.. I really need your help!!!!!!!! I'm going crazy with this thing.....
Thank you

Noticed it's an old post but since it's been brought back...
sharedlib.fla - I used Arial for the library font in this example.
AssetsLoader.as
package  {
    import flash.events.EventDispatcher;
    import flash.display.Loader;
    import flash.events.Event;
    import flash.system.ApplicationDomain;
    import flash.net.URLRequest;
    public class AssetsLoader extends EventDispatcher {
        public var fontClass:Class;
        public function AssetsLoader() {
            init();
        private function init():void {
            var loader:Loader = new Loader();
            loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadComplete);
            loader.load(new URLRequest("sharedlib.swf"));
        private function loadComplete(e:Event):void {
            fontClass = (e.target.applicationDomain as ApplicationDomain).getDefinition("Arial") as Class;
            dispatchEvent(new Event("sharedlibLoadComplete"));
Main movie
import flash.events.Event;
import flash.text.Font;
import flash.text.TextField;
import flash.text.TextFieldAutoSize;
import flash.text.TextFormat;
var assets:AssetsLoader = new AssetsLoader();
assets.addEventListener("sharedlibLoadComplete", sharedLibLoadComplete);
function sharedLibLoadComplete(e:Event):void {
    Font.registerFont(assets.fontClass);
    setTextfield();
function setTextfield():void {
    var textfield:TextField = new TextField();
    with (textfield) {
        width = 100;
        height = 10;
        autoSize = TextFieldAutoSize.LEFT;
        embedFonts = true;
        defaultTextFormat = new TextFormat("Arial", 12, 0);
        text = "A TextField using runtime shared font.";
    addChild(textfield);
Kenneth Kawamoto
http://www.materiaprima.co.uk/

Similar Messages

  • Need help setting up a shared /Library/Fonts folder for font sharing

    Hi,
    I have a problem setting up a shared /Library/Fonts folder on my OSX 10.5.5 server that gets automounted on the OSX 10.5.x clients.
    While I managed to get the folder to show up automatically under /Network/Library/Fonts on the clients, the fonts in these folders do not show up in Font Book on the client systems. Plus, it seems like there is some sort of language mismatch, since I am using a German OSX installation. While the shared /Library/Fonts folder does show up under the "Network" area (where the servers are listed), it does not connect correctly on the "/Netzwerk" folder that OS X creates automatically. In fact there are 2 folders named "/Netzwerk" on my startup drive root directory, one that reads "/Network" when looking at it in the terminal, and one named "/Netzwerk". The /Network one does have a working link to the /Library folder, and the /Netzwerk one does only contain something looking like an alias of /Library, but it does not allow any access to this alias.
    If anybody did manage to get this Netowrk "/Library/Fonts" to work I would be happy for some feedback. I am simply not sure if this is related to a localization bug, or if I am doing something wrong here. The fact that the folder and the fonts does show up correctly under the network portion of the sidebar seems to indicate that my setup is correct, but still the fonts do not work.
    Any ideas, or maybe a step-by-step description on how to set this up would be great.
    Thanks a lot,
    Floh

    Hi, Sorry I don't have an answer for you. But how did you get to share /Library/Fonts? I was trying to do the same thing by using "File Sharing" in Server administrator. But under volumes, I don't see my root directory "/". So there is no way that I can share any of my folders under "/".
    Thanks.

  • No oci803jdbc in shared library path

    Env: Solaris 7, Oracle 8.1.6 client with JDBC
    Can someone explain why the 8.1.6 JDBC OCI driver is trying to load oci803jdbc.so instead of ocijdbc8.so?
    java -classpath .:/oracle816/jdbc/lib/classes111.zip Hello
    Connecting to database (jdbc:oracle:oci8:@geis) ...
    java.lang.UnsatisfiedLinkError: no oci803jdbc in shared library path
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Error.<init>(Compiled Code)
    at java.lang.LinkageError.<init>(Compiled Code)
    at java.lang.UnsatisfiedLinkError.<init>(Compiled Code)
    at java.lang.Runtime.loadLibrary(Compiled Code)
    at java.lang.System.loadLibrary(Compiled Code)
    at oracle.jdbc.oci7.OCIDBAccess.logon(Compiled Code)
    at oracle.jdbc.driver.OracleConnection.<init>(Compiled Code)
    at oracle.jdbc.driver.OracleDriver.connect(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at java.sql.DriverManager.getConnection(Compiled Code)
    at Hello.main(Compiled Code)
    talus ~/java/geis 4 % echo $LD_LIBRARY_PATH
    /oracle816/lib:/oracle816/jdbc/lib
    import java.sql.*;
    import java.io.*;
    import java.util.Properties;
    import oracle.jdbc.driver.*;
    class Hello
    static final String url = "jdbc:oracle:oci8:@geis";
    static final String user = "scott";
    static final String pswd = "tiger";
    public static void main(String args[])
    throws SQLException
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    System.out.println("Connecting to database (" + url + ") ... ");
    Connection conn = DriverManager.getConnection(url, user, pswd);
    System.out.println("Connected.");
    DatabaseMetaData dbmd = conn.getMetaData();
    System.out.println("Driver name: " + dbmd.getDriverName() +
    " " + dbmd.getDriverVersion());
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery("SELECT 'Hello World' FROM dual");
    while (rset.next()) {
    System.out.println(rset.getString(1));
    System.out.println("Your JDBC installation is correct.");
    CallableStatement cstmt =
    conn.prepareCall("{call dbms_output.enable()}");
    cstmt.execute();
    cstmt.close();
    System.out.println("DBMS output enabled");
    }

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Alan (Oracle):
    Based on the fact that you've posted other comments later than this one, I assume you've gotten past this problem.<HR></BLOCKQUOTE>
    So what is the solution?
    null

  • How do I fix a shared library error?

    Thought I did a good job of cleaning out some old fonts, but now InDesign will not launch because of a shared library error:
    "+InDesign 2.0.2><PublicLib><ACECarbonLib><>"
    I need to fix this very quickly... what do I do?

    You probably need to run the installer again and "Repair" the installation. I presume you have some really ancient hardware there to make 2.0.2 run at all.

  • Preview SWF which contains a Run Time Shared Library

    All of our assets share fonts using a run time shared library (RSL) so that we dont need to embedd the fonts in each and every seperate swf.  The swf looks for a sharedFonts.swf file one level/directory up from where it is currently at.  Inside the assets' RSL the url is ../sharedFonts.swf.
    So with a program like Adobe Bridge I just need to find out where Bridge is previewing the file from and then one directory up from that I need to place in the sharedFonts.swf.  The place that I am viewing it from is already setup that way and works correctly if I simply open the swf without using some kind of program.  So my guess is that Bridge takes the swf and places it somewhere within itself and then previews it or there is simply a bug with Bridge since currently it is just crashing.
    I have some logs using windows event viewer and that shows me that the module that is failing is AdobeSWFL.dll which I am guessing is library to preview items.
         Faulting application path: C:\Program Files (x86)\Adobe\Adobe Bridge CS5\Bridge.exe
         Faulting module path: C:\Program Files (x86)\Common Files\Adobe\APE\3.1\AdobeSWFL.dll
    Has anyone ran into something like this before? Any ideas on what to do here?
    Thank you!

    I'm having the same problem. A coworker showed me how he uses Bridge to navigate all of his Photoshop and Illustrator files. As a Flash artist, I tried using Bridge to preview SWFs, and discovered the auto-crash feature.
    Bridge crashes every time I click on a SWF that uses a runtime shared library. Frustrating!
    Were it not for this bug, our studio's Flash artists would likely integrate Bridge into our pipeline. A fix, or directions on fixing the issue would be greatly appreciated.

  • Shared library assets

    For some reason I have always had a hard time with shared
    assets in the library. Theycreate more frustration for me in
    production because I seem to have to constantly go and redeclare
    the url of the asset in the library to make the sharing work in my
    local production environment. Is it me or does the whole shared
    library thing in Flash seem really buggy?
    Is there a better way fro sharing common aasets across a
    site?

    not a lot Bill, haven't really used that function much. Just
    thinking about it outloud :) Although I'm developing a similar
    system in a project I'm working on now, it's very dynamic and it's
    assets are to be expanded by multiple users.
    The problem for me is that I'll need to load all the assets
    into container and then dup them under control durring runtime.
    I was thinking about that for yours as well, if it takes to
    much time to laod each individual piece when needed, you might just
    load them all for each 'page' and then place them where they go or
    ace them, dunno. Just thoughts.
    As for Fonts, I suppose one could do the same thing, add a
    Font to the Lib, then load up that swf, it should become available
    to the Style sheet if you call it in from the loaded file... I
    think, don't know never tried it, just hypothetical.

  • Where is a shared library actually stored?

    I am restoring a friend's Windows 7 PC after a hard drive crash.  I installed iTunes 11.4 and used the backup we had created, but the music files in her iTunes library were not restored -- only the structure of her library with artists, albums, etc., but no music. 
    On my Macbook, I can see "Dianna's Library" as a Shared library in iTunes so long as Home Sharing is turned *off*.  Screen cap attached.  I can play music from that library.  I want to find the path for that library so that I can copy it to her PC, but I can't find a way to view where it is actually stored.  It doesn't seem to be on our NAS although another Shared library is "iTunes Server on NAS."   Nor is it on the other Windows 7 PC on our home network.  Can anyone advise me? 

    That worked!  However, most of the files are in the cache.  One of the paths (/Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib) points to a "dynamic library."  I will do some more research to find out if that might be the location. 
    Here are the other contents of the "Open Files and Ports" contents in case something jumps out at you.  I am certainly not expected you to pore over these, however, and again, thank you.
    Applications/iTunes.app/Contents/MacOS/iTunes
    /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/iP odUpdater
    /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundati onCF
    /Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCor e
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
    /System/Library/ColorSync/Profiles/sRGB Profile.icc
    /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
    /System/Library/ColorSync/Profiles/Generic RGB Profile.icc
    /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
    /System/Library/ColorSync/Profiles/Generic Gray Gamma 2.2 Profile.icc
    /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
    /Applications/iTunes.app/Contents/Resources/English.lproj/iTunesExtraListView.pn g
    /Applications/iTunes.app/Contents/Resources/English.lproj/StoreBuyButton.png
    /Applications/iTunes.app/Contents/Resources/English.lproj/RatingExplicit.png
    /Applications/iTunes.app/Contents/Resources/English.lproj/StoreViewButton.png
    /Applications/iTunes.app/Contents/Resources/English.lproj/StoreGetButton.png
    /Applications/iTunes.app/Contents/Resources/English.lproj/StoreGiftButton.png
    /System/Library/Fonts/Keyboard.ttf
    /Library/Keychains/System.keychain
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fram ework/Versions/A/Resources/HIToolbox.rsrc
    /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bund le/Contents/MacOS/AppleHDAHALPlugIn
    /Applications/iTunes.app/Contents/Resources/English.lproj/StoreRentButton.png
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fram ework/Versions/A/Resources/English.lproj/Localized.rsrc
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.LaunchService s-044501.csstore
    /usr/share/icu/icudt51l.dat
    /System/Library/PrivateFrameworks/CoreFP.framework/Versions/A/CoreFP
    /Applications/iTunes.app/Contents/Resources/iTunes.rsrc
    /Applications/iTunes.app/Contents/Resources/English.lproj/StorePreOrderButton.pn g
    /Applications/iTunes.app/Contents/Resources/English.lproj/RatingClean.png
    /Applications/iTunes.app/Contents/Resources/English.lproj/RatingCaution.png
    /Applications/iTunes.app/Contents/Resources/RatingFont.png
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ DAB1F8BC08D6265992E37CBBE437B385.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ 6D005C3BB3CA0BADFD75AA537CA75E3B.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ EB35932DBEE6548739BB2CCF37E1C084.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ 76D53BC669D1D97C34D608129416E744.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/T/com.apple.IconServices/ 69F6DAF3396551094EF006254C652CF9.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ A749CF7B0C2BCBC18211A6B26BB97BFE.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/T/com.apple.IconServices/ 75676F1D8D925CBF56B1A8657754F68F.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ CA61FA926FECAA9BEBBCF0BE46FF64DA.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ A9B6D7C8DAFA3D469E95B0887A4FA6EF.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ 58DC12CB7FCA7E288A08D3C0ED68C0C0.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ E42DD0875759DDA652ED9ECEB4125B21.iscachebmp
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ 727B0CFBD2C1AB3289E2ADBCFBC04E9B.iscachebmp
    /System/Library/PrivateFrameworks/CoreADI.framework/Versions/A/CoreADI
    /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice
    /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    /System/Library/Fonts/LucidaGrande.ttc
    /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    /System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Latn2.data
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/Resources/tokrule LE.data
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ BB0EC1E9863A1874F68FEFB56128427A.iscachebmp
    /Users/maryannehoopes/Library/Caches/com.apple.iTunes/Cache.db-shm
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLSLBuiltins.GL 2.glpa
    /System/Library/Frameworks/AppKit.framework/Versions/C/Resources/Latn1.data
    /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/Resourc es/com.apple.datadetectorscore.cache.urlifier.system
    /System/Library/Extensions/AppleIntelHSWVA.bundle/Contents/MacOS/AppleIntelHSWVA
    /System/Library/Caches/com.apple.IntlDataCache.le.kbdx
    /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/BookKit
    /private/var/db/mds/messages/se_SecurityMessages
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/mds/mdsDirectory.db
    /private/var/folders/sf/t334hgzs0g71t1yfs66gz6wr0000gn/C/com.apple.IconServices/ ISCacheTOC
    /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/un orm8_rgba.dylib
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fram ework/Versions/A/Resources/Extras2.rsrc
    /System/Library/Fonts/Helvetica.dfont
    /System/Library/Keyboard Layouts/AppleKeyboardLayouts.bundle/Contents/Resources/AppleKeyboardLayouts-L.d at
    /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/Resources/SArtFile .bin
    /System/Library/Fonts/HelveticaNeue.dfont
    /System/Library/Frameworks/MediaLibrary.framework/Versions/A/MediaLibrary
    /System/Library/ColorSync/Profiles/Generic Gray Profile.icc
    /System/Library/PrivateFrameworks/AirTrafficHost.framework/Versions/A/AirTraffic Host
    /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    /System/Library/Extensions/AppleIntelHD5000GraphicsVADriver.bundle/Contents/MacO S/AppleIntelHD5000GraphicsVADriver
    /System/Library/PrivateFrameworks/CoreKE.framework/Versions/A/CoreKE
    /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/un orm8_bgra.dylib
    /System/Library/Fonts/Geneva.dfont
    /System/Library/Keychains/SystemRootCertificates.keychain
    /usr/share/langid/langid.inv
    /Applications/iTunes.app/Contents/Resources/iTunes.icns
    /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/Resources/ArtFile. bin
    /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacO S/AppleIntelHD5000GraphicsGLDriver
    /usr/lib/dyld
    /private/var/db/dyld/dyld_shared_cache_x86_64
    /dev/null
    /dev/null
    /dev/null
    /Applications/iTunes.app/Contents/Resources/iTunes.rsrc
    count=2, state=0x2
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fram ework/Versions/A/Resources/HIToolbox.rsrc
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fram ework/Versions/A/Resources/English.lproj/Localized.rsrc
    ->0x11fa0c25b81d1dc3
    ->0x11fa0c25b6298d63
    ->0x11fa0c25b95cb2d3
    FNetwork.defaultStorageSession
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fram ework/Versions/A/Resources/Extras2.rsrc
    /Users/maryannehoopes/Music/iTunes/iTunes Library.itl
    /Users/maryannehoopes/Music/iTunes/iTunes Library Genius.itdb
    /Users/maryannehoopes/Music/iTunes/iTunes Library Extras.itdb
    /dev/urandom
    /Applications/iTunes.app/Contents/Resources/Images.rsrc
    /Applications/iTunes.app/Contents/Resources/Images2.rsrc
    /Applications/iTunes.app/Contents/Resources/DeviceImages.rsrc
    count=0, state=0x1
    /Users/maryannehoopes/Music/iTunes/iTunes Media/Automatically Add to iTunes.localized
    /Users/maryannehoopes/Music/iTunes/iTunes Media
    /Users/maryannehoopes/Music/iTunes
    /Users/maryannehoopes/Music
    /Users/maryannehoopes
    /Users
    count=0, state=0x1
    count=0, state=0x1
    *:50739
    ->0x11fa0c25c0cd2d63
    marys-air.home:57778->dianna-pc.home:daap
    marys-air.home:58287->dianna-pc.home:daap
    ->0x11fa0c25c0cd2273
    ->0x11fa0c25c0cd21ab
    ->0x11fa0c25c0cd0bcb
    ->0x11fa0c25b61fdbd3
    ->0x11fa0c25b6296653
    /Users/maryannehoopes/Library/Caches/com.apple.iTunes/iAd/com.apple.iad.persiste nce.db
    /Users/maryannehoopes/Library/Caches/com.apple.iTunes/Cache.db
    /dev/random
    /dev/random
    /Users/maryannehoopes/Library/Caches/com.apple.iTunes/Cache.db
    /Users/maryannehoopes/Library/Caches/com.apple.iTunes/Cache.db-wal
    /Users/maryannehoopes/Library/Caches/com.apple.iTunes/Cache.db-shm
    /Users/maryannehoopes/Library/Caches/com.apple.iTunes/Cache.db-wal
    ->0x11fa0c25b5a01093
    ->0x11fa0c25b5a00f33
    ->0x11fa0c25b5a00dd3
    ->0x11fa0c25b5a00c73

  • PowerPoint Launch Failure - Shared Library

    -------------------------
    Application launch Failure
    The application "PowerPoint" could not be launched because of a shared library error: "4<Microsoft PowerPoint><OpenGLLibrary><CFMPriv_AGL>"
    - That is the message I get as soon as I double click on PowerPoint. Both Word and Excel work fine. All of the other apps I have seem to work fine. I am running 10.3.9. I have 1 Gig of RAM.
    - SteveRidesSteel has an iBook G4 that also has the same problem. He is running 10.4.7
    - Casey has the same problem.
    - Several people all over the internet have had shared library errors after installing various games.
    - There apparently is a Shared Library Error when updating to OS X 10.4.3
    - There appears to be a problem with some applications due to a upgrade for Quicktime. This message .....
    'The application "(Game Name) Install" could not be launched
    because of a shared library error: "BaseInstaller Carbon"'
    seems to be unique to Games. This is NOT the error message I get.
    --------- This is what I've done ------------------------
    ---> I have reloaded the entire MS Office Suite.
    ---> and then reloaded all of the updates from MS.
    ---> Word (11.2.3), PowerPoint (11.2.4), Excel (11.2.5)
    ---> I've trashed all of the preferences
    ---> I've trashed all of the Caches
    ---> I've repaired all of the disk permissions.
    ---> The error code I get (I found it in the Utilities Console) is -2804.
    which means, thanks to Mike Conniff:
    cfragNoLibraryErr = -2804, /* The named library was not found
    - this is a CarbonLibrary
    ---> Both Quicktime (7.1.3) and iTunes (6.0.5) updated via AutoUpdate
    ---> Someone has suggested that Fonts might be a problem but, I haven't
    changed any Fonts since I bought the computer. I did turn-off a lot
    of Fonts I don't use. None of them were related to any system Fonts.
    ---> http://support.microsoft.com/kb/842646/en-us
    - I DON'T get a Carbon Library error message, per se.
    - If there is a problem with a damaged or corrupted file,
    wouldn't upgrading to a new version (OS X 10.4, for example)?
    ---> I've removed all of the .plist files and started over.
    ---> I DON'T have Internet Explorer or Entorage loaded on my computer
    ---> The last app I installed on my computer was FileMaker 8.0 Advanced.
    So, I've attempted to combine a bunch of related threads.
    ------- Questions
    Is there a way to watch the files (libraries) that are active and what programs are using them? Also, if I don't have any other apps running, would the OpenGLLibrary necessarily be shared by something else?

    Hi Rich,
    I followed your advice. Here is what happened. The clip I've included is from the time I turned on the computer, opened Safari, connected to AOL for email, and then opened the posting from the Mac Forum. I haven't opened any pics, so not sure why I have jpeg failures. Then I opened PowerPoint.
    Console.app (results of Console.log)
    Mac OS X Version 10.3.9 (Build 7W98)
    2006-10-08 20:26:16 -0700
    2006-10-08 20:26:31.227 MagicMenuHotKeyDaemon[415] Started
    Corrupt JPEG data: 18 extraneous bytes before marker 0xd9
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x38 0x42
    Not a JPEG file: starts with 0x4a 0x47
    Not a JPEG file: starts with 0x4a 0x47
    Corrupt JPEG data: 189 extraneous bytes before marker 0xd9
    Corrupt JPEG data: 105 extraneous bytes before marker 0xd9
    Launch failed with error code -2804
    The launch failed with errror code -2804 is the only thing that showed up when I tried to launch PowerPoint.
    Console.app (results of System.log)
    Oct 8 20:25:22 localhost syslogd: restart
    Oct 8 20:25:22 localhost syslogd: kernel boot file is /mach_kernel
    Oct 8 20:25:22 localhost kernel: standard timeslicing quantum is 10000 us
    Oct 8 20:25:22 localhost kernel: vmpagebootstrap: 253764 free pages
    Oct 8 20:25:22 localhost kernel: migtable_maxdispl = 68
    Oct 8 20:25:22 localhost kernel: IOKit Component Version 7.9:
    Oct 8 20:25:22 localhost kernel: Wed Mar 30 20:07:52 PST 2005; root(rcbuilder):RELEASE_PPC/iokit/RELEASE
    Oct 8 20:25:22 localhost kernel: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Oct 8 20:25:23 localhost kernel: The Regents of the University of California. All rights reserved.
    Oct 8 20:25:23 localhost kernel:
    Oct 8 20:25:23 localhost kernel: using 2621 buffer headers and 2621 cluster IO buffer headers
    Oct 8 20:25:23 localhost kernel: USBF: 22.154 AppleUSBOHCI[0x1ad5000]::start OHCI controller will be unloaded across sleep
    Oct 8 20:25:23 localhost kernel: USBF: 22.256 AppleUSBOHCI[0x1ad5800]::start OHCI controller will be unloaded across sleep
    Oct 8 20:25:23 localhost kernel: USBF: 22.264 AppleUSBOHCI[0x1aa3000]::start OHCI controller will be unloaded across sleep
    Oct 8 20:25:23 localhost kernel: USBF: 22.468 AppleUSBOHCI[0x19a6000]::start OHCI controller will be unloaded across sleep
    Oct 8 20:25:23 localhost kernel: WARNING: ATA Drive claims FLUSH CACHE EXT feature support but does not claim Extended LBA feature support
    Oct 8 20:25:23 localhost kernel: Local FireWire GUID = 0x3065ff:0xfeed01f6
    Oct 8 20:25:23 localhost kernel: Security auditing service present
    Oct 8 20:25:23 localhost kernel: BSM auditing present
    Oct 8 20:25:23 localhost kernel: From path: "/pci@f2000000/mac-io@17/ata-4@1f000/@0:9,\mach_kernel", Waiting on <dict ID="0"><key>IOPathMatch</key><string ID="1">IODeviceTree:/pci@f2000000/mac-io@17/ata-4@1f000/@0:9</string></dict>
    Oct 8 20:25:23 localhost kernel: Got boot device = IOService:/MacRISC2PE/pci@f2000000/AppleMacRiscPCI/mac-io@17/AppleKeyLargo/ata- 4@1f000/KeyLargoATA/ATADeviceNub@0/IOATABlockStorageDriver/IOATABlockStorageDevi ce/IOBlockStorageDriver/Maxtor 6Y120L0 Media/IOApplePartitionScheme/xxxxxxx (120)@x
    Oct 8 20:25:23 localhost kernel: BSD root: disk1s9, major 14, minor 12
    Oct 8 20:25:23 localhost kernel: Jettisoning kernel linker.
    Oct 8 20:25:23 localhost kernel: Resetting IOCatalogue.
    Oct 8 20:25:23 localhost kextd[87]: registering service "com.apple.KernelExtensionServer"
    Oct 8 20:25:27 localhost kernel: Matching service count = 2
    Oct 8 20:25:29 localhost kernel: NVDANV10HAL loaded and registered.
    Oct 8 20:25:31 localhost kernel: AppleRS232Serial: 0 0 AppleRS232Serial::start - returning false early, Connector or machine incorrect
    Oct 8 20:25:33 localhost kernel: ROM ndrv for NVDA,NVMac is too old (0xb690c0f5)
    Oct 8 20:25:34 localhost SystemStarter: Welcome to Macintosh.
    Oct 8 20:25:35 localhost lookupd[152]: lookupd (version 324.13) starting - Sun Oct 8 20:25:35 2006
    Oct 8 20:25:35 localhost ConsoleMessage: Starting SecurityServer
    Oct 8 20:25:35 localhost ConsoleMessage: Starting Apple Multicast DNS Responder
    Oct 8 20:25:35 localhost ConsoleMessage: Selecting SymDC Extension
    Oct 8 20:25:35 localhost ConsoleMessage: Starting kernel event agent
    Oct 8 20:25:35 localhost ConsoleMessage: Starting timed execution services
    Oct 8 20:25:35 localhost ConsoleMessage: Initializing network
    Oct 8 20:25:35 localhost kernel: UniNEnet: Ethernet address xx:xx:xx:ed:xx:f6
    Oct 8 20:25:35 localhost kernel: IOFireWireIP: FireWire address xx:xx:xx:ff:fe:ed:01:f6
    Oct 8 20:25:35 localhost configd[112]: updateConfiguration(): no preferences.
    Oct 8 20:25:36 localhost SystemStarter: Starting SecurityServer
    Oct 8 20:25:36 localhost SystemStarter: Starting Apple Multicast DNS Responder
    Oct 8 20:25:36 localhost mDNSResponder[198]: mDNSResponder-58.8.1 (Jan 31 2005 21:11:41) starting
    Oct 8 20:25:36 localhost ConsoleMessage: Checking disks
    Oct 8 20:25:36 localhost SystemStarter: Selecting SymDC Extension
    Oct 8 20:25:36 localhost SystemStarter: Starting kernel event agent
    Oct 8 20:25:36 localhost SystemStarter: Starting timed execution services
    Oct 8 20:25:36 localhost diskarbitrationd[113]: disk1s9 hfs CD921C3E-3B12-39AB-86CE-2238DA868573 xxxxxxx (120) /
    Oct 8 20:25:36 localhost diskarbitrationd[113]: disk2s0 cd9660 00000000-0000-0000-0000-000000000000 Jun 23 2004 [not mounted]
    Oct 8 20:25:36 localhost SystemStarter: Initializing network
    Oct 8 20:25:36 localhost SystemStarter: Checking disks
    Oct 8 20:25:36 localhost diskarbitrationd[113]: disk0s3 hfs xxxx-xxxx-xxxx xxxxxx (160) /Volumes/xxxxx (160)
    Oct 8 20:25:36 localhost ConsoleMessage: Starting File Deletion Tracking services
    Oct 8 20:25:36 localhost ConsoleMessage: Starting Norton Volume Assist services
    Oct 8 20:25:37 localhost kernel: NVDA,NVMac: vram [xxxx:xxxx]
    Oct 8 20:25:37 localhost SystemStarter: The "HasShadow" window property is obsolete. Use CGSSetWindowShadowAndRimParameters(cid, wid, 0.0,0.0, 0,0, CGSNoShadowStyle) to turn off the window shadow instead. Set a break-point on CGSLogMessage to find out where this property is set.
    Oct 8 20:25:37 localhost syslogd: /dev/console: Input/output error
    Oct 8 20:25:37 localhost init: kernel security level changed from 0 to 1
    Oct 8 20:25:38 localhost kernel: UniNEnet::monitorLinkStatus - Link is up at 100 Mbps - Full Duplex
    Oct 8 20:25:38 localhost DirectoryService[241]: Launched version 1.8.4 (v258.2)
    Oct 8 20:25:38 localhost loginwindow[224]: Sent launch request message to DirectoryService mach_init port
    Oct 8 20:25:41 localhost configd[112]: posting notification com.apple.system.config.network_change
    Oct 8 20:25:41 localhost configd[112]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Oct 8 20:25:41 localhost mach_init[2]: Server 0 in bootstrap d03 uid 0: "/usr/sbin/lookupd": exited as a result of signal 1 [pid 152]
    Oct 8 20:25:41 localhost configd[112]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/set-hostna me
    Oct 8 20:25:45 localhost netinfod local[142]: unable to bind to parent - RPC: Timed out
    Oct 8 20:25:49 localhost lookupd[252]: lookupd (version 324.13) starting - Sun Oct 8 20:25:49 2006
    Oct 8 20:25:49 localhost ConsoleMessage: Starting network time synchronization
    Oct 8 20:25:49 localhost ntpdate[261]: ntpdate [email protected] Fri Sep 12 18:30:10 PDT 2003 (1)
    Oct 8 20:25:49 localhost ConsoleMessage: Loading Shared IP extension
    Oct 8 20:25:50 localhost mach_init[2]: Server 0 in bootstrap d03 uid 0: "/usr/libexec/fix_prebinding": exited with non-zero status 1 [pid 305]
    Oct 8 20:25:50 localhost ntpdate[261]: step time server 17.254.0.26 offset 0.413609 sec
    Oct 8 20:25:50 localhost ConsoleMessage: Starting network file system
    Oct 8 20:25:50 localhost ntpd[321]: ntpd [email protected] Fri Sep 12 18:30:03 PDT 2003 (1)
    Oct 8 20:25:50 localhost ntpd[321]: precision = 8 usec
    Oct 8 20:25:50 localhost ConsoleMessage: Starting printing services
    Oct 8 20:25:51 localhost NUMCompatibilityCheck[303]: OS version 0790 accepted as okay.
    Oct 8 20:25:51 localhost automount[341]: automount version 57
    Oct 8 20:25:51 localhost automount[347]: automount version 57
    Oct 8 20:25:52 localhost set-hostname[360]: setting hostname to localhost
    Oct 8 20:25:55 localhost ConsoleMessage: Loading IP Firewall extension
    Oct 8 20:25:55 localhost SystemStarter: Loading IP Firewall extension
    Oct 8 20:25:56 localhost SystemStarter: Waiting for Network extensions
    Oct 8 20:25:57 localhost kernel: IP packet filtering initialized, divert enabled, rule-based forwarding enabled, default to accept, logging disabled
    Oct 8 20:25:57 localhost kernel: IPv6 packet filtering initialized, default to accept, logging disabled
    Oct 8 20:25:57 localhost kernel: IP firewall loaded
    Oct 8 20:25:57 localhost ConsoleMessage: Starting internet services
    Oct 8 20:25:57 localhost SystemStarter: Starting internet services
    Oct 8 20:25:57 localhost xinetd[382]: 382 {init_services} no services. Exiting...
    Oct 8 20:25:59 localhost diskarbitrationd[113]: disk2s0 xxxxx 00000000-0000-0000-0000-000000000000 Jun 23 2004 /Volumes/Jun 23 2004
    Oct 8 20:26:02 localhost SystemStarter: Waiting for Printing Services
    Oct 8 20:26:35 localhost last message repeated 11 times
    Oct 8 20:26:44 localhost last message repeated 3 times
    Oct 8 20:26:44 localhost SystemStarter: Startup complete.
    Oct 8 20:26:51 localhost crontab[424]: (root) LIST (xxxxx)
    Oct 8 20:26:51 localhost NortonMissedTask - Child #1[425]: About to launch child 1
    Oct 8 20:26:51 localhost /Library/Application Support/Norton Solutions Support/Scheduler/schedLauncher[425]: launch for id = 0 event = oapp result = 0
    Oct 8 20:30:39 localhost Norton Volume Assist[236]: Beginning volume snapshot on 'xxxxxxx (120)'.
    Oct 8 20:30:39 localhost Norton Volume Assist[236]: Saving low level disk info for 'xxxxxx (120)'.
    Oct 8 20:30:39 localhost Norton Volume Assist[236]: Saving HFS Plus information for 'xxxxxxx (120)'.
    Oct 8 20:30:46 localhost Norton Volume Assist[236]: Saving wrapper information for 'xxxxxxxx (120)'.
    Oct 8 20:30:47 localhost Norton Volume Assist[236]: Finished saving 'xxxxxxx (120)'.
    Oct 8 20:30:47 localhost Norton Volume Assist[236]: Beginning volume snapshot on 'xxxxxxxx (160)'.
    Oct 8 20:30:47 localhost Norton Volume Assist[236]: Saving low level disk info for 'xxxxxxxx (160)'.
    Oct 8 20:30:47 localhost Norton Volume Assist[236]: Saving HFS Plus information for 'xxxxxxxxxxx (160)'.
    Oct 8 20:30:48 localhost Norton Volume Assist[236]: Finished saving 'xxxxxxxxx (160)'.
    Oct 8 20:31:49 localhost /Applications/Safari.app/Contents/MacOS/Safari: * Warning: ATSUSetFontFallbacks has been deprecated. Use ATSUFontFallbacks objects instead. *
    Oct 8 20:55:15 localhost /Applications/Safari.app/Contents/MacOS/Safari: * Warning: ATSUMeasureText has been deprecated. Use ATSUGetUnjustifiedBounds instead. *
    ----- at this point I tried PowerPoint again ----------
    there were no more entries when I tried to open PowerPoint.

  • 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

  • ITunes library not in default location doesn't show up as shared library

    My iTunes library will not show up on my network as a shared library. It is not in the default location for Windows (Documents and Settings\<user>\My Documents\My Music\iTunes). I can find no reference anywhere that this should prevent a library from being seen by other iTunes users, yet that seems to be the case.
    I have two other iTunes libraries on computers on my local network. Both show up on each other's machines, so this isn't a firewall issue. All my machines are running the same level of Windows XP Pro.
    On one machine, I actually created a library in another location, then shared it. It was not visible. Once I recreated the library in the default location, it was again visible.
    Does anyone have a any ideas how I can troubleshoot this? I really don't want to copy/move what is now a very large library and there's nothing to indicate that this shouldn't work.
    Thanks!
    Michael Greis

    Normally all you need to do is copy the entire iTunes folder from <User's Music> on one computer to <User's Music> on the other. If you've made things more complicated see make a split library portable.
    tt2

Maybe you are looking for

  • Problem during installation of Integration (SAP BO 2007) with CLUSTER

    I've a problem during the installation of SAP BO Integration version 2007 SP00 PL15. The InstallShield Wizard make a test to connection to SQL Server database SBO-COMMON and the test have a negative result: "Unable to connect to database; verify data

  • Image gallery approach for additional details and add to cart option?

    With efficiency and minimalist downloads for smartphone users I would appreciate advice on a product image gallery. Currently I have an intro page and other simple information pages. My gallery pages ( four distinct pages for different leather goods)

  • Java web start and xforms

    Hi, I've written an application which uses Xforms to fill in and save a set of fields to a file and then uses an Xforms submission to launch a java web start application which reads in the saved data. This approach allows me to provide a simple forms

  • ORA-31011: XML parsing failed

    Hi I am on client version 9.2.0.4 and try to test the following query select XMLELEMENT("DATE", sysdate) from dual; I am getting the error ORA-31011:XML parsing failed Can anybody suggest a solution? Thanks for your reply in advance Murali

  • Web-based BPC

    Hi, Can BPC meet the below requirement? If yes, are there any difference between BPC 7.NW and BPC 7.0 w.r.t the below requirement? Requirement - "The system shall be web-based and running on open standards.  It shall not require any client software i