Can I user JDeveloper (BPEL) with other (e.g. JBoss) AppServer?

Assume I use JDeveloper to create some BPEL Web Services Process flow.
Can I deploy these BPEL process flow components to other AppServers (.e.g JBOSS) instead of Oracle AppServer ?
If yes: Are there adjustments necessary ?
Is there a step-by-step guide on how to do this ?
Peter

In general you can use JDeveloper to develop and deploy to JBoss, this forum is more focused on Java development and we can point you to instructions for deploying Java to JBoss from inside JDeveloper.
As far as BPEL goes, you might want to ask on the BPEL forum:
BPEL

Similar Messages

  • HT4059 CAN YOU SHARE IBOOK BOOKS WITH OTHER IBOOK USERS?

    Does anyone know if you can share books in ibook with other ibook users?

    No, not unless you give them access to your iTunes Store account (which would probably be a violation of the Store terms of use).
    Regards.

  • How can I share my music with other account users

    Hello I would like to know how I can share my Itunes library with other user accounts on my mackbook?
    Thanks

    Help here >  iTunes: How to share music between different accounts on a single computer

  • How can i connect iphone 4 with other mobile through bluetooth

    how can i connect iphone 4 with other mobile through bluetooth

    You can't. iPhone does not have this feature.
    Some iOS apps will allow you to connect to other iOS devices for peer-to-peer games, or sending photos, but not to other makes of phone.

  • Hello, wonder if I can edit movies in iMovie with other cameras. For example: A camera of another brand, passing it to my PC and I could play in iPadm doing editing videos? thank you

    Hello, wonder if I can edit movies in iMovie with other cameras. For example: A camera of another brand, passing it to my PC and I could play in iPadm doing editing videos? thank you

    Not sure what you mean. You can import video into I Movie either via your USB slot if it is already in digital format or via your fire wire slot (you may need an adapter as the MAC slot is a mini slot, the adapters are available on line) if you are coming from tape based media.

  • Is Tmobile contract free iPhone 6 locked to Tmobile network? Can it be used internationally with other carriers?

    If I buy a Tmobile contract free iPhone 6 in apple store, does that mean it is locked and can only use Tmobile network? Can it be used internationally with other carriers? I travel a lot and do not want to find out my phone does not work the moment I insert a local carrier sim card.

    "The iPhone 6 will come unlocked as long as customers pay full price," a T-Mobile representative said. "If customers choose to take advantage of T-Mobile’s Equipment Installment Plan it will be locked until the device is fully paid off. This policy applies at both T-Mobile and Apple stores."
    http://www.ibtimes.com/how-pre-order-iphone-6-when-where-purchase-apples-smartph one-1686108

  • Can I share smart collections with other users across different machines ?

    My requirement is to create a smart collection on one machine and share it with other team members. Is this possible in Bridge CS4.
    Any help would be appreciated.

    the collections should be stored in c:\Users\<username>\AppData\Roaming\Adobe\Bridge CS4\Collections\ (hidden folders and it's also different for xp) though i never tried to see if they still work on different machines but they reference the local files so you'll need to have the same files in the same locations on those machines for them to work.

  • Can i share certain photos with other iphone users via icloud

    i want to share photos with other iphone users via icloud.how do i go about allowing or sharing access to only some of my photos to some people at work

    Hey zubairl,
    Thanks for the question. For Privacy, you must be the original owner of the calendar to share with others. Because you are simply subscribed to the calendar, you do not see the option for sharing. To resolve your issue, have the owner of the calendar “share” it with the recipient, or have the recipient subscribe to the calendar just as you have done (if you have access to the public subscription link).
    iCloud: About subscribed calendars
    http://support.apple.com/kb/HT5029
    iCloud: Share a calendar with others
    http://support.apple.com/kb/PH2690
    Thanks,
    Matt M.

  • Can i share my ibooks with others

    Does anyone know if we are able to share books with other Apple users?

    They are tied to your iTunes account, you can't lend or transfer them (nor any other content downloaded from iTunes) to other accounts.

  • Can I share copyrighted podcasts with others?

    Hi,
    I'd like to make a playlist of existing business advise podcasts, for my clients, via iTunes.   Most of these podcasts are copyrighted.  Can I legally share copyrighted podcasts with others?   I would not rebrand/rename the podcast in any way, I would just be sharing the these podcasts in their original state.
    Thanks!

    Legally, no, you cannot give them to others. If you want them to listen to them, then send the links for the podcasts or a download source they can use.

  • Can I use J2EE deploytool with other vendors

    This might be a stupid question for J2EE veterans but I was wandering whether I can use Sun�s J2EE deploytool with other J2EE servers like WebLogic for example.
    Concretely I would like to set in deploytool different then default classes for topic connection factory and topic � is it possible?
    Janusz

    deploying an EJB means generating code, where the AppServer steps into when the Bean is created, for example to do security checks,pooling, resource management, ...
    This is always AppServer specific.
    Ina

  • Can't compare a row with other rows within a table.. (many to many compare)

    Hi all..
    I am very new to PL/SQL..
    I need to travers through a table for comparing it's rows with in the table with other rows. For this I am trying to use bellow Pl/sql.
    create or replace compare()
    Declare
    VAR_HIT CHAR(1);
    SEARCH_RECORD_DATA UDB.table1%ROWTYPE;
    CANDIDATE_RECORD_DATA UDB.table1%ROWTYPE;
    CURSOR SEARCH_RECORDS_CURSOR IS SELECT * FROM UDB.table1 order by registration_id;
    CURSOR CANDIDATE_RECORDS_CURSOR IS SELECT * FROM UDB.table1 order by registration_id;
    BEGIN
    FOR SEARCH_RECORD_DATA IN SEARCH_RECORDS_CURSOR LOOP
    FOR CANDIDATE_RECORD_DATA IN CANDIDATE_RECORDS_CURSOR LOOP
    IF (CANDIDATE_RECORD_DATA.DECISION='P') THEN
    VAR_HIT:='y';
    IF(CANDIDATE_RECORD_DATA.FIRST_NAME!='unknown') AND (CANDIDATE_RECORD_DATA.FIRST_NAME!=SEARCH_RECORD_DATA.FIRST_NAME) THEN
    VAR_HIT:='n';
    ELSIF(CANDIDATE_RECORD_DATA.LAST_NAME!='unknown') AND (CANDIDATE_RECORD_DATA.LAST_NAME!=SEARCH_RECORD_DATA.LAST_NAME) THEN
    VAR_HIT:='n';
    ELSIF(CANDIDATE_RECORD_DATA.BIRTH_DATE!='unknown') AND (CANDIDATE_RECORD_DATA.BIRTH_DATE!=SEARCH_RECORD_DATA.BIRTH_DATE) THEN
    VAR_HIT:='n';
    ELSIF(CANDIDATE_RECORD_DATA.GENDER!='U') AND (CANDIDATE_RECORD_DATA.GENDER!=SEARCH_RECORD_DATA.GENDER) THEN
    VAR_HIT:='n';
    ELSIF(CANDIDATE_RECORD_DATA.FATHER_NAME!='unknown') AND (CANDIDATE_RECORD_DATA.FATHER_NAME!=SEARCH_RECORD_DATA.FATHER_NAME) THEN
    VAR_HIT:='n';
    ELSIF (CANDIDATE_RECORD_DATA.MOTHER_NAME!='unknown') AND (CANDIDATE_RECORD_DATA.MOTHER_NAME!=SEARCH_RECORD_DATA.MOTHER_NAME) THEN
    VAR_HIT:='n';
    END IF;
    IF(VAR_HIT='y') THEN
    INSERT INTO UDB.BIO_DI_HIT_RESULT(REGISTRATION_ID,SEARCH_ID,HIT_CANDIDATE_ID,SEARCH_DETAILS,CANDIDATE_DETAILS) VALUES (SEARCH_RECORD_DATA.REGISTRATION_ID,SEARCH_RECORD_DATA.EGM_NO,CANDIDATE_RECORD_DATA.EGM_NO,VAR_SEARCH_DETAILS,VAR_CANDIDATE_DETAILS);
    UPDATE UDB.BIO_RECORDS_DEMOGRAPHICS SET DECISION='D';
    END IF;
    END IF;
    END LOOP;
    commit;
    END LOOP;
    END;
    Outer loop is working fine (it is raversing throughout the table) (say for 8000 records 8000 times)
    But Enner loop is not working fine e.i. it's running just for 8000 times for 8000 records. while it should run more then 8000 time..
    Can any one help me..
    Is the way of using two cursor on one table for comparing each row of record is correct????????? :(

    Finally I come up with this:
    INSERT INTO UDB.BIO_DI_HIT_RESULT(REGISTRATION_ID,SEARCH_ID,HIT_CANDIDATE_ID,SEARCH_DETAILS,CANDIDATE_DETAILS)
    SELECT SEARCH.REGISTRATION_ID, SEARCH.Key_NO,CANDIDATE.Key_NO,
    'First name='||SEARCH.FIRST_NAME||',Last name='||SEARCH.LAST_NAME||',Birth date='||SEARCH.BIRTH_DATE||',Gender='||SEARCH.GENDER||',Fathers name='||SEARCH.FATHER_NAME||',Mother name='||SEARCH.MOTHER_NAME,
    'First name='||CANDIDATE.FIRST_NAME||',Last name='||CANDIDATE.LAST_NAME||',Birth date='||CANDIDATE.BIRTH_DATE||',Gender='||CANDIDATE.GENDER||',Fathers name='||CANDIDATE.FATHER_NAME||',Mother name='||CANDIDATE.MOTHER_NAME
    FROM UDB.BIO_RECORDS_DEMOGRAPHICS SEARCH,UDB.BIO_RECORDS_DEMOGRAPHICS CANDIDATE
    WHERE (SEARCH.FIRST_NAME!='unknown' OR SEARCH.LAST_NAME!='unknown' OR SEARCH.BIRTH_DATE!='unknown' OR SEARCH.GENDER!='unknown' OR SEARCH.FATHER_NAME!='unknown' OR SEARCH.MOTHER_NAME!='unknown')
    AND SEARCH.REGISTRATION_ID != CANDIDATE.REGISTRATION_ID
    AND SEARCH.REGISTRATION_ID < CANDIDATE.REGISTRATION_ID
    AND (SEARCH.FIRST_NAME='unknown' OR CANDIDATE.FIRST_NAME IN (SEARCH.FIRST_NAME,'unknown'))
    AND (SEARCH.LAST_NAME='unknown' OR CANDIDATE.LAST_NAME IN (SEARCH.LAST_NAME,'unknown'))
    AND (SEARCH.BIRTH_DATE='unknown' OR CANDIDATE.BIRTH_DATE IN (SEARCH.BIRTH_DATE,'unknown'))
    AND (SEARCH.GENDER='U' OR CANDIDATE.GENDER IN (SEARCH.GENDER,'U'))
    AND (SEARCH.BIRTH_DATE='unknown' OR CANDIDATE.BIRTH_DATE IN (SEARCH.BIRTH_DATE,'unknown'))
    AND (SEARCH.FATHER_NAME='unknown'OR CANDIDATE.FATHER_NAME IN (SEARCH.FATHER_NAME,'unknown'))
    AND (SEARCH.MOTHER_NAME='unknown' OR CANDIDATE.MOTHER_NAME IN (CANDIDATE.MOTHER_NAME,'unknown'))
    ORDER BY SEARCH.REGISTRATION_ID;
    Now it realy meet all my final table requirement.. I am happy.. :)
    But again last requirement is like..
    In the final BIO_DI_HIT_RESULT table I need to add one more column named as match_count
    This column will have values of total no. of exact match field (not unknown) for each records in the BIO_DI_HIT_RESULT.....
    One way of duing this is--
    Step1: I will use a cursor for traversing through each of the rows in BIO_DI_HIT_RESULT.
    Step 2: And based on count of matches in search_details(substring) and candiate_details(substring) I update each and every rows of the table.
    It will be very slow.. And for records like 2 million records.. I can't think of this idea. :(
    Sooooo,, Is there ANY BETTER WAY OF DOING THIS AS WELL.. BETTER MEANS FAST WAY.. :(
    Thanks in advance....
    Edited by: user13367608 on Jan 8, 2011 2:13 AM

  • Can cross join be used with other joins

    hi,
    Q1) is this syntactically correct , cross join with other joins like inner outer. like following.
    select * from t1 cross join t2
    inner join t3 on cast(t3.c1 as varchar) =  (cast(t1.id as varchar) +  cast(t2.t2 as varchar))
    I have seen it works but wanted to know is it syntactically correct.
    yours sincerely

    Hi
    First, Sorry, I wanted to VOTE (as I wrote) and not to Propose as answer :-)
    Join are not necessarily executing in the order we write them. I can show simple example with tables that include the amount of rows is very different.
    /**************************************************** DDL - Create tables */
    CREATE TABLE T1 (
    ID INT IDENTITY CONSTRAINT PK_T1 PRIMARY KEY,
    MyValue UNIQUEIDENTIFIER DEFAULT NEWID()
    CREATE TABLE T2 (
    ID INT IDENTITY CONSTRAINT PK_T2 PRIMARY KEY,
    MyValue UNIQUEIDENTIFIER DEFAULT NEWID()
    CREATE TABLE T3 (
    ID INT IDENTITY CONSTRAINT PK_T3 PRIMARY KEY,
    MyValue UNIQUEIDENTIFIER DEFAULT NEWID()
    GO
    /**************************************************** DML - Populate Tables*/
    SET NOCOUNT ON;
    insert T1 (MyValue)
    select top 100 null
    from _ArielyAccessoriesDB.dbo.ArielyNumbers
    GO
    insert T2 (MyValue)
    select top 500 null
    from _ArielyAccessoriesDB.dbo.ArielyNumbers
    GO
    insert T3 (MyValue)
    select top 10000 null
    from _ArielyAccessoriesDB.dbo.ArielyNumbers
    GO
    /**************************************************** Play Time */
    select T1.MyValue, T2.MyValue, T3.MyValue
    from T3
    join T2 on T2.ID = T3.ID
    join T1 on T1.ID = T2.ID
    GO
    -- Check Execution Plan [EP]
    -- Notice that SQL Server has changed the join order from T3-T2-T1 to T1-T2-T3 because it’s better that way.
    -- You can notice that the order was by the number of rowns in tables from the smallest to the bigest SET
     hope this is helpful :-)
    [Personal Site] [Blog] [Facebook]

  • I can't mke phone calls with others.

    I can't connect with others.

    Hi, Giboy, and welcome to the Skype Community! Unfortunately, inadequate information has been received to begin the investigation of the issue you are having. Please follow the directions from this thread and reply back with the requested information. Afterwards, we can progress in getting things working right again.
    Thanks - Will be looking forward to your reply!

  • Can Audio/Video buttons work with other player on Satellite Pro L20

    Hi
    Just a quick question about the multimedia bar on these laptops, i was wondering if they can somehow be configured to work with other players - for instance iTunes as opposed to just Windows Media Player? If so, how would i go about doing this? Any help would be great.
    Cheers,
    Liam

    Hello
    I have found one interesting topic about media buttons on M70 and WinAmp. Check it please on http://forums.computers.toshiba-europe.com/forums/thread.jspa?forumID=3&threadID=14884
    Maybe it can work on your L20. Maybe is there some similar solution for iTunes but it is not known to me. Check some iTunes forum. Maybe you can find something there.

Maybe you are looking for

  • Photoshop CC 2014 file save issue on OS X Server 2.21

    Before we start, I do know that Adobe doesn't officially support saving files to a file server.  However on CC2014 sometimes when we save files they disappear and we are left with a temporary file in the directory.  Wondering if anyone else has seen

  • WebDynpro ABAP applicaiton theme editing using NWDS

    Dear SDNs, Can we edit WebDynpro ABAP themes using NWDS? or do i need to install Elcipse again. If it is possible using NWDS, what are the prerequisites. Where can i get Theme editior plugin to NWDS and guide me on how to add. I have already a knowle

  • Posted Excise duty not appearing in MIRO

    Hello folks, We are capturing Excise invoice in MIGO and then as per the vendors excise invoice we change the ED in the captured excise invoice and then post it. We have noticed that in some cases the exise duty posted in J1IEX is not the same which

  • Simple question: What's the Mac shortcut for size???

    What's the Mac shortcut for increasing the size of the online image? Thank you

  • CSCut57898 - C897 ACL object-group leak/miss for BGP tcp 179 / causing deny

    We appear to be seeing this bug, or something very similar, on a 3845 running 15.1(4)M9 (c3845-adventerprisek9-mz.151-4.M9.bin), and a 3945 running 15.1(1)T (c3900e-universalk9-mz.SPA.151-1.T.bin). On both platforms traffic that should be (and most o