WL Builder 8.1 opening existing descriptor

Hello,
I have an existing weblogic-cmp-rdbms-jar.xml that is being generated by xdoclet.
Is there any way to open the exploded ejb-jar folder and include the existing
weblogic-cmp-rdbms-jar.xml when WL Builder opens the exploded folder, but doesn't
include the exisitng weblogic descriptors just the ejb-jar.xml. I have all the
descriptors in the right place also.
Thanks,
Philip

Hi,
"P Dunham" <[email protected]> wrote in message
news:[email protected]..
I have an existing weblogic-cmp-rdbms-jar.xml that is being generated byxdoclet.
Is there any way to open the exploded ejb-jar folder and include theexisting
weblogic-cmp-rdbms-jar.xml when WL Builder opens the exploded folder, butdoesn't
include the exisitng weblogic descriptors just the ejb-jar.xml. I have allthe
descriptors in the right place also.You just can copy weblogic-cmp-rdbms-jar.xml over to the exploded dir.
Regards,
Slava Imeshev

Similar Messages

  • Encore CS5 won't open existing or new project

    I had Encore CS5 on a mac crash while transcoding for a build, and now regardless of whether I choose the "open existing" or "create new" from the splash screen, the app crashes and gives the error [/Lassi/Main/Transcode/build/build/mac/../../../src/AMEPresetProber.cpp-265].  Are there any options other than re-installing from the original discs and doing all the updates?

    I would try the preferences reset etc.
    Troubleshoot system errors and freezes | Adobe software on Mac OS 10.x
    http://kb2.adobe.com/cps/824/cpsid_82414.html

  • Oracle instance running on a system with low open file descriptor

    Hello.
    We have 10.1.0.4 on SuSE 9 on x86 64bit Sun servers.
    We have databases that if started manually come up without the warning, but if started via a shell script scheduled through a crontab start up with this warning: "Oracle instance running on a system with low open file descriptor".
    My understanding is that it has to do with OS ulimit. it appears that non-interactive shell (crontab) does not set the nofiles at 65536.
    All our system are set up exactly the same way. The problem is, though, that some systems do not report the warning even when started non-interactively.
    My question is this: assuming my nofiles ulimit is in fact too low on all systems, why would some systems report the warning and others would not? Is there anything database specific the instance looks for when it starts, such as the number of datafiles in the database, instance memory size, etc..., which would make the instance warn in some cases but not the others?
    Thank You
    Boris

    Thank You Satish.
    This is a good reference and we may end up looking into the patch bundle associated with the bug.
    But does anyone have any idea why the systems that are set up the same exact way would warn on systems and not on others?
    Also, the Metalink note talks about init.crsd. I have not build an association between this inconsistency and RAC.
    What I do see is that if we start up our database non-interactively (where ulimit -n resolves to 1024, instead of 65536) the warning is generated, in some cases.
    Perhaps, the 1024 is too low. But then my question is why would Oracle think it is too low only on some servers and not all?
    Boris

  • Build.xml does not exist!

    Hi ,
    I'm doing the converter program (EJB) from J2EE1.4 Tutorial. I installed J2EE1.4 already. I copied converter programs to different directory, not the same dir like tutorial. When I type-- c:\sun\appserver\bin> asant build.xml, it shows build.xml does not exist. I copied build.xml to the same dir of converter programs.
    (1) Do I need to install ANT ??
    (2) What else I need to do?
    Thanks
    Emily

    Yes you need ANT installed to use it, but it would seem you have it installed. Make sure you are running ANT in the same directory as the build.xml file. At least, that's the way I've always done/seen it.

  • How can I choose a font besides Myriad Pro as default when opening existing PDFs in Illustrator?

    I already know how to do this for new documents.
    But I work with PDFs generated in AutoCAD.
    When opening these files in Illustrator, the default font is always set to Myriad Pro.
    How can I substitute my desired font for Myriad when opening EXISTING files, short of copy/pasting into a new file? That workaround is just as time-consuming as resetting the font every time I work on a new document.
    Illustrator has to be referencing something when defaulting to this font. It seems unbelievable that this setting cannot be altered.
    Any ideas out there?

    We get autocad dies from a variety of sources, quite often the font is .txt which susbtitutes to myriad. I use find font  to substitue myriad to arial.
    Since no doucment is open, changing the New document profiles does not help to get rid of Myriad.
    You can record an action for this and set a hot key. The action is pretty fast

  • Error by compiling yacy: Target "build-jar" does not exist

    Hello
    I am trying to compile yacy by using this PKGBUILD (based in this one: http://aur.archlinux.org/packages.php?ID=14464):
    pkgname=yacy-svn
    pkgver=7387
    pkgrel=1
    pkgdesc="Peer to peer searchengine"
    arch=(i686 x86_64)
    url="http://yacy.net/"
    license="GPL"
    depends=('java-runtime' 'sudo')
    #depends=('jre' 'sudo')
    #makedepends=('jdk' 'apache-ant' 'subversion')
    makedepends=('apache-ant' 'java-environment')
    conflicts=(yacy)
    replaces=()
    provoids=(yacy)
    install=yacy.install
    source=()
    md5sum=()
    _svntrunk=svn://svn.berlios.de/yacy/trunk/
    _svnmod=yacy
    build() {
    cd $startdir/src/
    msg "Checking out svn-tree..."
    svn co -r $pkgver $_svntrunk $_svnmod || return 1
    cd $startdir/src/yacy/
    msg "Create working directory"
    cp -r $startdir/src/yacy $startdir/src/yacy-work
    rm -rf $(find "$startdir/src/yacy-work" -type d -name ".svn" -print)
    # svn-file, that buildscript can determine revision
    mkdir -p $startdir/src/yacy-work/.svn/
    cp $startdir/src/yacy/.svn/entries $startdir/src/yacy-work/.svn/entries
    cd $startdir/src/yacy-work/
    msg "compile and copy files..."
    ant build-jar installonlinux -DDESTDIR=$startdir/pkg || return 1
    mkdir -p $startdir/pkg/usr/share/java/yacy/
    cp lib/*.jar $startdir/pkg/usr/share/java/yacy/
    cp libx/*.jar $startdir/pkg/usr/share/java/yacy/
    mkdir -p $startdir/pkg/etc/rc.d
    m4 -DArchLinux $startdir/src/yacy/addon/yacyInit.m4 >yacy.init || return 1
    install -Dm755 yacy.init $startdir/pkg/etc/rc.d/yacy
    msg "Delete working directory"
    rm -rf $startdir/src/yacy-work
    But in the process I get this error:
    Buildfile: ~/yacy/src/yacy-work/build.xml
    BUILD FAILED
    Target "build-jar" does not exist in the project "YaCy".
    I have searched information related using google but I don't find one solution.
    I think it is a java related problem. I have installed Oracle's Java Runtime Environment jre-6u23-1
    I use Archlinux x86 2.6.36-2.
    Can anyone help me please?
    Thanks in advance

    OK
    Still I can't install yacy, but I was reading the file readme.txt included in the program's tarball.
    There, says to start yacy run:
    ./startYACY.sh
    I get this terminal output:
    ****************** YaCy Web Crawler/Indexer & Search Engine *******************
    **** (C) by Michael Peter Christen, usage granted under the GPL Version 2 ****
    **** USE AT YOUR OWN RISK! Project home and releases: http://yacy.net/ ****
    ** LOG of YaCy: DATA/LOG/yacy00.log (and yacy<xx>.log) **
    ** STOP YaCy: execute stopYACY.sh and wait some seconds **
    ** GET HELP for YaCy: see http://wiki.yacy.net and http://forum.yacy.de **
    >> YaCy started as daemon process. Administration at http://localhost:8080 <<
    When I have tried to access to localhost, I get the following message:
    Error connecting to localhost. Connection refused.
    But from terminal I can ping to localhost
    Can anybody help me with any of this troubles please?
    Last edited by zuargo (2011-01-08 15:55:48)

  • Adobe Reader XI won't launch, can't download or open existing PDF files.

    Running Windows 7 and have had no trouble with PDF files until few weeks ago.  Now Adobe Reader Xi won't execute and I can't download or open existing PDF files using Adobe.  Interesting that I can open existing PDF files unsit PaintShop Pro X4 but not in Adobe.  Have unistalled and reinstalled Adobe Reader XI several times with no change in problem.

    You can try using Windows Explorer to navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement

  • Snow leopard  will no open existing files in Pages, Numbers, Appleworks etc

    I have installed Snow Leopard, after wiping the hard drive of my Mac Pro.
    I can open existing files, [ Pages, Numbers, Appleworks etc ] which display the outlines but not the text of document, although some file references and e mail address are shown in faded pale blue. Photos, .pngs display correctly. I have run full disc repair with no visible problems.
    Have reverted to OS X 10.5.8 to use the machine. Any help appreciated

    Read here >   Apple Safari 5.1 and Adobe Reader/Acrobat Advisory
    Use Preview instead.
    Right or control click a PDF file you have on the hard drive then click Get Info.
    Click the pop up button where you see: Open with
    Select Preview  (or if it's not available click "other" then navigate to the Applications folder then select Preview)
    Then click Change All

  • Hello; I am using Numbers '09 version 2.1 (436). I tried unsuccessfully to upgrade at one point. Now can't open existing documents. Message "The index.xml file is missing".

    Hello; I am using Numbers '09 version 2.1 (436). I tried unsuccessfully to upgrade at one point. Now can't open existing documents. Message "The index.xml file is missing". How can I correct this ?
    Thank you
    Tom

    I't not iWeb that got damaged but the domain file. The index.xml file is inside the domain.sites file that's located in your Users/Home/Library/Application Support/iWeb folder. Do you have a backup of that file you can revert to?  If so then do it.  Otherwise a long shot but try the following:
    close iWeb.
    delete the iWeb preference file, com.apple.iWeb.plist, that resides in your Home/Library/Preferences folder.
    go to your Home/Library/Caches/com.apple.iWeb folder and delete its contents.
    launch iWeb and try again.
    If that doesn't help continue with:
    move the domain file from your Home/Library/Application Support/iWeb folder to the Desktop.
    launch iWeb, create a new test site, save the new domain file and close iWeb.
    go to the your Home/Library/Application Support/iWeb folder and delete the new domain file.
    move your original domain file from the Desktop to the iWeb folder.
    launch iWeb and try again.
    OT

  • Cs6 opening existing file defaults to last new size created. How do I keep my file properties / size

    cs6 opening existing file defaults to last new size created. How do I keep my file properties / size the same?

    Is that all your HTML code contains?
    Where are the closing </body> and </html> tags in the end?
    Try adding this to the last lines of the file:
    </body>
    </html>
    -ST

  • I want to build android application using existing desktop dimension fla files. so for this I am resizing existing desktop dimension fla files to mobile dimension files but during resizing some files are resizing properly but most of the files the content

    problem definition:
    To build android application using existing desktop dimension fla fies , I am resizing that files to mobile dimension and publishing with air fo android 16  . In this process some fla's are not resizing properly I mean the content is not matching with stage
                      In one post I saw that by copying frames in movie clip we can adjust with stage . I did this and made an application but the swf's which are following the movieclip resized swf are going out of stage
    development tool : adobe flash professsional cc
    extension : air for android 16
    original file dimension: 800 * 600 px
    new dimension required is : 2650 * 1600 px ( to get full screen view)
                                           anyone please suggest me to solve this problem
    when I resized using copy frames in movie clip the output swf is coming with white screen . If I played with package it coming properly but the files which are following this are going out of stage
    Thanks&regards
    K.Niranjan

    problem definition:
    To build android application using existing desktop dimension fla fies , I am resizing that files to mobile dimension and publishing with air fo android 16  . In this process some fla's are not resizing properly I mean the content is not matching with stage
                      In one post I saw that by copying frames in movie clip we can adjust with stage . I did this and made an application but the swf's which are following the movieclip resized swf are going out of stage
    development tool : adobe flash professsional cc
    extension : air for android 16
    original file dimension: 800 * 600 px
    new dimension required is : 2650 * 1600 px ( to get full screen view)
                                           anyone please suggest me to solve this problem
    when I resized using copy frames in movie clip the output swf is coming with white screen . If I played with package it coming properly but the files which are following this are going out of stage
    Thanks&regards
    K.Niranjan

  • Scene Builder is now Open Source

    We're very happy to announce that Scene Builder is now open source, as a part of the OpenJFX project.
    The whole Scene Builder functionality is provided, including the SB Kit API (designed for integration of SB features into third party tools) as well as the standalone SB application.
    This code is made available under the terms of a BSD-style license, similar to JavaFX samples.
    The only part of the product which remains closed is the native packaging/installer code.
    Scene Builder source code is located in apps/scenebuilder/ in the OpenJFX repository.
    Building and running the Scene Builder application from these sources can be done either of the following ways:
    From NetBeans: open the SceneBuilderApp project and run it (you need a JDK 1.8 Java Platform configured)
    From the command line:
    $ cd SceneBuilderApp
    $ ant -Dplatforms.JDK_1.8.home=<path_to_JDK_home> run
    As usual your contribution and feedback are welcome.
    The Scene Builder team.

    Thank you for the nice feedback!
    Beyond providing SB itself, we indeed hope very much that the code will more largely be useful to the community, as a big JavaFX sample application.
    SceneBuilderKit contains the API allowing to integrate SB functionality into the GUI of a third party tool, such as an IDE.
    As you probably know, with the 2.0 release, SB code base has been deeply re-factored to make it modular such that each of the Panels (Content, Inspector, Hierarchy, etc...) can be instantiated and brought up independently of the others. So, in a nutshell, the SB Kit API allows to orchestrate the editing of an FXML document and to control the various panels.
    SceneBuilderApp contains the code of the SB standalone application. It is itself built on top of SceneBuilderKit, and will provide the all-in-one document window you are now familiar with, as well as top level menu bar, preview in a separate window, preference dialog (not quite there), about dialog, etc…

  • I just bought a new macbook pro and my CS6 migrated, but now when I open existing documents, it launches a free trial version. There doesn't appear to be a way to enter my serial number or communicate that I simply have a new computer. HELP! There is no c

    I just bought a new macbook pro and my CS6 migrated, but now when I open existing documents, it launches a free trial version. There doesn't appear to be a way to enter my serial number or communicate that I simply have a new computer. HELP! There is no customer support for this. I can't believe what a poor service company Adobe is!!

    The problem was that you migrated CS6. Unfortunately, migration doesn't work because it doesn't move all the files.
    First, you'll need to use the Adobe Cleaner Tool to remove the components that were installed:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Second, you should install a clean copy of CS6. Here is a link:
    Other downloads

  • Why can't I open items in iDVD sub menu & Open Existing project lists?

    Recently I installed *Jam Pack-Music of the World*. Since then, my iMac experienced one Kernal Panic while I was using iMovie. Later I tried to burn the movie I had been working on, iDVD got stuck at audio encoding and then quit unexpectedly a while later. When I tried to +'Open Existing project'+ in iDVD, I noticed the list of files in the *Movie folder* of the iDVD dialogue window are shaded grey and could not be opened. (They could however be opened from the *Documents foder* where they are shown as .dvdproject files.) Additionally it became clear that about 40-50 GB of storage space on the hard drive had been lost. I have also noticed that the items listed in the *iDVD sub menu* (tool bar) are also grey and cannot be opened - although if I first open a project from the documents folder these items then show black and can be opened. I've had my iMac for 18 months and had no real problems till now. I'm new to computing and at a loss as to what's happened and how to rectify it.

    I don't purport to be an expert, but since you have not gotten a response as yet, I'll give you my comment.
    If you got a Kernal Panic, your computer is in need of some maintenance. The following recipe is from one of the gurus on the iMovie formum in a different context. " Restart from your install disk (by holding down the C key as you restart), and go to Disk Utility, then repair the hard disk. Restart as normal and then repair permissions from the same utility."
    Make sure that you have enough free space on your hard drive for these programs to work -- at least 15GB and better 25GB.
    You could also try uninstalling Jam Pack-Music of the World, and see if that clears up the problem.
    Good luck.

  • Can't open existing/create new files after reinstall

    I had the trial version installed to test the software and everything was running fine until I started having some issues with my computer. So I ended up reinstalling the trial version and now I can't open existing XLF files or create new ones. Both the "new" and "open" icons are now grayed out.

    Hi,
    Issuess if Opne and new are grayed out..
    Make sure you take a fresh copy of Xcelisu and reinstall the entire application again.
    If any other issuess please let me know i am happy to help you...

Maybe you are looking for