How to invoke a service on a server other than local bpel server?

Hi,
Im trying to invoke a service on a server other than the local bpel server thats installed by default. Any pointers to how this can be achieved? My jedevelper does not show "Bpel process Manager server" under the connections navigator and hence I cannot create a new connection to a different server(other than the default one). Appreciate yr help.
Thanks,
-L

If you only want to just invoke the service, you dont need a new connection.
Cant you just point to the wsdl of the service in the partnerlink ?
If you need a new connection in jdeveloper to the other server, you first need to make the new applicationserver connection and after that the integrationserver connection.
After this you can connect to an other bpelserver, besides the default.

Similar Messages

  • WT SynchManager instl. on a different Server other than SAP/SQL Server.

    Hi,
    Is it possible to move/install WebTools SynchManager on a different server other than the SAP/SQL Server? Please let us know.
    Note: 
    1. We are aware of the recommendation:  u201CInstall the SynchManager on the SAP Business One server on which the DI API is installedu201D in the "Business One Web Tools SynchManager Guide.pdf".
    2. But, SAP/SQL Server at our Client is starving of RAM due to a high number of windows services/application trying to run at the same time (although the maximum amount of RAM possible under the current configuration is installed (4GB)).
    3. So, we are evaluating as to which of these application (WebTools being one of them) can be moved to a different server.
    Thanks and Regards,
    Kafil Shumon.

    Hi Kafil,
    You can put the synchmanager on a different server as  long as the DI API is installed and that server can access the B1 licensing server.

  • How to invoke AM method that accepts parameter other than string

    Hi
    I need to pass 2 date parameters to my AM method.
    I checked the jdev doc and found the below method that can be used for any of the parameter other than String
    public Serializable invokeMethod(String methodName,
    Serializable[] methodParams,
    Class[] methodParamTypes)
    one thing i am not able to understand is how to pass multiple dates in a single Class parameter.
    can anyone tell me the invoke method syntax for passing 2 dates.

    Hi,
    Suppose you have a string and two date parameters
    String test;
    Date date1;
    Date date2;
    then pass it like this
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    Serializable parameters[] = {test,date1,date2};
    Class paramTypes[] = {String.class,Date.class,Date.class};
    am.invokeMethod("initSummary", parameters, paramTypes);
    Thanks,
    Gaurav

  • How to enable remote debugging for a session other than the current one

    Hi all,
    I am trying to figure out how to enable remote debugging for a session other than the one I am currently using.
    More specifically, we have an application that is making database calls to Oracle 11gR2. Something is causing an exception during this invocation. My system is currently not set up to recompile said application, so I can't just add the debug call to the code and recompile. Therefore I would like to be able to log into the database (as sys, if necessary) and invoke dbms_debug_jdwp.connect_tcp on the desired session.
    The docs indicate that I should be able to do so:
    dbms_debug_jdwp.connect_tcp(
    host IN VARCHAR2,
    port IN VARCHAR2,
    session_id IN PLS_INTEGER := NULL,
    session_serial IN PLS_INTEGER := NULL,
    debug_role IN VARCHAR2 := NULL,
    debug_role_pwd IN VARCHAR2 := NULL,
    option_flags IN PLS_INTEGER := 0,
    extensions_cmd_set IN PLS_INTEGER := 128);
    But when I try (even as sys), I get the following:
    exec dbms_debug_jdwp.connect_tcp('1.2.3.4',5678,<session id>,<session serial>);ORA-00022: invalid session ID; access denied
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    00022. 00000 - "invalid session ID; access denied"
    *Cause:    Either the session specified does not exist or the caller
    does not have the privilege to access it.
    *Action:   Specify a valid session ID that you have privilege to access,
    that is either you own it or you have the CHANGE_USER privilege.
    I've tried granting the 'BECOME USER' privilege for the relevant users, but that didn't help. I read something about having to set some kind of ACL as of 11gR1, but the reference documentation was very confusing.
    Would someone be able to point me in the right direction? Is this even possible, or did I misread the documentation?

    Interesting deduction, that would be very useful indeed. I hate recompiling just to add the debug call, and it can't be done in our production environment. But it seems unlikely to me it would be implemented this way.
    I would cross-post this in the SQL AND PL/SQL forum though, as this is really a database issue, not with the SQL Developer tool. Do add the links to the other posts in each.
    Regards,
    K.

  • Test program running taking much more time on high end server T5440 than low end server  T5220

    Hi all,
    I have written the following program and run on both T5440  [1.4 GHz, 95 GB RAM, 32 cores(s), 256 logical (virtual) processor(s),] and  T5220 [(UltraSPARC-T2 (chipid 0, clock 1165 MH) , 8GB RAM, 1 core, 8 virtual processors )] on same OS version.  I found that T5540 server takes more time than T5220. Please find below the details.
    test1.cpp
    #include <iostream>
    #include <pthread.h>
    using namespace std;
    #define NUM_OF_THREADS 20
    struct ABCDEF {
    char A[1024];
    char B[1024];
    void *start_func(void *)
        long long i = 6000;
        while(i--)
                    ABCDEF*             sdf = new ABCDEF;
                    delete sdf;
                    sdf = NULL;
        return NULL;
    int main(int argc, char* argv[])
        pthread_t tid[50];
        for(int i=0; i<NUM_OF_THREADS; i++)
                    pthread_create(&tid[i], NULL, start_func, NULL);
                    cout<<"Creating thread " << i <<endl;
        for(int i=0; i<NUM_OF_THREADS; i++)
                    pthread_join(tid[i], NULL);
                    cout<<"Waiting for thread " << i <<endl;
    After executing the above program on T5440 takes :
    real 0.78
    user 3.94s
    sys 0.05
    After executing the above program on T5220 takes :
    real 0.23
    user 1.43s
    sys 0.03
    It seems that T5440 which is high end server takes almost 3 times more time than T5220 which is low end server.  
    However, I have one more observation. I tried the following program :
    test2.cpp
    #include <iostream>
    #include <pthread.h>
    using namespace std;
    #define NUM_OF_THREADS 20
    struct ABCDEF {
    char A[1024];
    char B[1024];
    int main(int argc, char* argv[])
        long long i = 6000000;
        while(i--)
            ABCDEF*  sdf = new ABCDEF;
            delete sdf;
            sdf = NULL;
        return 0;
    It seems that T5440 server is fast in this case as compaired to T5220 server.
    Could anyone please help me out the exact reason for this behaviour as my application is slow as well on this T5440 server. I have posted earlier as well for the same issue. 
    Thanks in advance !!!
    regards,
    Sanjay

    You already asked this question...
    48 hours earlier, and in the same Solaris forum space
    Repeating the post isn't going to get you a response any faster, and actually now have people NOT respond because you are not showing any patience.
    These are end-user community forums, not a place to expect Oracle Technical Support.   There is no obligation that there be a response.
    If you have a business-critical issue and hope to get accurate and timely response, then use your service contract credentials to open a Support request.
    This new redundant post is locked.
    Edit:
    It appears that at the same time the O.P. posted this redundant thread, they also posted the same question to at least one other forum web site:
    http://www.unix.com/solaris/229269-test-program-running-taking-much-more-time-high-end-server-t5440-than-low-end-server-t5220.html

  • Problems in my Local BPEL Server--Urgent!!!!

    Hi All,
    I have deployed a process in my Local BPEL Server which basically picks a fixed length file from the FTP directory using FTP Adapter, transforms it using a Native Format XSD into an XML file and writes it to a local directory using File Adapter.
    I have used the Batching Feature in the FTP Adapter configuration to send messages to BPEL in batches of 1.
    Now the problem here is the file is not getting picked up and the server is writing massively into the logs and within a matter of 5-10 mins, the size of the domain.log file reaches around 500 MB. The log file says that, the process endlessly creates batch indexes and also fails in Native Format Translation.
    Even i undeployed the process, stopped and restarted the Local BPEL Server but it didn't help. I even restarted my machine.
    Whenever i start the BPEL Server, it loads all the processes in the Default Domain and then it starts writing into the logs even though the above process is undeployed. Please find below a portion of the logs that the server writes.
    2006-11-10 15:33:57,317> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Invoking inbound translation for : can_testing.txt
    <2006-11-10 15:33:57,317> <DEBUG> <default.collaxa.cube.translation> <NXSDTranslatorImpl::log> Starting translateFromNative
    <2006-11-10 15:33:57,317> <DEBUG> <default.collaxa.cube.translation> <NXSDTranslatorImpl::log> Done with translateFromNative
    <2006-11-10 15:33:57,317> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Completed inbound translation for : can_testing.txt
    <2006-11-10 15:33:57,317> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> isTextFile : true
    <2006-11-10 15:33:57,317> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Translated inbound batch index "1831" of file {can_testing.txt} sucessfully.
    <2006-11-10 15:33:57,317> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Translator has failed to translate any message from batch number: 1831
    <2006-11-10 15:33:57,317> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Message not published as translation failed: {
    File=/home0303/sjoseph/Outbound_Testing/\can_testing.txt, batchIndex=1831, PublishSize=1
    <2006-11-10 15:33:57,317> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Invoking inbound translation for : can_testing.txt
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.translation> <NXSDTranslatorImpl::log> Starting translateFromNative
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.translation> <NXSDTranslatorImpl::log> Done with translateFromNative
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Completed inbound translation for : can_testing.txt
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> isTextFile : true
    <2006-11-10 15:33:57,332> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Translated inbound batch index "1832" of file {can_testing.txt} sucessfully.
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Translator has failed to translate any message from batch number: 1832
    <2006-11-10 15:33:57,332> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Message not published as translation failed: {
    File=/home0303/sjoseph/Outbound_Testing/\can_testing.txt, batchIndex=1832, PublishSize=1
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Invoking inbound translation for : can_testing.txt
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.translation> <NXSDTranslatorImpl::log> Starting translateFromNative
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.translation> <NXSDTranslatorImpl::log> Done with translateFromNative
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Completed inbound translation for : can_testing.txt
    <2006-11-10 15:33:57,332> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> isTextFile : true
    <2006-11-10 15:33:57,332> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Translated inbound batch index "1833" of file {can_testing.txt} sucessfully.
    <2006-11-10 15:33:57,348> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Translator has failed to translate any message from batch number: 1833
    <2006-11-10 15:33:57,348> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Message not published as translation failed: {
    File=/home0303/sjoseph/Outbound_Testing/\can_testing.txt, batchIndex=1833, PublishSize=1
    <2006-11-10 15:33:57,348> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Invoking inbound translation for : can_testing.txt
    <2006-11-10 15:33:57,348> <DEBUG> <default.collaxa.cube.translation> <NXSDTranslatorImpl::log> Starting translateFromNative
    <2006-11-10 15:33:57,348> <DEBUG> <default.collaxa.cube.translation> <NXSDTranslatorImpl::log> Done with translateFromNative
    <2006-11-10 15:33:57,348> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Completed inbound translation for : can_testing.txt
    <2006-11-10 15:33:57,348> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> isTextFile : true
    <2006-11-10 15:33:57,348> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Translated inbound batch index "1834" of file {can_testing.txt} sucessfully.
    <2006-11-10 15:33:57,348> <DEBUG> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Translator has failed to translate any message from batch number: 1834
    <2006-11-10 15:33:57,348> <INFO> <default.collaxa.cube.activation> <FTP Adapter::Inbound> Message not published as translation failed: {
    File=/home0303/sjoseph/Outbound_Testing/\can_testing.txt, batchIndex=1834, PublishSize=1
    I am clueless about why the BPEL Server is behaving strangely.
    If anybody has faced a similar scenario then please let me know ASAP as i am not able to move forward due to this issue.
    Thanks In Advance,
    Dibya

    Hi,
    To get around this problem i uninstalled my Oracle BPEL PM and once again re-installed it. Now it is working fine as i took the back up of all the processes.
    But is it a limitation in BPEL wherein the number of processes running on the server cannot exceed a certain value.
    Please let me know your inputs on it.
    Thanks,
    Dibya

  • Customized Tasklist application in any server other than SOA Server

    Hi people,
    I have used a tasklist taskflow in my application, but when I deploy this application to any server other than SOA server, it gives an error saying that there is no connection to SOA server. I have tried to make JNDI connections, but this is not working.
    Can anyone please help?
    Thanks.

    You could always store it in a properties file.
    java.util.Properties
    You could then write your JSP page to load/save the properties file. Hide it under the web-inf directory.
    Alternatively you could put them as environment variables in web.xml. But you would have to edit the file manually to change the details. How often would this change? Would it really be that much of a hassle?
    Good luck,
    evnafets

  • Can I use an outgoing SMTP server (other than .me)

    Can I set up my Mail account to use an out going SMTP server other than .me? I want to use my .me (iCloud) account for incoming mail but want another server for my out going mail. (The reason is a need to keep an existing From: address rather than be required to use "[email protected]".)

    I think some networks restrict what smtp people use, I know that is true for my school. I think the answer this person is looking for is how is a quick way to choose the smtp. I think if the orinial poster selects new message, there is a littel black down arrow to the left of the subject line. If you press this down arrow and select customize, you could put a check box in the outgoing smtp field. Then you can select your out going mail server. But as for chaning your incoming mail server for all incoming email... well no... you can not determine what incoming email server you use for each account.
    @rpeskin The Apple Mail program, does a good job or seperating email accounts. Look for a "show" button on the top menu (somewhere under the red close dot.)
    rpeskinwrote:
    Mar 2, 2012 5:15 PM 
    Can I set up my Mail account to use an out going SMTP server other than .me? I want to use my .me (iCloud) account for incoming mail but want another server for my out going mail. (The reason is a need to keep an existing From: address rather than be required to use "[email protected]".)
    or you can change your default email in the mail preferences.
    Message was edited by: Carlo TD

  • How do i install reader to a drive other than the boot drive?

    how do i install reader to a drive other than the boot drive?

    Hi nicksdaddy,
    There is an offline version:
    http://get.adobe.com/reader/enterprise/
    Hope that helps!
    Stacy

  • How to install ovi suite to a drive other than C:?...

    how to install ovi suite to a drive other than c:??? my c: drive is almost full with other partitions perfectly free to install it, how do i do that? can i use previous versions of ovi suite to use with my e63? at this point, i'm unable to use ovi suite at all, because there's no room to install it on my c: drive.
    allllllllso there's one more thing, when i originally had tried installing ovi suite on my computer i had more than 1gb free. after installing it i on'ly had 500mb free. i had only intended for it to use a very small amount of space, and since i also use my c: drive for virtual memory i quickly uninstalled it, looking for an option i'd maybe skipped over while installing it the first time. no luck. anyways, when i looked in the add/remove programs control panel the installed size of ovi suite was only 40-50mb. even after uninstalling ovi suite the extra memory space that seemed to all of a sudden taken up by the installation stayed used.
    when looking at the file sizes of everything on my hard drive, (including system files and paging file) there is still a descreprency between the amount of memory used and the size of all files total on the drive. at this point im quite disgusted and disapointed in ovi suite as i'm mostly unable to use it to connect my phone to my computer and i'm also having problems with the CA101 cable as well. i guess i'll have to go check for another cable.
    nokia!!! wake up and fix yo **bleep**!!!!
    anyone have any solutions for the main problem? (installing to a drive other than c? is there support for this option in any of the new beta versions? can that be included in the newest betas? i'm suuuuuure i'm not the only one begging for this option!!!

    Hi ostrenga4, sorry to hear about your experiences.
    When installing Nokia Ovi Suite to PC, Windows makes "system restoration points", which are available to restore operating system to previous condition, if something goes wrong, for example in driver installation.
    You can change install location of Nokia Ovi Suite with following:
    - Download Nokia Ovi Suite install package from Nokia Ovi Suite pages
    - Start Windows Command prompt
    - From Command prompt, navigate to folder containing Nokia Ovi Suite install package, which you downloaded
    - Start Nokia Ovi Suite install package with command line "Nokia_Ovi_Suite_webinstaller.exe /TARGET="D:\TestDir\Test"
    - This results, that Nokia Ovi Suite installer creates folder D:\TestDir\Test (if that doesn't exist) and installs Nokia Ovi Suite there.
    - Unfortunately, Windows Installer still keeps installer cache files and system restoration points in C: drive (or whatever your system drive is)
    As you can see, this is possible, but it is very much recommend to have enough space for installing software into system drive.
    Cheers, Samuli

  • How can i transfer songs from another itunes other than mine

    how can i transfer songs from another itunes other than mine

    Purchases made under 1 Apple ID are permanently associated with that Apple ID and CANNOT be transferred to another Apple ID.  So if you want to keep those songs, you'll need to always have access to your dad's account.
    B-rock

  • Some albums I put on my Mac to later sync with a Touch appears as seperate tracks and not a single album.  How do I get them back together again other than a playlist.  I do not want the tracks showing up as albums on the Touch?

    Some albums I put on my Mac to later sync with a Touch appears as seperate tracks and not a single album.  How do I get them back together again other than a playlist.  I do not want the tracks showing up as albums on the Touch?

    Are your tracks pat of a collection? Different artists, but still one album? Then mark them a s acollection or set the album artist. See this guide on how to group separate tracks into albums:
    iTunes: Grouping Tracks Into Albums

  • How do I burn files into a CD other than by burning music through iTunes?

    How do I burn files into a CD other than by burning music through iTunes?

    Hi,
    see here: http://support.apple.com/kb/HT1328
    Happy New Year
    Stefan

  • HT5232 does ipad mini have a usb port? if not then how can i share my documents with devices other than apple?

    does ipad mini have a usb port? if not then how can i share my documents with devices other than apple?

    Wireless Flash Drive (tap to enlarge image)

  • How do we connect two databases in Oracle other than Database Link?

    Good Morning,
    How do we connect two databases in Oracle other than Database Link?
    I am using Oracle 10g, I heard that we can connect two database in Oracle through ODBC. Is it possible? How?
    Thanks
    Nihar

    See if this helps.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4406709207206#18830681837358

Maybe you are looking for

  • REPORT FOR INFO TYPE 586

    Hi All I am trying to create a report for INFO TYPE 586  in HR ABAP,where  in a table apporx 30 investment codes , proposed investment and actual amount are apperaring . Now My problem is,  I do not want to use IF .... ENDIF statment. Is there any ot

  • I've got a small problem w/a project...

    I have a fistful of plans for model planes in pdf format.  Some of these things are six feet across the wings.  But when I blow 'em up to 100%, and try to print, all I get is the one page printed @ 15%.  I have a "poster razor" which does a fine job,

  • Does initialization of a variable to 'null' take up memory?

    Hi, Does initialization of a variable to 'null' take up memory? For ex: String str = null; Then, will the str take up memory? Thanks & Regards, Jags.

  • Documentation on oracle.ord.im package

    Does anyone know where to find the documentation about oracle.ord.im package? I tried the Online Help, it gave me nothing. Thanks in advance. Cheers!

  • CUA needs to have same patch level as other systems?

    I was just told that when patching our systems, the CUA system must be brought up to the same patch level.  I thought the communication from CUA was via IDocs, so I don't quite get why they must be in synch like that. Is there an OSS note addressing