OSB 11g How to import existing project to Configuration project ?

Environment: latest OSB 11g + WLS + OOPE , Win 7
When an exiisting OSB Eclipse project is imported to Configuration project comes a message
"Path for project must have only one segment"
What is the solutiion to this problem ?

One solution
Exit Eclipse
Edit manually file <Configuration project> \.settings\com.bea.alsb.core.prefs\container.referenced.projects
Start Eclipse

Similar Messages

  • How to import existing jsp project into jdeveloper

    can someone help me how to import existing jsp project into jdeveloper?
    can give me step by step to import..cause i am new for jdeveloper..
    thank you very much

    Well there are two options - if you have a WAR file with the code in it, then you can use the file->import WAR.
    Or you can use the new->Project from source code.
    Note that you'll probably need to do some library settings and some directory setting after that.
    Have a look at this demo for basic steps:
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/NBtoJDevProject/NBtoJDevProject.html

  • How to import existing projects into JDeveloper 11g

    I am trying to work with JDeveloper for my application and want to know whether it is possible to import existing projects into the work space in JDeveloper. I am currently working with eclipse IDE and this feature is available in it. How can I connect to clear case from JDeveloper? In eclipse it is very easy to connect to clear case with a plugin installed and check out, check in files from the source control. Any help is greatly appreciated.

    The basic way to import code is to use the "New->Projects->Project from existing code" or "project from WAR" dialogs to create your project.
    You then need to do some tweaking in the project properties->Content (and sub nodes such as resources and Web content).
    And also set the correct JARs/Libraries in the project properties.
    You can use the help->check for update to download the extension to JDeveloper that will let you integrate with Clearcase to do version management.
    This how-to might help you with your migration:
    http://www.oracle.com/technology/products/jdev/howtos/1013/w4wljdev/workshopandjdev.html

  • How to import existing eclipse Project to JDeveloper

    Hi,
         previously I used to use Eclipse IDE. I have started to use Oracle JDeveloper 11.1.2.4.0 now. How can I import my existing Eclipse projects to JDeveloper? Please Note, I already have tried following options -
    "Importing Existing Files into a New JDeveloper Project" from here - Working with Applications and Projects.
    But, When I import the source files from existing Eclipse Projects to JDeveloper, I am not able to crease similar directory structure in the JDeveloper(in Application Navigator). As a result, I can not use my existing ANT build script to build my project[Though JDeveloper build my project,but I want to use manual ANT build.]
    Moreover I don't want to change my existing directory structure as I am working on and existing project and I need to synchronize to my repository(Apache SVN).
    Can any one help me in this - How can I import existing Eclipse Project to JDeveloper? Without any significant change in directory structure.
    Best Regards
    Chandramoulee

    Well there are two options - if you have a WAR file with the code in it, then you can use the file->import WAR.
    Or you can use the new->Project from source code.
    Note that you'll probably need to do some library settings and some directory setting after that.
    Have a look at this demo for basic steps:
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/NBtoJDevProject/NBtoJDevProject.html

  • How to import existing ColdFusion project in the eclipse.

    Hi All,
    I have exiting ColdFusion project in my local drive and I want to import it in Eclipse. I already have CFEclipse installed in Eclipse. Is there any step by step instruction to do this?
    Thanks

    You should be able to copy the folder into your Eclipse workspace folder, then go to File--New--Project and select CFML Project (under CFEclipse).
    If it is an existing Eclipse project, e.g. there is already a .project file in the folder, you can follow the steps at Importing Existing Projects.

  • How to import existing BPM project in jDeveloper

    Hi,
    I am new to oracle BPM.
    I have imported oracle BPM+SOA project in jedeveloper using (file->import->soa archive into soa project). I am able to see SOA composite in jdeveloper but not BPM processes. instead of BPM process it showing "unknown project object"
    I have also used other way like unzip jar file and copy paste all files from jar to jedeveloper project but no use.
    Restarted jdeveloper but still showing error.
    please help me.

    Well there are two options - if you have a WAR file with the code in it, then you can use the file->import WAR.
    Or you can use the new->Project from source code.
    Note that you'll probably need to do some library settings and some directory setting after that.
    Have a look at this demo for basic steps:
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/NBtoJDevProject/NBtoJDevProject.html

  • How to import existing dll in C/C++ code

    Hi guys, I'm new here..I'm still student and do training at one company...my boss ask me to do integration java with C/C++ using JNI...
    I very understanding how to do JNI tools for HelloWorld because all tutorials in internet teach me how to create dll for native code..but the problems came when my boss ask me to make with existing API...and i'm tried to search tutorial for existing dll but i can't find...my boss asked me to not use callback function in code...just put null value only...
    so, I will give you guys the code that related with my project...hope you guy can teach me as beginner..first of all, i already create java file that I named it as TestMMMReaderHighLevelAPI3.java where its coding likes below:
    public class TestMMMReaderHighLevelAPI3{
         static{
                   System.out.println("inside static block");               
                   try{
                        //System.loadLibrary("MMMReaderHighLevelAPI"); //can't find dependent library -maybe ini bukan native
                                System.loadLibrary("MMMReader_Initialise_L3"); //no this file in java.library.path -have problem when to rebuild all     
                                System.out.println("Loaded MMMReaderHighLevelAPI DLL");
                   }catch(UnsatisfiedLinkError e){
                        System.out.println("Couldn't load MMMReaderHighLevelAPI DLL");
                        System.out.println(e.getMessage());
         public static void main(String[] args){
              TestMMMReaderHighLevelAPI3 t = new TestMMMReaderHighLevelAPI3();
              try{
                   t.MMMReader_Initialise_L3();
                   System.out.println("MMMReaderHighLevelAPI DLL method invoked!");
              }catch(UnsatisfiedLinkError e){
                   System.out.println("Couldn't Access MMMReaderHighLevelAPI DLL method");
                   System.out.println(e + "");
            public native long MMMReader_Initialise_L3();
    }the code above mention two dll which is MMMReaderHighLevelAPI and MMMReader_Initialise_L3 where its existing API and non-existing dll respectively...
    after i compile this java file, i create header by using command javah -jni TestMMMReaderHighLevelAPI3
    the header file is likes below (TestMMMReaderHighLevelAPI3.h) :
    /* DO NOT EDIT THIS FILE - it is machine generated */
    #include <jni.h>
    /* Header for class TestMMMReaderHighLevelAPI3 */
    #ifndef _Included_TestMMMReaderHighLevelAPI3
    #define _Included_TestMMMReaderHighLevelAPI3
    #ifdef __cplusplus
    extern "C" {
    #endif
    * Class:     TestMMMReaderHighLevelAPI3
    * Method:    MMMReader_Initialise_L3
    * Signature: ()J
    JNIEXPORT jlong JNICALL Java_TestMMMReaderHighLevelAPI3_MMMReader_1Initialise_1L3
      (JNIEnv *, jobject);
    #ifdef __cplusplus
    #endif
    #endifNow, in my directory have 3 files which is TestMMMReaderHighLevelAPI3.java, TestMMMReaderHighLevelAPI3.class and TestMMMReaderHighLevelAPI3.h.....then I try to create MMMReader_Initialise_L3.c.....and for your information, I have problem at this area since I'm more to Java guy...at this file, I tried to call existing API which named MMMReaderHighLevelAPI where in this API contained MMMReader_Initialise function inside it....I tried to call this function by MMMReader_Initialise_L3.c but I dont know to do...
    #include <jni.h>
    #include <stdio.h>
    #include "TestMMMReaderHighLevelAPI3.h"
    //#include "MMMReaderHighLevelAPI.h"
    //#include "MMMReaderHighLevelAPI.lib"
    //#include "MMMReaderHLDataCallback.h"
    //#include "MMMReaderEventCallback.h"
    //#include "MMMReaderErrorCallback.h"
    //#include "MMMReaderCertificateCallback.h"
    //is'it  MMMReaderHighLevelAPI.dll need include in cpp code
    JNIEXPORT jlong JNICALL
    Java_TestMMMReaderHighLevelAPI3_MMMReader_Initialise_L3(JNIEnv *env, jobject obj)Library "MMMReaderHighLevelAPI"
             printf("Successful");
             return;
    };i tried to rebuild all, but have problem at Java_TestMMMReaderHighLevelAPI3_MMMReader_Initialise_L3(JNIEnv *env, jobject obj)Library "MMMReaderHighLevelAPI" where two syntax are message:
    1) syntax error before "Library"
    2) [Build Error] [MMMReader_Initialise_L3.0] Error 1
    i have stuck in this part....i dont know how to call existing function in existing API under MMMReader_Initialise_L3.c....do you guys have idea to solve my problem....i repeat back, my boss want me initialise hardware machine with computer/laptop...my boss give clue, he dont want callback function..just use null....below are code for MMMReader_Initialise in MMMReaderHighLevelAPI.h:
    MMM_READER_HIGH_LEVEL_API MMMReaderErrorCode MMMReader_Initialise(
         MMMReaderHLDataCallback aDataCallback,
         MMMReaderEventCallback aEventCallback,
         MMMReaderErrorCallback aErrorCallback,
         MMMReaderCertificateCallback aCertCallback,
         bool aProcessMessages,
         bool aProcessInputMessages,
         void *aParam
    );then its came when to declare parameter for MMMReader_Initialise_L3 in native code...i have two coding to show here...and please give me what item that i need to use :
    public native long MMMReader_Initialise_L3();or
    public native long MMMReader_Initialise_L2(String a, String b, String c, String d, boolean e, boolean f, boolean g);and my last question, in System.loadLibrary(*); which dll that i need insert....either existing dll(MMMReaderHighLevelAPI) or the creating dll(MMMReader_Initialise_L3)....thats all...thank you for spend your time read my problem...i very appreciate..hope you guy can help me...
    Edited by: EJP on 12/07/2012 18:24: added {noformat}{noformat} tags: please use them.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Moderator action:
    JNIEXPORT jlong JNICALL Java_TestMMMReaderHighLevelAPI3_MMMReader_Initialise_L3(JNIEnv *env, jobject obj)Library "MMMReaderHighLevelAPI"The part after the ')' is obviously a cut and paste error. Remove it.
    If you're not a competent C or C++ programmer you shouldn't be attempting this.
    As the question is 99% off topic, and as you have shown little understanding of that, let alone the actual topic, I am now locking it.
    Edited by: EJP on 17/07/2012 18:47

  • How to import existing WLS Portal App into Workshop?

    I have searched and searched, and tried every different combination of imports, with no success.
    I have an existing EAR file, with a Portal Application, created for WebLogic. I am able to deploy it to my server, and it works fine. I would like to import into Workshop (either into a new project, or into an existing project - I've tried both ways), so I can manipulate it (basically, I need to enhance this existing Portal, and I want to use it as a starting point).
    I don't have the complete Portal Workshop directory (I would expect a .work file, and other files related to Workshop), just a deployable EAR (probably generated with Workshop).
    Anyone know how to bring the Portal into Workshop so I can work with it. The only way I can get close to it now, is to create a similar page layout, and import each component singularly then place it in the appropriate location (ie. import a jsp, and put it on the proper page, basically rebuild the app by hand). There has to be a better way - especially since this app has been developed on BEA Platform from the start.
    Any help is mucho appreciated, I am up against a big deadline, and have been pulling my hair out over this.

    Mike Wolfson wrote:
    Anyone know how to bring the Portal into Workshop so I can work with it. The only way I can get close to it now, is to create a similar page layout, and import each component singularly then place it in the appropriate location (ie. import a jsp, and put it on the proper page, basically rebuild the app by hand). There has to be a better way - especially since this app has been developed on BEA Platform from the start.AFAIK there is no automated way to do this. In general the EAR will not contain
    the source code to many of the artifacts other then JSPs. Any class files
    generated from page flows, controls, etc would have to be decompiled manually
    with something like JAD and even with that reassembling the output would be
    quite difficult I imagine.
    So in nutshell, get the source code to the portal if you want to make changes to it.
    Cheers,
    Gerald

  • ODI:How to import a version of a project into another project

    Hi Everyone,
    I have exported an XMl file(exported version file) of a odi scenario.how can i use this file in another project?
    I have to import this version in my new project.
    Thanks,
    Jayant

    But is there a way to import the complete list of numbers, so the pictures are listed at once ?
    Or is there a script that enables bridge to read the list of numbers.
    To my knowledge there is no way to add this file in one time to the find command and I have very less knowledge about scripting. If you know how to use and create theme your goal could be to create one your own but the time and effort is far more then just rate or label the wanted files.
    For example, You can have bridge pointed to the folder with all the files, if you have nested subfolder select the main folder and choose select items from subfolders in the view menu, this shows you all the files of the main folder in the content panel.
    Select a sort order that corresponds with your list.
    Scroll through the files and the ones you need you can either add one star or a label to it. When done select one star or the chosen label and you will only see the files you need.
    really a piece of cake and take you no more then 5 minutes... :-0
    I´ve seen that bridge comes with a colaborationtool but i didn´t realize this before and now
    i looking for a workaround or workflow to keep things easy.
    Not sure what you mean with collaboration tool but think you mean the option to reach PS functions via the Tools menu and select batch or photomerge?
    This has bin there from the first edition as I try to recall and is very, very useful as there are many other tools in Bridge that will provide you a fast workflow.
    I would advice you to buy (and read) the book Real World Camera Raw by Jeff Schewe and Bruce Fraser. There are editions for CS2, CS3, CS4 and CS5. It is written in very understandable language and you will find almost everything there is to know about ACR and Bridge and how to create perfectly and fast workflows

  • How to import BC4J package into JDEV project without server.xml file?

    Dear,
    I need to bring the seeded BC4J package into my JDEV OAF project. Usually to do that, once I am sure that all I need is accessible, I open the server.xml file for the BC4J that I need and I am all set - all the items from under that BC4J are brought in.
    How about if there is no server.xml file for that BC4J, for example, under oracle.apps.icx.por.req.webui, and I need to have a controller from under there in my project? Do I create this package (oracle.apps.icx.por.req.webui) manually? If I do that and then open the controller the controller is being brought into JDEV outside the package.
    Thank you.
    Anatoliy

    Sumit,
    Thank for quick response.
    Yes, I agree for the controller.
    But let's say I want to bring over some other xml staff, like some shared regions for example from under that webui. They are also brought outside the package. You have an idea?
    Regards,
    Anatoliy

  • I need to learn how to import environment to the ongoing project

    I tried several time and read about it. I just need patch preset list. My device is Yamaha Motif Rack ES and i found environment on german language web site.
    Can you tell me my steps how to do?
    !http://img208.imageshack.us/img208/3769/envi1.jpg!

    All you ever wanted to know about Oracle Reports:
    http://www.oracle.com/technetwork/middleware/reports/documentation/index.html

  • How to import correctly  with good configurations a AVCHD video ?

    Hello ! I want to import a video turned with my Sony Nex-VG 20 to adobe premiere pro but there is not the sound. Can someone explain it ? I didn't do the right configurations, so what i have to do ? Thanks.
    Fred

    Metadata contained in folder http://forums.adobe.com/thread/1015001?tstart=0
    -and http://helpx.adobe.com/premiere-pro/using/transferring-importing-files.html
    -http://helpx.adobe.com/premiere-pro/using/importing-assets-tapeless-formats.html

  • How to import Lion Server VPN Configuration Profile into Profile Manager

    Greetings All,
    I'm working on configuring a Lion Server VPN (10.7.2) and I hit the following road block. I succesfully started the VPN server and profile manager. In fact, if I download the built-in "everyone" profile that has the pre-configured VPN to device such as an iPad things work just fine. However, I'd like to create other profiles with the same VPN configuration info so I can delegate more specifically to different groups and users. I was hoping I could simply import the VPN configuration profile that I saved in the Server dashboard when I setup the VPN service into profile manager somehow. The reason I'm going this route is because every time I try to just re-make the VPN profile it doesn't want to work. I'm not sure why, but I figure why re-invent the wheel if I don't have too. Any suggestions?

    After a lot of investigating I haven't found a way to do this, I'm assuming it cannot be done.

  • How to import projects from workshop 8.1 to eclipse for weblogic 11.1

    I see a few howto's for migrating from workshop 8.1 to workshop for 10 but it is not obvious how to import existing 8.1 projects into enterprise pack for eclipse. If there is a how to out there could someone point it to me or maybe give me a quick walk through.
    Jerry

    There is no tooled support for project migration from Workshop to OEPE (regardless of version).
    The biggest question when contemplating such migration is whether you are using Beehive components (NetUI, Controls, etc.). Oracle support for Beehive ended with Workshop. If your application uses these technologies, you will need to stay with Workshop. The last version of Workshop was for WLS 11gR1 (10.3.1). No future versions are planned.
    If your application does not use Beehive components (or you can migrate away from them), then you can move to OEPE. The only supported approach is to recreate necessary projects in OEPE and copy your source code over.
    - Konstantin

  • How to import a .wav file for adding to a clip in imovie 09

    I want to know how can we import a .wav file in Imovie 09.
    The sound is in some location on my 2nd hard disc.
    I checked this page
    http://www.dummies.com/how-to/content/how-to-import-audio-into-imovie-09-project s.navId-323836.html
    but this does not help my requirement.
    I have a video in which there was a lot of hiss recorded via camera I exported the audio and using some audio filtering softwares cleaned the sound and now I want to import this clean sound back to my imoive project.
    It is a .wav file which is clean and without hiss.

    I see.By the time I saw your msg I had done the same and opened Itunes to play.
    There was an option in Imovie to import Itunes playlist or file and was able to do so.
    Any one will guess as in File some import menu
    should exist for this.In this case it was not that.
    mp3 clip needs to be played in Itunes
    where Itunes will make it a part of the mp3 library it has.
    Then Imovie 09 has a way to import the shared playlist from itunes.

Maybe you are looking for

  • My macbook is two and half year old, going to sleep mode randomly

    Having used this Macbook for almost two and half years, my machine has suddenly generated the problem of going to random sleep. It started as an infrequent thing, then it started happening on a regular basis, to the point that it became almost imposs

  • T410 (2522-CTO) - USB issues

    Hi, when new my TP had none of the following problems. How do I determine if this is Software or hardware issue ? Then how do I correct it? Running Win 7 Home Premium SP1 1)plug card reader into usb , plug in SD card. Recognises the devices but when

  • Deleting photos/formatting SD card after use in Canon T1i

    So once my Canon Rebel T1i formats my SD card in it's default state with two directories (DCIM/Canon) I have no permissions on the card other than "read only." This came up out of no where and now I can't delete images off of it in iPhoto (or the com

  • CSS always get sent to the same server.

    As part of my testing I am configuring load balancing to two different devices. This way I can quickly identify which real machine I have connected to. During this test I kept getting redirected to the same machine. The second machine is configured t

  • ACCESS.ERROR: Authorization check for caller assignment to J2EESecurityRole

    Hi After updating our portal (NW04 SP20) this new error occurs in the default.trc log. <i>ACCESS.ERROR: Authorization check for caller assignment to J2EE security role [service.jms.default.authorization : administrators] referencing J2EE security rol