Js library references - files missing?

Our js library listing is showing several newScale libraries, but the files themselves don't exist.
Our js library listing is showing several newScale libraries, but the files themselves don't exist. We haven't had a need for them thus far, but there might be some useful functions out there that we don't need to re-invent.
Some I have found posted on this forum, but not others . i.e. rc-mail.js, rc-select.js
Any light shed on this would be appreciated!

Alan -
I wouldn't be concerned about the "missing" JavaScript files.  They were required in previous versions of the software, but have not been used since newScale 2008.1.  Some versions of the Catalog Libraries included references to these JavaScript files erroneously.  You should, infact, simply remove the references and everything would continue to work exactly as it has been working. That's what I did in some of our RC instances that inherited this problem.

Similar Messages

  • Using Reference Files - Aperture Library still larger than file storage

    Still new to Aperture, and so far LOVE the metadata tagging functionality, but am troubled by the huge size of the Aperture library. Here's my stats so far, after a couple of days of importing, with no image management done so far other than assigning some metadata...
    # photos managed as reference files=1175
    Size of folder where reference files are stored=883MB
    Size of Aperture library (.aplibrary)=1.44GB
    My expectation would be that the ratio of Aperture library to reference file folder would be about 1/10. But 1.6/1 seems way out of whack. I selected all photos within Aperture and then selected "Manage Reference Files..." and all 1175 file references showed up. On that basis, I'm pretty confident that the jpegs aren't being copied into the Aperture library. But I cannot explain why the library continues to be 1.5+ times as large as the reference file folder.
    This seems to defeat the purpose of keeping reference files external from Aperture.
    Am I missing something, or is this to be expected? If these ratios hold, then it seems if I end up managing 10GB of photos I will incur another 15-16GB of storage requirement just for Aperture to do its thing.
    What is Aperture doing with all that hard drive storage space?

    By default, Aperture creates previews of all of your images. A preview is little more than a JPEG copy of the original. The size of these are determined by the settings in Aperture's preferences. When you're dealing with RAW images, the size of the previews are significantly smaller than the master image, but if you're working with JPEGs, then the previews can balloon the library to as large (large when you add up the thumbnails and duplicates) as the referenced files.
    You can reduce the size of the previews, or delete them and turn them off all together if you're not sharing your photos with other iLife & iWork apps from Aperture. There are some other reasons you may find them beneficial, and this article will help you determine if they are right for you:
    http://docs.info.apple.com/article.html?artnum=304499

  • Script to find missing library references

    When readline5 came out I decided to write a quick shell script to find any binary that references readline4.  Then I generalized it:
    #!/bin/bash
    # 2004/08/22 K. Piche Find missing library references.
    ifs=$IFS
    IFS=':'
    libdirs="/lib:/usr/lib:/usr/X11R6/lib:/opt/gnome/lib:/opt/qt/lib:/opt/mozilla/lib/mozilla-1.7:/opt/kde/lib"
    extras=
    # Check ELF binaries in the PATH and specified dir trees.
    for tree in $PATH $libdirs $extras
    do
    echo DIR $tree
    # Get list of files in tree.
    files=$(find $tree -type f)
    IFS=$ifs
    for i in $files
    do
    if [ `file $i | grep -c 'ELF'` -ne 0 ]; then
    # Is an ELF binary.
    if [ `ldd $i 2>/dev/null | grep -c 'not found'` -ne 0 ]; then
    # Missing lib.
    echo "$i:"
    ldd $i 2>/dev/null | grep 'not found'
    fi
    fi
    done
    done
    exit
    I successfully used it to find readline4 usage by guile and jack, and other older library references in other packages.  Hope the devs or somebody finds it useful.  And yeah it could pull the lib dirs from ld.so.conf or search the whole system but it is quick and dirty...
    PS. Without the /dev/null redirects ldd reports tons of libraries without the exec bit set.  Take it out if you want to see that stuff.

    so simple and SOOO USEFULL!!!!!!!
    thanx a lot, for this script :-)
    i detected also some more trouble:
    e.g.:
    /usr/bin/xml2ps:
    libgtkmm-2.0.so.1 => not found
    libgdkmm-2.0.so.1 => not found
    libatkmm-1.0.so.1 => not found
    libpangomm-1.0.so.1 => not found
    libglibmm-2.0.so.1 => not found
    /usr/bin/passepartout:
    libgtkmm-2.0.so.1 => not found
    libgdkmm-2.0.so.1 => not found
    libatkmm-1.0.so.1 => not found
    libpangomm-1.0.so.1 => not found
    libglibmm-2.0.so.1 => not found
    /opt/kde/bin/khangman:
    libknewstuff.so.1 => not found
    /opt/kde/bin/kpalmdoc:
    libreadline.so.4 => not found
    /opt/kde/bin/kpilot:
    libreadline.so.4 => not found
    /opt/kde/bin/kstars:
    libknewstuff.so.1 => not found
    /opt/kde/bin/klettres:
    libknewstuff.so.1 => not found
    /opt/kde/bin/kpilotDaemon:
    libreadline.so.4 => not found
    /opt/kde/bin/korganizer:
    libknewstuff.so.1 => not found
    libknewstuff.so.1 => not found
    /opt/gnome/bin/gnome-pilot-make-password:
    libreadline.so.4 => not found
    libreadline.so.4 => not found
    libreadline.so.4 => not found
    /opt/gnome/bin/gpilot-install-file:
    libreadline.so.4 => not found
    libreadline.so.4 => not found
    libreadline.so.4 => not found
    /opt/gnome/bin/gpilotd-session-wrapper:
    libreadline.so.4 => not found
    libreadline.so.4 => not found
    libreadline.so.4 => not found
    /opt/gnome/bin/ssconvert:
    libssl.so.0.9.6 => not found
    libcrypto.so.0.9.6 => not found
    /opt/gnome/bin/gnumeric:
    libssl.so.0.9.6 => not found
    libcrypto.so.0.9.6 => not found
    /opt/gnome/bin/gpilotd-control-applet:
    libreadline.so.4 => not found
    libreadline.so.4 => not found
    libreadline.so.4 => not found
    /usr/lib/xine/plugins/xineplug_inp_dvdnav.so:
    libdvdnav.so.1 => not found
    libdvdread.so.2 => not found
    libxineutils.so.0 => not found
    libxine.so.0 => not found
    /usr/lib/ruby/1.8/i686-linux/readline.so:
    libreadline.so.4 => not found
    /usr/lib/newpg/gpg-protect-tool:
    libgcrypt.so.1 => not found
    /usr/lib/avifile-0.7/xvid.so:
    libxvidcore.so.2 => not found
    /usr/lib/libpisock.so.8.0.5:
    libreadline.so.4 => not found
    -> for sure broken:
    jack, pilot-link, gnumeric, ruby, passepartout, xine-dvdnav,  kde (games, edu, pim, maybe lib and others)
    the script is still running - takes long to check 5GB of bins :-)
    EDIT: finished - list updated - going to post bugs

  • New to Aperture - Library vs Reference files

    I'm coming to Aperture from Picasa, which replicated and managed my folder structure as it appeared on my hard-disc, which was nice.
    Am I better off importing images into my Aperture Library, or managing the folder structure how I want and just having Aperture work with the reference files?
    I'm not a pro-photographer, just a pretty basic user, so will not have loads of large raw image files. What's the benefit of using the Library over using Reference files? I've tried Google-ing but everything I've found just addresses folder/project management within Aperture.
    If I use the reference option, can Aperture manage my photos on my hard-drive in the same way Picasa could (ie if I moved a photo from one folder to another in Picasa, it also moved on my drive)
    Thanks

    Hi TxH,
    Welcome to the user-supported Aperture discussion group.
    I'm coming to Aperture from Picasa, which replicated and managed my folder structure as it appeared on my hard-disc, which was nice.
    If you use Aperture for even a little while, you'll realize that the structure of your photos in your hard drive is not as important as how you organize them in Aperture, especially when you start making albums, which merely contain a pointer to the image in your library. You can have a picture in many albums, but your library (and therefore hard drive) only contains it once.
    Am I better off importing images into my Aperture Library, or managing the folder structure how I want and just having Aperture work with the reference files?
    That's a matter of opinion. Some people are very opinionated that using referenced files is the only way to go, some are opinionated the other way. Sometimes there really is a better solution for you depending on what you are doing.
    What's the benefit of using the Library over using Reference files? I
    You will find loads of conversation if you search this discussion group for "managed" and "referenced".
    You will always have a library. Your managed pictures will live in the library and you won't have direct access to them through Finder (and you should not want direct access to them for the most part). Your referenced pictures live wherever you tell Aperture to take them from, but the bookkeeping parts of the Aperture library/database are still stored in the Aperture library package.
    Benefits of managed include: you don't worry about where the files are; Aperture backs them up if you use its vaults; they are always with you.
    Benefits of referenced include: you know exactly where the files are; your Aperture library is significantly smaller than if all your photos were in the library; you can find them with Finder if that's important to you (and a lot of people think it's important to them but then realize they only think that because they're really not using Aperture to its full potential).
    If I use the reference option, can Aperture manage my photos on my hard-drive in the same way Picasa could (ie if I moved a photo from one folder to another in Picasa, it also moved on my drive)
    Yes. I've never used Picasa, but Aperture allows you to "relocate" your photos in order to manage their external directory structure. You can also choose to "relocate" a managed master to make it referenced.
    nathan

  • 1 song file missing from my library. Sync & recovery questions.

    I found 1 song missing from my iTunes library. File recovery software doesn't find it. It's still on the iPod.
    If I do a sync, will I loose it from the iPod too? It's still present in my iTunes song list, but shows up as not found.
    After I've done a sync IIRC I can put the iPod into hard-drive mode. Will that let me copy the song to my PC?
    Since it's only for a $.99 song, I'd gladly use a free 3rd party application, but only want to buy software for this sort of thing if I have a bigger need.

    I've never had the need to do it myself but, from what I've heard, the aggravation is worth more than 99 cents. However,
    *Courtesy of PT...*
    Copying from iPod to Computer threads...
    http://discussions.apple.com/thread.jspa?messageID=5044027&#5044027
    http://discussions.apple.com/thread.jspa?threadID=893334&tstart=0
    http://discussions.apple.com/thread.jspa?messageID=797432&#797432
    Also these useful internet articles...
    http://www.engadget.com/2004/11/02/how-to-get-music-off-your-ipod/
    http://playlistmag.com/secrets/2006/12/twowaystreet20/index.php
    http://playlistmag.com/help/2005/01/2waystreet/

  • Adobe reader file preview type library reference

    Where I will may see adobe reader file preview type library reference?

    I would guess that this interface is registered and used by Windows to generate previews for Explorer. It is not supported or documented, but if it does that, it won't have anything to do with text extraction.
    Adobe Reader has a supported interface for displaying in a window.
    For a text extraction API you'd want Acrobat, which would allow you via VBA to run JavaScript to get text quads.
    Note that this is not for server use. If you want server text extraction consider Adobe's PDF iFilter. This is unusual in that it is supported but is not in the SDK; Microsoft define the interfaces to iFilters, not Adobe.
    If you have further questions about Acrobat or Reader development, I'd recommend that you post in the Acrobat SDK forum, to reach the right experts.

  • 10.1.4 library file missing for help and update not working

    Just updated to AR 10.1.4 and everything seems to be working except the help and update functions are not working. I get the message that the library help file is missing. I uninstalled and reinstalled in both FF15 anf IE9 with the same result and I installed from both Adobe and FileHippo with the same result. Anybody have any suggestions?

    On the AR 10.1.4 tool bar menu click the "Help" item and the drop down screen shows a number of items to select from. If I click on "Adobe Reader X Help" I get a message saying "the library file is missing and I should reinstall". As for "check for updates" nothing happens. I've uninstalled and reinstalled AR 10.1.4 from two different browsers, IE9 and FF 15 with no difference. I'm using Vista 32 bit OS.

  • HP preloaded software error 1311 for Adobe XI application library or file for Help missing

    Operating system HP2011s/x, Pavilion P7-1026b, PC Desk/ Windows 7 w/64 bits w/PC bundle.  Preloaded Adobe XI software from HP not working properly the pop-up errors are as follows:
    (1) Error 1311  (2) verify operation failure (3) a required application library or file for Help is missing. Please, need help in correcting.  Thanks.

    Please download and install the free Abode Reader XI from Adode's website by clicking on this "Adobe Reader XI (11.0.03) Download" link. This will provide you with a slightly newer version than what was previously install on your computer.
    Additionally, it is in your best interest to create your personal set of HP Recovery Discs before a major disaster occurs with your computer. Please see "Creating Recovery Discs or Saving a Recovery Image to a USB Flash Drive (Windows 7)" for instructions on create either Recovery Discs or USB Recovery media, if given the option.
    Please send KUDOS
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • How to reference a VI that is in a library (llb file)

    Hi,
    I was wondering, is there a way to open a reference to a VI that is in a library .llb file?
    thanks

    It's just a path, so:
    ./MyLib.llb/MyVI.vi
    Felix
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

  • HELLLLP!! I was trying to save my completed project to an external hard drive and I did it improperly. (I just wanted the final edit, not any of the reference files...) So I deleted it...and I guess went to far. Now my project is missing!  Tips??

    I duplicated it impropelry. I didn't want to duplicate all the reference files etc... I deleted it...and perhaps went too far in deleting other items. Now my project is gone from my timeline. Is there anything I can do to retrieve my work?

    Yes, the Old Master file has a folder for each year where I find all photos from that specific year. I am attaching a screen shot of the file.
    In the meantime i have managed to download all photos (it did not download any video files though in mpg, avi, 3gp, m4v,mp4 and mov format) to a new iphoto library. Unfortunately the photos are quite mixed and often doubled up. I ma considering to purchase iphoto library which checks all duplicates in iphoto. this will save me a lot of time. What do you think?

  • Can renamed reference files be reconnected?

    I think I may have shot myself in the foot, but I'll ask the question: I had begun editing referenced files in a project when I noticed there was a significant time skew between the two cameras that were used. I eventually used ExifTool to successfully tweak all of the internal dates but then renamed the files according to the capture date as is my norm. That of course disconnected the Aperture library references to the edited files.
    I want to reconnect the Aperture file references to the renamed files, but the "Manage Referenced Files" doesn't seem to work as I think I'd like: It shows the disconnected images in the Aperture library, but then I can't seem to connect these to new file names. The "Reconnect" button is greyed out.
    Am I hooped and have to go back to square one, or is there some reconnection procedure that I'm missing?
    Thanks// Chris Freeborn

    It may have been the EXIF tweaks that caused the problem. Aperture checksums the images, so if the checksum doesn't match, it could refuse to reconnect.
    I experimented with changing the name of referenced files a long time ago, and Aperture had no problem consolidating and relocating them. However I didn't attempt to reconnect them.
    This may help you recover the images:
    http://www.bagelturf.com/aparticles/ref/refrec/index.html
    To change times safely, try Timeature.

  • Input file missing required key: [Distribution] GUID.

    Hi,
    I freshly converted a .bld (LV7.1) file to .lvproj (LV11) through Tools > Convert Build Script. It ran well.
    Opening the .lvproj, I then successfully build the .exe but failed on the Installer :
    Visit the Request Support page at ni.com/ask to learn more about resolving this problem. Use the following information as a reference:
    CDK_Build_Invoke.vi.ProxyCaller >> CDK_Build_Invoke.vi >> CDK_Engine_Main.vi >> IB_MSI.lvclass:Build.vi >> IB_MSI.lvclass:Engine_Build.vi >> NI_MDF.lvlib:MDFBuildDist_Build.vi
    Loading product deployment information
    Adding files to installer
    Validating...
    Copying files...
    Scanning files...
    Updating files...
    Build complete successfully.
    Done adding files
    Preparing to build deployment
    Copying products from distributions
    Building deployment
    Copying setup files
    Setting merged database information
    Setting product information
    Setting developer part information
    Starting final build
    *** Error: An internal tool or library returned an error. (Error code -21)
    Error Messages
    Input file missing required key: [Distribution] GUID.
    *** Error Details:
    Error in MDF API function: _MDFBuildDist_Build
    Error List
    .\InputParser.cpp(5420): InstallerError 105
    Input file missing required key: [Distribution] GUID.
    <No Debug Message>
    *** End Error Report
    Done building deployment
    Any idea ?
    Many thanks

    Not too sure... Is your installer supposed to create any keys in the registry?
    Anyway, open your installer's build specification and check all the sections, I would suggest to bring specific attention to the following sections :
    - "Source Files", because here, all the "extra files you want you installer to place in specific format have to be included/referenced in the project (.lvproj)
    - "Registry", that's only if the installer is supposed to create keys in the registry
    - "Additional installers", make sure you only tick the boyes corresponding to drivers/module that are required for you application and also make sure that when building, the installer you used to install those drivers/modules on your computer are still available.
    Hope this helps
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • When I try to open Itunes it says Library.itl file is locked, on a locked disk, or you do not have permission for this file.  How do I open?  What did my Kid do?

    My daughter added more storage to her cloud while i was at work.  When I came home and tried to get onto Itunes I got the message,'library.itl file is locked, on a locked disk, or you do not have write permission for this file.  I tried uninstalling Itunes on my computer and reinstalled.  After I tried to get in and the same message came up.  I can get onto Itunes on different computers except one.  Any Ideas?

    Hello MF7642,
    Thank you for contacting Apple Support Communities.
    You can use this article to troubleshoot your issues with iTunes.
    iTunes: Missing folder or incorrect permissions may prevent authorization
    http://support.apple.com/kb/TS1277
    Regards,
    Jeff D.

  • My iPOD comes up with 13019 error message file missing please help!

    My iPOD Nano will not sync and comes up with an error message 13019 file missing can you pelase help?

    Try rebuilding your iTunes Library:
    (This will cause all devices to see your library as a "new" library)
    1. Open iTunes.
    2. File>LIbrary>Organize Library: Consolidate Files.
    -This process may take some time.
    3. Quit iTunes.
    4. Browse to your iTunes Folder.
    5. Drag the files to the desktop, but leave the folders in place (folders will be iTunes Media, Album Artwork, Previous iTunes Libraries)
    6. Open iTunes.
    7. File>Library>Import Playlist.
    8. Direct iTunes to import the "iTunes Library.xml" that is sitting on your desktop.
    9. Once the process is complete attempt to resync your iPod.
    EE

  • Error while processing library references. Unresolved application library r

    Hi Experts,
    When i try to deploy .ear file in weblogic 11g server (linux 64-bit redhat OEL 5.46), I am facing following error.
    Please help me out to resolve it.
    Eror Message
    <May 6, 2011 7:32:40 PM IST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1304690560384' for task '8'. Error is: 'weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: org.apache.commons.httpclient, exact-match: false].'
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: org.apache.commons.httpclient, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:613)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:184)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:58)
    Truncated. see log file for complete stacktrace
    >
    <May 6, 2011 7:44:58 PM IST> <Alert> <WebLogicServer> <BEA-000396> <Server shutdown has been requested by weblogic>
    <May 6, 2011 7:44:58 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SUSPENDING>
    [JCABindingManager] : This operation is not supported for JCA based MDB
    <May 6, 2011 7:45:00 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <May 6, 2011 7:45:00 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[3]" listening on fe80:0:0:0:be30:5bff:fed3:5db0:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[1]" listening on 10.108.26.246:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[7]" listening on 0:0:0:0:0:0:0:1:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[6]" listening on 127.0.0.1:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[2]" listening on fe80:0:0:0:200:ff:fe00:0:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default" listening on 192.168.122.1:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[4]" listening on fe80:0:0:0:fcff:ffff:feff:ffff:8001 was shutdown.>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:05 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    [TopLink Info]: 2011.05.06 19:45:06.235--ServerSession(255740887)--deferred_session logout successful
    [TopLink Info]: 2011.05.06 19:45:06.236--ServerSession(256131953)--tracking_session logout successful
    <May 6, 2011 7:45:06 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:06 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:06 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:09 PM> <FINEST> <NodeManager> <Waiting for the process to die: 20074>
    <May 6, 2011 7:45:09 PM> <INFO> <NodeManager> <Server was shut down normally>
    <May 6, 2011 7:45:09 PM> <FINEST> <NodeManager> <runMonitor returned, setting finished=true and notifying waiters>
    Thanks
    Phani

    George,
    To solve my problemn I uninstall my JDev, remove all folders (Oracle_home, and JDeveloper folder in users - app data - roaming). Install again, and get Webcenter Bundle from Help - Updates. Before a uninstall I was using a bundle that a have here in my machine.
    Thks

