Using WLST to execute SOA Suite commands

Hi,
using SOA Suite 11g R1 PS1 (11.1.1.2.0)
I am trying out the WLST commands as described in the documentation (http://download.oracle.com/docs/cd/E15523_01/web.1111/e13813/custom_soa.htm#CIHGBHAC), such as sca_listDeployedComposites and sca_undeployComposite. However, each command seems to fail with a NameError. Other commands (non-SOA Suite related) seem to work okay.
Did anyone succeed in using the SOA Suite related command in WLST - the ones prefixed with sca_? If so: did you have to do any special set up or configuration to make it work? What is the exact syntax you are using?
Thanks for any pointers.
Lucas

OKAY, it is resolved:
To use those custom commands, you must invoke the WLST script from the Oracle home in which the component has been installed. Do not use the WLST script in the WebLogic Server home.
The script is located at:
+(UNIX) ORACLE_HOME_for_component/common/bin/wlst.sh+
+(Windows) ORACLE_HOME_for_component\common\bin\wlst.cmd+
I had started the wrong 'version' of WLST, the generic one and not the one in the SOA1 subdirectory that knows about the SOA Suite specific operations.
regards,
Lucas

Similar Messages

  • Screens for Human Work Flow created using BPEL PM in SOA Suite 10.1.3.1

    Hi,
    I have created a bpel process having a human work flow for approving or rejecting the request {say leave request submited by the user}.
    I would like to know :
    1)How to create screens for such human activities?
    2)Are there any tools in SOA suite which allow me to create User Screens for approving such human flows.
    3)Are there any otherways to create such screens for Human activities?
    Pointers are also appreciated.
    Thanks,
    Irfan Khan

    Generating a default task display form doesn't really cover probably the most common use case:
    1) human initiates a form that is presented to him/her
    2) form is populated with fields that come from a defined database schema
    3) human fills out form and submits to workflow
    4) data from the form is stored in database
    5) another human is presented with the form popualted with database data
    6) human approves or reject form
    I haven't been able to find any examples describing how to do this. Or anything in the manuals. I have another forum entry which also points to this problem:
    How do you add db fields to Task Display Form ?

  • SOA Windows service V Start SOA Suite command

    What is the difference between running the Window service called
    "OracleDb10_homeProcessManager" and running "Start SOA Suite" from the Programs run Menu?
    What components start in each case?
    What programs are shut down when "Stop SOA Suite" is run from the Programs Menu?
    Thanks in advance
    Paul P

    Oops sorry, I meant what's the difference between the <b>Oracle-soaProcessManager </b> service and the "Start SOA Suite" programs command.
    <br>
    Paul P

  • Using Applescript to execute a Terminal command

    I've looked at the possible answers that come up when I ask this question here, but none really fit my question.
    I want to automate the Terminal command that cleans out obsolete entries in my right-click "Open with" menu, which I have to do often. Rather than copying the command each time I want it, then opening Terminal, pasting it in, etc., is there a way to automate this with Applescript?  Thanks!

    Thanks for the fast reply, Niel. I understand this is a newbie Applescript question, but over the years I have just never used Applescript and other than this one thing, probably won't again.  So rather than take hours to learn it, I hope you don't mind the additional question regarding this.  Do I just put the following into the main Applescript editor?
    do shell script "ls -l ~"
    /System/Library/Frameworks/CoreServices.framework//Versions/A/\
    Frameworks/LaunchServices.framework/Versions/A/Support/lsregister \
    -kill -r -domain local -domain user;
    killall Finder

  • DB polling using custom SQL in SOA Suite 11g

    Hi,
    We are trying to poll records from a database using custom sql. But all the records in the table are being picked up at the same time and not as per the polling frequency set in the adapter.
    Below is the configuration from the .jca file:
    <endpoint-activation portType="II_ptt" operation="receive">
    <activation-spec className="oracle.tip.adapter.db.DBActivationSpec">
    <property name="DescriptorName" value="II.OrderRequest"/>
    <property name="QueryName" value="IISelect"/>
    <property name="MappingsMetaDataURL" value="II-or-mappings.xml"/>
    <property name="PollingStrategy" value="DeletePollingStrategy"/>
    <property name="PollingInterval" value="60"/>
    <property name="MaxRaiseSize" value="10"/>
    <property name="MaxTransactionSize" value="10"/>
    <property name="SequencingColumn" value="REQUEST_SAK"/>
    <property name="NumberOfThreads" value="1"/>
    <property name="ReturnSingleResultSet" value="false"/>
    <property name="DeleteDetailRows" value="false"/>
    </activation-spec>
    </endpoint-activation>
    Please let us know if anything else needs to be set to enable the polling as per the frequency in the adapter.
    Thanks.

    As the link from Anuj said, you need to also configure 'Distributed Polling' in the wizard. This speed limit trick will no longer work out of the box in 11.1.1.3 on, you will also have to set usesSkipLocking="false" in your DbAdapter connection pool definition. Skip locking eliminates the locking contention issue, so this primitive kind of load balancing is no longer needed in that case.
    Thanks
    Steve

  • Using SXPG_CALL_SYSTEM  to execute Unix 'MV' command not working

    Here is the code (method - params begin with "p_").  This returns no error but yet the file is not moved (called in a test program).  Any ideas?
    DATA: lv_sourcepath TYPE rlgrap-filename,
            lv_targetpath TYPE string,
            lv_fname      TYPE rlgrap-filename,
            lv_path       TYPE rlgrap-filename,
            lv_paramstr   TYPE sxpgcolist-parameters,
            lv_status     TYPE extcmdexex-status,
            lv_execproto  TYPE TABLE OF btcxpm.
      " Get physical path to archive folder
      lv_targetpath = zcacl001_utilities=>get_appserver_path( 'ZDIR_KHRIS_INTF_ARCV' ).
      " Type casting needed for function module call below
      lv_sourcepath = p_sourcepath_in.
      " Split filename from path in source
      zcacl001_utilities=>parse_file_path( EXPORTING
                                              p_fullname_in   = lv_sourcepath
                                           IMPORTING
                                              p_filename_out  = lv_fname
                                              p_path_out      = lv_path ).
      " Concatenate filename to target path
      CONCATENATE lv_targetpath lv_fname INTO lv_targetpath.
      " Build parameter string
      CONCATENATE '-f' lv_sourcepath lv_targetpath INTO lv_paramstr SEPARATED BY space.
      CALL FUNCTION 'SXPG_CALL_SYSTEM'
        EXPORTING
          commandname                = 'mv'
          additional_parameters      = lv_paramstr
          trace                      = space
        IMPORTING
          status                     = lv_status
          exitcode                   = p_exitcode_out
        TABLES
          exec_protocol              = lv_execproto
        EXCEPTIONS
          no_permission              = 1
          command_not_found          = 2
          parameters_too_long            = 3
          security_risk                  = 4
          wrong_check_call_interface = 5
          program_start_error            = 6
          program_termination_error      = 7
          parameter_expected         = 8
          too_many_parameters            = 9
          illegal_command                = 10.

    Try to put this type of entry in the Object request.
    Prog Obje Objectname
    R3TR EXCC commandname
    I am not sure, weather this will work or not.
    Regards,
    Naimesh Patel

  • SOAP/JMS using SOA Suite 11g

    Dear All
    Can someone give a pointer - how to expose service components using SOAP/JMS in SOA Suite 11g?
    I am using SOA Suite 11.1.1.5. Say we have a synchronous request-response operation - searchCustomer(SearchParam search) returns a Customer information (i.e. input type is SearchParam and output type is Customer).
    How can I implement this service using SOAP over JMS?
    Regards,
    sibendu

    Refer this blog from Biemond.
    Java / Oracle SOA blog: SOAP over JMS with Oracle Service Bus 11g&lt;/title&gt;&lt;link type='text/css' rel='stylesheet'…

  • Scheduling BPEL Process in 11g using native SOA Suite functionatliy

    I have spent a significant amount of time reviewing documentation and the forums and have been unable to find a definitive answer on the ability to schedule a BPEL process in SOA Suite 11g.
    A similar question was asked here with no response:
    BPEL(SOA11G) and Quartz
    In SOA Suite 10.1.3.x it is discussed frequently:
    http://www.oracle.com/technology/tech/soa/soa-suite-best-practices/soa_best_practices_1013x_drop1.pdf
    Re: BPEL Adapters & Scheduling
    It appeared to be an actual feature in one of the technology previews:
    http://biemond.blogspot.com/2008/01/scheduling-processes-in-soa-suite-11g.html
    Can anyone provide an definitive answer on whether a BPEL process can be scheduled using functionality native to SOA Suite 11g. I understand there are external workarounds such as calling BPEL process from DBMS_JOB, using external scheduling framework etc. I am interested in solutions which are native to the SOA Suite itself if there is such a solution.
    If there is no definitive answer I will open a support case and post the results here for the benefit of the group.

    Hi-
    You can refer to the below link.
    http://darwin-it.blogspot.com/2008/01/how-to-create-bpel-job-scheduler.html
    I have not personally tried but I think it should work.
    PLease let us know how it goes.
    Thanks,
    Dibya

  • Connection Reset on Oracle SOA-Suite 10.1.3.5.0 Apache-Webserver with SSLv3

    Hi,
    I'm trying to use SSL with my SOA-Suite 10.1.3.5.0 Webserver. This Problem occurs on both a windows and a linux machine. I'm referring to the windows-machine, as this has the latest patch-level. My problems are about the Apache-Webserver only. I didn't do any special configuration, and SSL is working fine in the Browser (FF3.5 and IE 8). But for Paypal IPN Notification i'm having serious troubles. I was able to track down the problem to a SSLv3 problem. I installed the latest openssl version and issued the following command:
    openssl s_client -connect localhost:443
    This gives me the following output:
    C:\OpenSSL\bin>openssl s_client -connect localhost:443
    Loading 'screen' into random state - done
    CONNECTED(000002E8)
    depth=0 /C=US/ST=OR/L=PORTLAND/O=ORACLE/OU=PDC/CN=WARNING: FOR TEST PURPOSES ONLY! DO NOT USE COMMERCIALLY!
    verify error:num=18:self signed certificate
    verify return:1
    depth=0 /C=US/ST=OR/L=PORTLAND/O=ORACLE/OU=PDC/CN=WARNING: FOR TEST PURPOSES ONLY! DO NOT USE COMMERCIALLY!
    verify error:num=10:certificate has expired
    notAfter=Dec 8 16:18:11 2006 GMT
    verify return:1
    depth=0 /C=US/ST=OR/L=PORTLAND/O=ORACLE/OU=PDC/CN=WARNING: FOR TEST PURPOSES ONLY! DO NOT USE COMMERCIALLY!
    notAfter=Dec 8 16:18:11 2006 GMT
    verify return:1
    Certificate chain
    0 s:/C=US/ST=OR/L=PORTLAND/O=ORACLE/OU=PDC/CN=WARNING: FOR TEST PURPOSES ONLY! DO NOT USE COMMERCIALLY!
    i:/C=US/ST=OR/L=PORTLAND/O=ORACLE/OU=PDC/CN=WARNING: FOR TEST PURPOSES ONLY! DO NOT USE COMMERCIALLY!
    Server certificate
    -----BEGIN CERTIFICATE-----
    Here is the certificate...
    -----END CERTIFICATE-----
    subject=/C=US/ST=OR/L=PORTLAND/O=ORACLE/OU=PDC/CN=WARNING: FOR TEST PURPOSES ONLY! DO NOT USE COMMERCIALLY!
    issuer=/C=US/ST=OR/L=PORTLAND/O=ORACLE/OU=PDC/CN=WARNING: FOR TEST PURPOSES ONLY! DO NOT USE COMMERCIALLY!
    No client certificate CA names sent
    SSL handshake has read 807 bytes and written 325 bytes
    New, TLSv1/SSLv3, Cipher is AES256-SHA
    Server public key is 1024 bit
    Secure Renegotiation IS NOT supported
    Compression: NONE
    Expansion: NONE
    SSL-Session:
    Protocol : TLSv1
    Cipher : AES256-SHA
    Session-ID: A66F9DD036604C6B2DDF05591FC3614D
    Session-ID-ctx:
    Master-Key: DC0E5BB6EEFE0E6B60AA4A2A65974B793500803930A8EFABB141F9DED25819A98FA00C365B9D61D579745C69CAA60C56
    Key-Arg : None
    Start Time: 1272964747
    Timeout : 300 (sec)
    Verify return code: 10 (certificate has expired)
    ---This looks fine so far. But when I'm issuing an HTTP-Command, e.g. GET / HTTP/1.0, the connection gets closed immediately (openssl just says 'closed' and I'm back to the commandline again). When adding the -msg to the openssl commandline, I'm getting the following output:
    GET / HTTP/1.0
    TLS 1.0 Alert [length 0002], warning close_notify
    01 00
    closed
    TLS 1.0 Alert [length 0002], warning close_notify
    01 00The ssl_engine_log contains the following (set to LogLevel debug):
    [04/Mai/2010 11:23:19 00976] [info] Connection to child 2 established (server soa1.karlsbad2.promatis.de:443, client 127.0.0.1)
    [04/Mai/2010 11:23:20 00976] [trace] inside shmcb_store_session
    [04/Mai/2010 11:23:20 00976] [trace] session_id[0]=89, masked index=25
    [04/Mai/2010 11:23:20 00976] [trace] entering shmcb_insert_encoded_session, *queue->pos_count = 0
    [04/Mai/2010 11:23:20 00976] [trace] entering shmcb_expire_division
    [04/Mai/2010 11:23:20 00976] [trace] we have 14385 bytes and 133 indexes free - enough
    [04/Mai/2010 11:23:20 00976] [trace] storing in index 0, at offset 0
    [04/Mai/2010 11:23:20 00976] [trace] session_id[0]=89, idx->s_id2=51
    [04/Mai/2010 11:23:20 00976] [trace] leaving now with 124 bytes in the cache and 1 indexes
    [04/Mai/2010 11:23:20 00976] [trace] leaving shmcb_insert_encoded_session
    [04/Mai/2010 11:23:20 00976] [trace] leaving shmcb_store successfully
    [04/Mai/2010 11:23:20 00976] [trace] shmcb_store successful
    [04/Mai/2010 11:23:20 00976] [trace] Inter-Process Session Cache: request=SET status=OK id=593330BC94651266418548085D63F57C timeout=300s (session caching)
    [04/Mai/2010 11:23:25 00976] [info] Connection to child 2 closed with standard shutdown (server soa1.karlsbad2.promatis.de:443, client 127.0.0.1)This seems fine for me.
    When adding the -bugs to the openssl commandline (saying "Switch on all SSL implementation bug workarounds") everything is working fine (with the same output for openssl, using sslv3 and the following additional line in the ssl-log: [info] Initial (No.1) HTTPS request received for child 34 (server soa1.karlsbad2.promatis.de:443) (at the end just before connection close).
    When setting the client to use ssl2 (-ssl2) everything is fine too. When doing -ssl3 it is the same as without any parameter.
    The certificate has expired message and the test-certificate seem not to be related with my problems, since the same problems arise on our production server having a "real and valid" SSL certificate certified by a renowned SSL-CA.
    When setting SSLProtocol +SSLv2 in the ssl.conf openssl is working fine too. But this is not an option as sslv2 is no longer supported by Firefox (giving me an error-message when accessing the page).
    I played around with SSLCipherSuite in the ssl.conf without success. I fear mod_ossl has a bug when working with the specified ssl-parameters. Is there any way out of this?
    Any help would be highyl appreciated,
    Best regards
    Johannes Michler
    PS: This is the ssl_engline_log during startup:
    [04/Mai/2010 11:22:32 00880] [info] Server: Oracle-HTTP-Server/1.3.34, Interface: mod_ossl/10.1.3.0.0, Library:
    [04/Mai/2010 11:22:32 00880] [info] Init: 1st startup round (still not detached)
    [04/Mai/2010 11:22:32 00880] [trace] Shared-memory segment has 512000 available
    [04/Mai/2010 11:22:32 00880] [trace] shmcb_malloc attempt for 512000 bytes failed
    [04/Mai/2010 11:22:32 00880] [trace] shmcb_malloc attempt for 511998 bytes failed
    [04/Mai/2010 11:22:32 00880] [trace] shmcb_malloc attempt for 511996 bytes failed
    [04/Mai/2010 11:22:32 00880] [trace] shmcb_malloc attempt for 511994 bytes failed
    [04/Mai/2010 11:22:32 00880] [trace] shmcb_init allocated 511992 bytes of shared memory
    [04/Mai/2010 11:22:32 00880] [trace] entered shmcb_init_memory()
    [04/Mai/2010 11:22:32 00880] [trace] for 511992 bytes, recommending 4266 indexes
    [04/Mai/2010 11:22:32 00880] [trace] shmcb_init_memory choices follow
    [04/Mai/2010 11:22:32 00880] [trace] division_mask = 0x1F
    [04/Mai/2010 11:22:32 00880] [trace] division_offset = 64
    [04/Mai/2010 11:22:32 00880] [trace] division_size = 15997
    [04/Mai/2010 11:22:32 00880] [trace] queue_size = 1604
    [04/Mai/2010 11:22:32 00880] [trace] index_num = 133
    [04/Mai/2010 11:22:32 00880] [trace] index_offset = 8
    [04/Mai/2010 11:22:32 00880] [trace] index_size = 12
    [04/Mai/2010 11:22:32 00880] [trace] cache_data_offset = 8
    [04/Mai/2010 11:22:32 00880] [trace] cache_data_size = 14385
    [04/Mai/2010 11:22:32 00880] [trace] leaving shmcb_init_memory()
    [04/Mai/2010 11:22:32 00880] [info] Shared memory session cache initialised
    [04/Mai/2010 11:22:32 00880] [info] Init: Initializing (virtual) servers for SSL
    [04/Mai/2010 11:22:32 00880] [info] Init: Configuring server soa1.karlsbad2.promatis.de:443 for SSL protocol
    [04/Mai/2010 11:22:32 00880] [trace] Init: (soa1.karlsbad2.promatis.de:443) Configuring permitted SSL ciphers [ALL:!ADH:!EXPORT56:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP]
    [04/Mai/2010 11:22:32 00880] [trace] Init: (soa1.karlsbad2.promatis.de:80) Configuring permitted proxy SSL ciphers [DEFAULT]
    [04/Mai/2010 11:22:32 00880] [trace] Init: (soa1.karlsbad2.promatis.de:443) Configuring permitted proxy SSL ciphers [DEFAULT]
    [04/Mai/2010 11:22:32 00880] [trace] Init: (127.0.0.1:7200) Configuring permitted proxy SSL ciphers [DEFAULT]
    [04/Mai/2010 11:22:33 00880] [info] Init: 2nd startup round (already detached)
    [04/Mai/2010 11:22:33 00880] [trace] Shared-memory segment has 512000 available
    [04/Mai/2010 11:22:33 00880] [trace] shmcb_malloc attempt for 512000 bytes failed
    [04/Mai/2010 11:22:33 00880] [trace] shmcb_malloc attempt for 511998 bytes failed
    [04/Mai/2010 11:22:33 00880] [trace] shmcb_malloc attempt for 511996 bytes failed
    [04/Mai/2010 11:22:33 00880] [trace] shmcb_malloc attempt for 511994 bytes failed
    [04/Mai/2010 11:22:33 00880] [trace] shmcb_init allocated 511992 bytes of shared memory
    [04/Mai/2010 11:22:33 00880] [trace] entered shmcb_init_memory()
    [04/Mai/2010 11:22:33 00880] [trace] for 511992 bytes, recommending 4266 indexes
    [04/Mai/2010 11:22:33 00880] [trace] shmcb_init_memory choices follow
    [04/Mai/2010 11:22:33 00880] [trace] division_mask = 0x1F
    [04/Mai/2010 11:22:33 00880] [trace] division_offset = 64
    [04/Mai/2010 11:22:33 00880] [trace] division_size = 15997
    [04/Mai/2010 11:22:33 00880] [trace] queue_size = 1604
    [04/Mai/2010 11:22:33 00880] [trace] index_num = 133
    [04/Mai/2010 11:22:33 00880] [trace] index_offset = 8
    [04/Mai/2010 11:22:33 00880] [trace] index_size = 12
    [04/Mai/2010 11:22:33 00880] [trace] cache_data_offset = 8
    [04/Mai/2010 11:22:33 00880] [trace] cache_data_size = 14385
    [04/Mai/2010 11:22:33 00880] [trace] leaving shmcb_init_memory()
    [04/Mai/2010 11:22:33 00880] [info] Shared memory session cache initialised
    [04/Mai/2010 11:22:33 00880] [info] Init: Initializing (virtual) servers for SSL
    [04/Mai/2010 11:22:33 00880] [info] Init: Configuring server soa1.karlsbad2.promatis.de:443 for SSL protocol
    [04/Mai/2010 11:22:33 00880] [trace] Init: (soa1.karlsbad2.promatis.de:443) Configuring permitted SSL ciphers [ALL:!ADH:!EXPORT56:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP]
    [04/Mai/2010 11:22:33 00880] [trace] Init: (soa1.karlsbad2.promatis.de:80) Configuring permitted proxy SSL ciphers [DEFAULT]
    [04/Mai/2010 11:22:33 00880] [trace] Init: (soa1.karlsbad2.promatis.de:443) Configuring permitted proxy SSL ciphers [DEFAULT]
    [04/Mai/2010 11:22:33 00880] [trace] Init: (127.0.0.1:7200) Configuring permitted proxy SSL ciphers [DEFAULT]
    [04/Mai/2010 11:22:33 00976] [info] Server: Oracle-HTTP-Server/1.3.34, Interface: mod_ossl/10.1.3.0.0, Library:
    [04/Mai/2010 11:22:33 00976] [info] Init: 1st startup round (still not detached)
    [04/Mai/2010 11:22:33 00976] [trace] Shared-memory segment has 512000 available
    [04/Mai/2010 11:22:33 00976] [trace] shmcb_malloc attempt for 512000 bytes failed
    [04/Mai/2010 11:22:33 00976] [trace] shmcb_malloc attempt for 511998 bytes failed
    [04/Mai/2010 11:22:33 00976] [trace] shmcb_malloc attempt for 511996 bytes failed
    [04/Mai/2010 11:22:33 00976] [trace] shmcb_malloc attempt for 511994 bytes failed
    [04/Mai/2010 11:22:33 00976] [trace] shmcb_init allocated 511992 bytes of shared memory
    [04/Mai/2010 11:22:33 00976] [trace] entered shmcb_init_memory()
    [04/Mai/2010 11:22:33 00976] [trace] for 511992 bytes, recommending 4266 indexes
    [04/Mai/2010 11:22:33 00976] [trace] shmcb_init_memory choices follow
    [04/Mai/2010 11:22:33 00976] [trace] division_mask = 0x1F
    [04/Mai/2010 11:22:33 00976] [trace] division_offset = 64
    [04/Mai/2010 11:22:33 00976] [trace] division_size = 15997
    [04/Mai/2010 11:22:33 00976] [trace] queue_size = 1604
    [04/Mai/2010 11:22:33 00976] [trace] index_num = 133
    [04/Mai/2010 11:22:33 00976] [trace] index_offset = 8
    [04/Mai/2010 11:22:33 00976] [trace] index_size = 12
    [04/Mai/2010 11:22:33 00976] [trace] cache_data_offset = 8
    [04/Mai/2010 11:22:33 00976] [trace] cache_data_size = 14385
    [04/Mai/2010 11:22:33 00976] [trace] leaving shmcb_init_memory()
    [04/Mai/2010 11:22:33 00976] [info] Shared memory session cache initialised
    [04/Mai/2010 11:22:33 00976] [info] Init: Initializing (virtual) servers for SSL
    [04/Mai/2010 11:22:33 00976] [info] Init: Configuring server soa1.karlsbad2.promatis.de:443 for SSL protocol
    [04/Mai/2010 11:22:33 00976] [trace] Init: (soa1.karlsbad2.promatis.de:443) Configuring permitted SSL ciphers [ALL:!ADH:!EXPORT56:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP]
    [04/Mai/2010 11:22:33 00976] [trace] Init: (soa1.karlsbad2.promatis.de:80) Configuring permitted proxy SSL ciphers [DEFAULT]
    [04/Mai/2010 11:22:33 00976] [trace] Init: (soa1.karlsbad2.promatis.de:443) Configuring permitted proxy SSL ciphers [DEFAULT]
    [04/Mai/2010 11:22:33 00976] [trace] Init: (127.0.0.1:7200) Configuring permitted proxy SSL ciphers [DEFAULT]

    Did you find a solution to this issue? We are having a similar issue trying to deploy a Paypal IPN on OAS 10.1.2.3. The IPN messages coming from Paypal appear to be attempting an SSLv2 handshake. In our case SSLv2 is disabled due to our security requirements so the connection is killed by our App Server. We have found that manually sending the IPN messages works correctly.

  • Read from a config file in File Adapter in SOA Suite 11g

    I want to read from a config file in order to determine whether to archive or delete the file after processing using file adapter in SOA Suite 11g. How do i do that.

    only part i replied on was the part of how to read a file
    but i think in your case you could do the next
    use the sync file adapter to read in the file during your process
    based on this content you set a variable "myOutputDirectory"
    then create a file adapter (write) which will store the file on file system
    http://docs.oracle.com/cd/E23943_01/integration.1111/e10231/adptr_file.htm#CIACICFD
    4.3.2.2.5 Specifying a Dynamic Outbound File Name
    and use that (jca.file.Directory) property to store the file either on the archive location or the delete location

  • Unable to start Oracle Soa suite 10g on Windows 7

    I am able install oracle soa suite 10g on Windows7 platform. But I am unable to start Oracle Soa Suite 10g. Wenever I am starting the SOA suite a new window is popping up the default color scheme of windows 7 is getting changed, but after that this window is disappearing without showing any error. From the task manager console I can see that a javaw process is getting started, but this opmn process is not getting started.
    System configuration -
    OS : Windows7
    RAM: 2 GB
    SOA Suite installation : Default (Including JDK and DataBase configuration).
    If you have any resolution to this strange problem please let me know. Thanks in advance.

    I would be surprised if the amount of RAM in your machine is a limiting factor...
    These blog posts contain useful info when running SOA Suite with resources on the low end of the spectrum. You could also use the [BPM AMI on Amazon EC2|http://www.deltalounge.net/wpress/2010/06/soa-suite-11gr1-ps2-notes-and-blogs/] ...
    hth

  • Compatibility Check of SOA Suite 10.1.3.5. Over WebLogic 10.1.3.3

    Hi,
    I am seeking one clarification regarding SOA Suite 10.1.3.5. installation over Weblogic 10.1.3.3. As per installation note available over the internet at various site I came to know that for SOA Suite 10.1.3.5 u need to install Weblogic 10.1.3.1. but I have installed the SOA Suite 10.1.3.5 over the Weblogic 10.1.3.3 coz I was already using the 10.1.3.3 as part of OSB11g installation. In my project I am using both OSB11g and SOA Suite 10.1.3.5 and both required different verison of weblogic server while I have installed both on same weblogic server version which is 10.1.3.3 in our lab environment.
    As of now things are working fine in Lab environment but I have to take decision whether we can use the same combination in production server or not.
    Can any one give some clerification on this issue.

    Hello,
    Currently Oracle SOA suite 10.1.3.5 is certified on oracle weblogic 10.3.1 only. It is not yet certified on Oracle Weblogic 10.3.3 (used by OSB 11g). When we say "certified" then it means that fully tested and ready to be used and in case any issue comes product vendor will provide the support.
    So I will recommend that first of all you contact Oracle Support to get green signal (which I don't think that they will give) to use Oracle Weblogic 10.3.3 for Oracle SOA suite 10.1.3.5 in production and IF (and only if) they assure you to provide support then go ahead and use this combo in production otherwise you will have to use 10.3.1
    You may refer the certification matrix of Oracle SOA 10.1.3.5 here -
    http://www.oracle.com/technetwork/middleware/ias/downloads/oracle-soa-certification-r3-10-131499.xls
    Regards,
    Anuj

  • How can I use custom WLST commands for Oracle SOA Suite in Weblogic

    Hi There,
    I'm trying to view and search the weblogic log files using WLST on a Solaris/Unix system.
    I have come across this "custom WLST commands for Oracle SOA Suite" and thought of using the custom logging commands to get my task done.
    However, my WLST shell is not recognizing the commands and giving me the NameError!
    wls:/devDomain1/domainRuntime> listLogs()
    Traceback (innermost last):
    File "<console>", line 1, in ?
    NameError: listLogs
    I tried the commands listLogs, displayLogs, getLogLevel & setLogLevel but in vain!
    I have followed the instructions as per the oracle recommendation of using Custom WLST commands (http://docs.oracle.com/cd/E29597_01/core.1111/e10105/getstart.htm#ASADM10692) as below
    - Launched the WLST shell from Oracle Home.
    cd ORACLE_HOME/common/bin
    ./wlst.sh
    - Tried to run the listLogs command from domainRuntime()
    I would like to know if I need to import any additional libraries to run the custom WLST commands for Oracle SOA Suite in my WLST shell?
    I have only weblogic 10.3.1 server installed on my Solaris 10 machine on which I have deployed the OSB application software.
    There is no SOA Suite installed.
    Or is there any other way I can browse the Server Log file and get the list of log messages? Basically I would like to use this feature in my script to customize it according to my requirement of listing specific error logs which I can work it out if I know how to make these commands work.
    Please advise if this is possible and how?
    Cheers.
    Satish

    I have tried on my OSB installation (no SOA Suite here), the command listLogs() works (I was in online mode, after a connect), and the classpath is:
    CLASSPATH=/opt/oracle/fmw11_1_1_5/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/opt/oracle/fw11_1_1_5/patch_ocp360/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/lib/jvm/java-1.6.0-sun-1.6.0.33.x6_64/lib/tools.jar:/opt/oracle/fmw11_1_1_5/wlserver_10.3/server/lib/weblogic_sp.jar:/opt/oracle/fmw11_1_1_5/wlserver_10./server/lib/weblogic.jar:/opt/oracle/fmw11_1_1_5/modules/features/weblogic.server.modules_10.3.5.0.jar:/opt/oracle/fmw111_1_5/wlserver_10.3/server/lib/webservices.jar:/opt/oracle/fmw11_1_1_5/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/optoracle/fmw11_1_1_5/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar::/opt/oracle/fmw11_1_1_5/oracle_common/moules/oracle.jrf_11.1.1/jrf-wlstman.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/lib/adfscripting.jar:/opt/oracl/fmw11_1_1_5/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/lb/mdswlst.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/resources/auditwlst.jar:/opt/oracle/fmw11_1_1_5/oracle_cmmon/common/wlst/resources/igfwlsthelp.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/resources/jps-wlst.jar:/optoracle/fmw11_1_1_5/oracle_common/common/wlst/resources/jrf-wlst.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/reources/oamap_help.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/opt/oracle/fmw111_1_5/oracle_common/common/wlst/resources/ossoiap_help.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/resources/osoiap.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/resources/ovdwlsthelp.jar:/opt/oracle/fmw11_1_1_5/oracle_comon/common/wlst/resources/sslconfigwlst.jar:/opt/oracle/fmw11_1_1_5/oracle_common/common/wlst/resources/wsm-wlst.jar:/optoracle/fmw11_1_1_5/utils/config/10.3/config-launch.jar::/opt/oracle/fmw11_1_1_5/wlserver_10.3/common/derby/lib/derbynet.ar:/opt/oracle/fmw11_1_1_5/wlserver_10.3/common/derby/lib/derbyclient.jar:/opt/oracle/fmw11_1_1_5/wlserver_10.3/common/drby/lib/derbytools.jar::
    The wlst.sh I have used is /opt/oracle/fmw11_1_1_5/osb/common/bin/wlst.sh
    I hope this can help

  • Using Ant to execute WLST setAppMetadataRepository command

    I am having a problem using Ant to execute the setAppMetadataRepository WLST command. This command puts an entry in adf-config.xml that points to the MDS datasource.
    This is the ant task that I'm using. These commands work from the WLST tool, but when using them with Ant, I get the error below.
       <target name="setAppMetadataRepositoryUsingWlst">
          <wlst debug="true" failonerror="true">
             <script>
                archive = getMDSArchiveConfig(fromLocation='C:/ADE/michande_platSavedSearch/commsplatform/ri/dist/comms-ri.ear')
                archive.setAppMetadataRepository(repository='mds-commsRepository',partition='riPartition', type='DB', jndi='jdbc/mds/commsRepository')
                archive.save()
            </script>
          </wlst>
       </target>Here is the error that I get (NameError: getMDSArchiveConfig). This is saying that getMDSArchiveConfig isn't a recognized command. Other commands (like connect(...)) work ok from ant, but not these MDS commands. Is this a bug or am I doing something wrong here?
    [wlst] <WLSTTask> All lines will be trimmed by 12
    [wlst] <WLSTTask> Line: archive = getMDSArchiveConfig(fromLocation='C:/ADE/michande_platSavedSearch/commsplatform/ri/dist/comms-ri.ear'). Final trim length: 12, String length: 124
    [wlst] <WLSTTask> Line: archive.setAppMetadataRepository(repository='mds-commsRepository',partition='riPartition', type='DB', jndi='jdbc/mds/commsRepository') . Final trim length: 12,
    String length: 147
    [wlst] <WLSTTask> Line: archive.save(). Final trim length: 12, String length: 26
    [wlst] <WLSTTask> The script that will be executed
    [wlst] archive = getMDSArchiveConfig(fromLocation='C:/ADE/michande_platSavedSearch/commsplatform/ri/dist/comms-ri.ear')
    [wlst] archive.setAppMetadataRepository(repository='mds-commsRepository',partition='riPartition', type='DB', jndi='jdbc/mds/commsRepository')
    [wlst] archive.save()
    [wlst]
    [wlst] Error: Error executing the script snippet
    [wlst] archive = getMDSArchiveConfig(fromLocation='C:/ADE/michande_platSavedSearch/commsplatform/ri/dist/comms-ri.ear')
    [wlst] archive.setAppMetadataRepository(repository='mds-commsRepository',partition='riPartition', type='DB', jndi='jdbc/mds/commsRepository')
    [wlst] archive.save()
    [wlst]
    [wlst] due to:
    [wlst] Traceback (innermost last):
    [wlst] File "<string>", line 1, in ?
    {color:red} [wlst] NameError: getMDSArchiveConfig{color}
    Thanks,
    Mike

    Not all WLST installations are equivalent. Have a read of [http://www.oracle.com/technetwork/articles/adf/part10-085778.html]this, specifically the paragraph right after Figure 13 for something to try. Bottom line - the WLST that comes with the base WLS server install cannot do the MDS operations.
    John

  • Deploying a SOA COmposite using WLST

    Hi,
    can any one tell me step by step procedure to deploy an SOA composite using WLST..
    Thanks in advance..

    Hi,
    Go to the similar directory in your server in the command prompt...
    C:\Oracle\Middleware\home_11g\Oracle_SOA1\common\bin
    execute the WLST command..., wlst.cmd for windows, wlst.sh for unix...
    now...
    before executing the deploy command, make sure you generate the SAR file for the composite by deploy--->deploy to SAR--->check the file should be there under the project directory source location.
    now back to the command prompt...
    wls:/offline>sca_deployComposite(serverURL="http://localhost:8001",user="weblogic",password="welcome1",partition="Enterprise",sarLocation="C:\work\Test-App\WLSTSoaService\deploy\sca_WLSTSoaService_rev1.0.jar",forceDefault=true,overwrite=true);
    press enter, then the command will be executed successfully...
    check the composite in the EM console, it will be there.
    Hope this helps,
    N

Maybe you are looking for

  • Error Upload document in portal ........

    Hi : We have integrated the portal with Active Directory to make single sign-on, but when trying to attach a document we need insert user and pass and we cant attach documents.. We make a trace and get this result Java Plug-in 1.6.0_03 Usar versión J

  • MR21 LSMW

    Dear All, I've done a BDC recording for MR21 in a LSMW. when the recording is complete i was able to find all the fields recorded. But during the step of Field Mapping I was not able to find the fields in Target Structure(RECMR21). My source structur

  • Problem removing the clock

    Hi. As you know, symbian displays three screens that constitutes the desktop. I wanted to have the clock in the center screen, as i didn't like to have it on the left screen. So i added it to the center screen, but, i'm not able to remove the widget

  • Email Notifications Based on Response

    Is it possible to have the email notification go to different email addresses based on response from a drop down menu? For example, a "Safety" issue, when chosen, would be automatically forwarded to the safety manager  or a "Clinical" issue to the cl

  • Can't stop scrolling

    i can't stop the scrolling. it is driving me crazy and I can't get any work done. What to do?