Maybe you are looking for

  • On Windows Xp machines, can connect to router but not internet

    Yesterday, I bought an Airport Extreme to replace my current router. I setup my network successfully and my macbook can connect fine. However, I have 2 Microsoft XP machines that can connect to the router (it sees it and connects), but I can't access

  • While transfer material it shoul cliam different G\L Account

    Hi.. The requirment is, when they transfer from one plant to another plant( Free plant). They want the value to go to Claims G/L account rather then Inventory. Please suggest Regards SAM

  • Solaris installation trouble

    I am new to Solaris. I downloaded the 4 CD set from Sun (dated 1/06) and installed it over another Solaris install (I had a DVD dated 3/05). Now JDS doesn't work at all, it either segfaults or crashes the whole system (I don't know where to find the

  • Export Settings for sending a video to an email (NOT To Facebook etc.)

    What settings should I use to send a short (4 minutes) video across the internet as an attachment.?  I don't want to upload to a public site.  I am sending to an email address.  I have tried exporting to windows media, but the video has the jagged li

  • Microphone problem with Creative X-fi Extreme Mu

    Hi i have problem with my microphone After system restart microphone is working 30 minutes (or smth like that time) and then immediatly turns off and start to crackling http://rapidshare.com/files/42503049/mic.wav.html here's the sound from my microp