Runtime configuring JCaps Environment  properties

Hey hi,
Can any one suggest a way for configuring the JCaps environment runtime through properties file or XML file.
Example :
Configuring
1.SQLServer properties
2. Email properties.

Assuming you are talking about Classic Repository Based CAPS 6, all details can be found at: http://wikis.sun.com/download/attachments/38767325/JavaCAPS6+Application+Configuration.pdf.
Essentially - first you create (extract) the configuration, before you change it and import it. Note that it could be a good idea to remove any SJMQ configuration from the file before importing it - or explicitly set the authentication information in the file, since the existing user/pwd will not be properly generated. In addition if you use JMSJCA options in the Connectivity Map (such as redelivery) they will be superseded if you override the SJMQ information - and thus not work at all.
Johan

Similar Messages

  • Sensors - Configuring JMS queue properties at runtime through console

    Hi,
    Kindly guide me with configuring of the JMS queue name at runtime for a JMS sensor configured on an activity in Jdeveloper's BPEL process. I have created a JMS sensor but i want to change the queue name at runtime without rebuilding i.e if possible through console. Does oracle 10g SOA suite gives ant such facility where by we can configure sensor related properties from console ??
    NOTE: i m creating NON-BAM JMS and custom sensors

    Hi,
    This is not supported at the moment but planned to be added soon.
    So right now, you have to redeploy the process in case of a sensor/
    sensor action modification.
    Regards,
    Ralf

  • Error while opening the CAF runtime configurator

    Dear Experts,
    I am very much new to the CAF, and working on it initially.
    Let me explain what exactly i did.
    1. Created a New development Project.
    2. Created an entity under entity services.
    3. Created an operation under operation tab. This is a findby operation which uses one of the attributes as the search criteria.
    4. Saved the project.
    5. Right clicked on the project and selected Generate code.
    6. Now right clicked on the project, and then Selected BUILD, and in the popup i deselected Build if Neccesary check box.
    7. Now right click on the project and choosen Deploy to J2EE.
    8. Under Tasks/Properties tab, i am getting an error saying that, Failed to deply atleast one .Ear file. It also says that it needs administrator rights.even though user login which i used for SDM in the step 8 has Administrator role.
    9. Now, when i goto the browser, and type the url: http://<host>:<port>/caf, where replacing host with my hostname and port with the port, I am getting an exception.
    It says " Cluster wide exception.... " and some other thing.
    Finally, I am struck up with these two errors..
    1. Error while deploying it in to J2EE .
    2. Unable to open CAF runtime configurator.
    Hope i am clear in conveying the problem.
    Need you help and guidance.
    Regards,
    Shashikanth. D

    Hello,
    Please check the Character formats / Text stlyes/Paragarph defined within Main window, The error is because of some inconsistency withinthe layout component.
    Regards,

  • Where is the built in Java runtime and development environment in my MAC???

    I keep reading that my macintosh (dual G5 with OSX 10.4.10) came with a fully configured and ready-to-use Java runtime and development environment, however I cannot find, nor do I know how to open it. Doe anyone know how to open this up? thanks so much!

    Your JRE should already be configured so that when you double-click a self-executing jar or open a page with an Applet it will run.
    Your compiler (javac) should be available through your sheel in your terminal application.
    If none of this helps you (and it may well not) you may want to consider installing an IDE. Eclipse for example has a Mac OS version, I am sure there are others but I do not develop on Mac so I can't tell you about them.
    http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/20071103/eclipse-java-europa-fall2-macosx-carbon.tar.gz

  • ADF BC: Optimal Application Module Runtime Configuration

    Have implemented an intranet application for 1000 users using the following technologies implemented on Oracle JDeveloper 10.1.3.0.4:
    ADF BC for my Services layer
    JSF for my Controller layer
    JSF and ADF for my View layer
    ADF Model for my Data layer
    The application is entirely designed by .jspx and .jsp pages (for reports), handling 106 application modules, with several entity and view objects and without any step-by-step stateful scenario. At each page, there appears a commit button to commit the end-user transaction, and a rollback button to return to the previous page.
    The application is database-backed from an Oracle Database 10g, deployed on three application servers Oracle 10.1.3.1 on three different hosts on Suse Linux OS, used data-source connection and AM pooling, and load-balanced by one webcacher in front of the 3 servers.
    Under stress test scenario, on a heavy system load in production environment, several ADF State Management errors were recognized that pushed the webacher and application server with the maximum load to automatic restarts due to either demand for JVM increased heap size or errors from the database that the TNS listener complained it could not handle any more connections.
    Thus, we started a safety/reliability tess for all our application module components (disabling "Enable application module pooling"), and a stress test using a third-party stress tool at work, but we're still faced with several questions.
    (a) What is the best strategy for AM configuration, to quit State Management at all since our application doesn't need it, and if so can it be done globally or declaratively and not individually and programmatically?
    (b) Testing on application module runtime configuration, we observed that not to "hang-on" on a connection -default functionality- but to release it at the end of each HTTP request, as each deployment is concentrated on a single data-source connection pool/single user, brought less open JDBC connections on A.S.? Is this the optimal run-time configuration than the default for our case?
    (c) If State Management errors are resolved, and using a software balancer before 3 application servers, regulate the traffice by 1/3 to each, is it possible that a system crash will be avoided next time?
    So, our problems related to ADF tunning and State Management Errors, but we need a good advice on this topic as the overall documentation is case-specific.

    Chapter 29 "Understanding Application Module Pooling" in the ADF Developer's Guide for Forms/4GL Developers on the ADF Learning Center at http://www.oracle.com/technology/products/adf/learnadf.html is the best place to start. There is no "magic" optimal configuration that I (or anyone here, really) can suggest to you. You need to understand the various "knobs and dials" that control the pool sizing and pool cleanup behavior, and then apply application-specific information to this information to derive what the optimal configuration for your particular application will be. The chapter explains how the application module pool and database connection pool interact, and in which situations it is best to change the default setting of the jbo.doconnectionpooling property to true.
    Chapter 28 "Application Module State Management" describes the functionality of that facility of the framework, as well as how to release the application module in stateless, unmanaged mode if you need to.
    By following the tips in the section "28.3.2.4 Setting Release Level in an Custom ADF PageLifecycle" (which builds on information introduced in section "10.5.4.1 Globally Customizing the ADF Page Lifecycle"), you can generically impose a different release level in your application without "touching" every page.
    As a general rule, if you have:
    (*) Lots of distinct application modules
    (*) Each of which is used as a separate data control (rather than being nested inside a containing application module as described in section "8.9.3 Root Application Modules Versus Nested Application Module Usages" of the dev guide)
    (*) Each of which uses the same database connection
    Then as described in section "29.8 How Database and Application Module Pools Cooperate" in the guide, your application can decrease the total overall number of connections used by using the non-default setting of jbo.doconnectionpooling=true.
    Applications using many distinct data controls in the span of a single user's session need to be aware of Bug# 4566186 ("PERF: ADFBINDINGFILTER CHECKS OUT ALL ADF BC DATA CONTROLS USED AT LEAST ONCE"). This issue has been fixed in JDev/ADF 11g, but apparently the fix was too complex to accommodate a 10.1.X backport. I'm trying to document a workaround and publish it on my blog, but I'm not finished with it yet.

  • Configure HFM environment with SSL

    Hi all
    I am in the middle of process to install HFM environment
    For the first time I need to configure HFM environment with SSL
    Before I started to install the HFM environment with SSL
    I read the SSL CONFIGUATION GUIDE to understand what I need to configure
    My environment based on web logic web server version Bea WebLogic_9.1_Express
    As I started I read the part of information on configuring your web server for SSL
    The next step was creating CA. The Company created for me CA ( file *.cer ) that I can continue with the issue, and this is what I do:
    I configure the HSS for SSL Using a text editor, open Hub.properties. Create the following entry in Hub.properties. sslEnabled=true
    And. Saved the file Hub.properties.
    The next step was configure the HSS Server on WebLogic
    I Log on to the Web Logic Administration Console.
    Select Servers > Shared Services (admin).
    From General tab, I select SSL Listen Port Enabled.
    Specify the port (for example, 58082) on which Shared Services will listen for SSL communication
    At last I Navigate to Keystore tab and set up the identity and trust keystore
    And fill the parameters
    At the end I restarted HSS services and Log on to User Management Console as Shared Services Administrator. Connect using the secure
    URLhttps://<host>:<SSL-port>/interop; for example, https://myServer:58082/
    interop.
    The things doesn’t seems that they work, I don’t know how can I be sure that all the parameter's that I fill is right?
    Nothing writes on Hyperion SSL PDF
    The web logic doesn't notify any error, all I can is just to get to the standard port 58080
    Thank
    Renan

    Hi Renan,
    One thing to realize is you don't need to have Shared Services in SSL mode to have HFM in SSL mode.
    The main reason you would want Shared Services in SSL mode was if IT/Info security mandated that your directory service (active directory, ldap, ...) be encrypted. If the corporate directory service is not encrypted you should skip making Shared Services encrypted which will simplify things some.
    Also once you had gotten shared services up on 58082 you would need to unregister/register all the installs to use 58082 and check the SSL box on the Shared Services install.
    Good Luck,
    -John

  • Multiple runtime configurations

    Hi,
    I'd like to set up multiple runtime configurations on a project. i.e. I want to be able to run the same java class with multiple program arguments or virtual machines. Is there any way I can do this without creating a separate project or using <target> in an ant file?
    Thanks in advance for any help,
    Venura

    Hi Venura,
    You can do this in Project Properties. On the Profiles page, click New... to create a new profile. You can change many of the runtime settings associated with the project for each individual profile.
    Thanks,
    Brian
    JDev Team

  • [svn] 3420: Fix for Runtime Configuration issues.

    Revision: 3420
    Author: [email protected]
    Date: 2008-09-30 11:13:54 -0700 (Tue, 30 Sep 2008)
    Log Message:
    Fix for Runtime Configuration issues. If the destination is initialized, then you'll want to initialize the instance when it is created. Otherwise, you want to wait until the destination is initialized. Typically, when using runtime configuration, the destination is not initialized and the instance is not initialized, instead the properties on the instance are set.
    qa: no
    bug: n/a
    checkintests: passed
    Details:
    modules/core/src/flex/messaging/Destination.java
    * add an initialized flag and a method for retrieving the value
    modules/core/src/flex/messaging/factories/JavaFactory.java
    * fix typos in comments
    modules/core/src/flex/messaging/factories/JavaFactoryInstance.java
    * if the destination is initialized, then you'll want to initialize the factory instance when it is created
    modules/core/src/flex/messaging/FactoryDestination.java
    * if the destination was not initialized before the factory instance was created, the factory instance will be initialized when the destination is initialized
    Modified Paths:
    blazeds/trunk/modules/core/src/flex/messaging/Destination.java
    blazeds/trunk/modules/core/src/flex/messaging/FactoryDestination.java
    blazeds/trunk/modules/core/src/flex/messaging/factories/JavaFactory.java
    blazeds/trunk/modules/core/src/flex/messaging/factories/JavaFactoryInstance.java

    Hi JBKL, and a warm welcome to the forums!
    For the Ethernet Location... Is that Interface dragged to the top of Network>Show:>Network Port Configurations?
    It may be that the Router needs a Firmware update to keep up with the OS Updates... check online, don't trust any automatic checking feature in the Router.
    Where are we now?

  • Runtime Workbench Proxy Runtime Configuration

    Hi
    I'm trying to setup the RWB proxy runtime configuration. However our ERP system shows up as an ALE-Logical system and not a Business System in the Configuration tab of the RWB and doesnt appear at all in the Component Monitoring tab so we cant monitor messages from it through the RWB.
    We've tried deleting the business and technical system and re-registering them with RZ70 as well doing a CPA Cache refresh. But that hasnt resolved the issue.
    I have compared this system to another system in the SLD which does show up as a Business System and can be monitored through Component Monitoring. They seem to be exactly the same.
    Is there some kind of setting we are missing on the ERP system?
    Thanks
    Riaz

    Hi Riaz & kesava,
    RWB Proxy runtime setup can be seen from RWB->Component Monitoring under Components section Domain XI->Integration Engine.
    Check the following
    1)Can the SLD be reached?  - RFC destination, ping, getLCR server, read cache, BS defined
    2) Does the Integration Engine know the business system?   - Business system name = BS_100, Role = Application System
    3)Are roles in SXMS_CONF_ITEMS and SLD consistent?   - Role = Application System
    4)Has an Integration Server destination been defined?   Destination 'XIabcd100' to the Integration Server 
    Cheers
    Veera

  • Proxy runtime configuration in PI 7.1

    Hi Experts,
    How to do proxy runtime configuration in PI 7.1?
    Please send any documents or link available for the same.
    Regards,
    Nidhi Kukreja

    Proxy Configuration :
    Create Logical System for ECC & PI both side.
    On PI Configure :
    1. Create RFC Destination from PI to ABAP (Type : H).
    2. Make an entry in SXMB_ADM for Integration server.
    3. Activate Services in SICF.
    On ECC Configure :
    1. Create RFC Destination from ABAP to PI (Type : H).
    2. Make an entry in SXMB_ADM for Application server.

  • Configure an environment for apps for SharePoint (SharePoint 2013)

    I am trying to follow the instructions in the article, "Configure an environment for apps for SharePoint (SharePoint 2013)". I have purchased an additional domain for the apps. However, in step 2 it says to create a CNAME from that domain to my
    sharepoint domain. 
    Which site do I point the CNAME to? I have 2 host-named site collections for my application.

    Since you say there are no dumb questions here goes:
    I think my web server is IIS. If that is the case, I have 2 sites in IIS, the "Default" which is the WHS2011 remote login page and "SharePoint-80" which is the name of my SharePoint application. There is nothing in IIS that
    has My internal server name.domain.XXX. There is a domain name that came with WHS2011 of XXX.homeserver.com (the "Default" site). I purchased a domain for my SharePoint site collections. Again, neither of these uses my internal server name so
    I know I am missing something here.
    Thanks

  • Configure an Environment for Apps for SharePoint 2013

    hH,
    We are building QA environment for Sharepoint 2013. For this my management asked me to configure the APPS store. But when i referred the MSDN article, they are suggesting
    " You must purchase a domain name from a domain name provider for your apps, for example, ContosoApps.com."
    Which is not possible in my case as purchasing a new domain requires lot of approvals also this is an QA environment.
    So please suggest on the below points
    1) whats wrong to build a sub domain like APPS.XXXX.COM instead of XXXXAPPS.COM
    2) since it is in a QA environment, is it necessary to have a SSL  ??
    3) is it need to have a different APPS stores for QA & PROD environments.
    Thanks,
    Praveen
    Sharepoint HELP

    Hi Praveen,
    you don't need to buy a domain use your internal DNS
    no need for SSL since it is QA
    i think you mean app catalog, each environment will be having it app catalog
    some other links
    http://blogs.technet.com/b/mspfe/archive/2013/01/31/configuring-sharepoint-on-premise-deployments-for-apps.aspx
    http://www.nothingbutsharepoint.com/2013/02/13/configure-an-environment-for-apps-for-sharepoint-2013-aspx/
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • Proxy Runtime configuration in Quality

    Dear All,
    I am sending data from XI to BI through server proxy.
    We have link between ERP quality and XI development. Do i have to do Proxy runtime configuration in quality server directly. Do I need to do it manually or transport from development?
    Regards.
    SM.

    > We have link between ERP quality and XI development. Do i have to do Proxy runtime configuration in quality server directly.
    > Do I need to do it manually or transport from development?
    You have to do this manually.

  • BI JDBC - How to configure Helper.jdbc.properties?

    Hi,
    I am little bit confused regarding where to configure
    Helpers.jdbc.properties.
    In a new project I have placed the Helpers.java and
    exported it as a par.And from the .PAR i extracted the 
    jar file and included it in my JDBC project.
    Pl. suggest how to configure the Helper.jdbc.properties.
    regards
    Mrutyunjay

    Friends,
    Would be thankful for any hints.
    Thanks & Regards
    Mrutyunjay

  • [svn] 4226: Bug: LCDS-517 - Reliable messaging destinations created using runtime configuration (bootstrap service) not working.

    Revision: 4226<br />Author:   [email protected]<br />Date:     2008-12-03 15:25:17 -0800 (Wed, 03 Dec 2008)<br /><br />Log Message:<br />-----------<br />Bug: LCDS-517 - Reliable messaging destinations created using runtime configuration (bootstrap service) not working. <br />QA: Yes<br />Doc: No<br />Checkintests Pass: Yes<br /><br />Details:<br />* Make sure the <reliable/> option is treated as a nested element rather than an attribute of its parent <network> element.<br /><br />Ticket Links:<br />------------<br />    http://bugs.adobe.com/jira/browse/LCDS-517<br /><br />Modified Paths:<br />--------------<br />    blazeds/trunk/modules/core/src/flex/messaging/Destination.java

    Revision: 4226<br />Author:   [email protected]<br />Date:     2008-12-03 15:25:17 -0800 (Wed, 03 Dec 2008)<br /><br />Log Message:<br />-----------<br />Bug: LCDS-517 - Reliable messaging destinations created using runtime configuration (bootstrap service) not working. <br />QA: Yes<br />Doc: No<br />Checkintests Pass: Yes<br /><br />Details:<br />* Make sure the <reliable/> option is treated as a nested element rather than an attribute of its parent <network> element.<br /><br />Ticket Links:<br />------------<br />    http://bugs.adobe.com/jira/browse/LCDS-517<br /><br />Modified Paths:<br />--------------<br />    blazeds/trunk/modules/core/src/flex/messaging/Destination.java

Maybe you are looking for

  • Borderless printing with Adobe reader or acrobat and HP Officejet Pro 8100

    Hello, When printing borderless with my Pro 8100 the printed pdf moves about 2mm to te left on the paper. (White vertical strip on the right side is the result and on the left side something is missing!). What causes the problem seems to be that the

  • Oracle 8.1.7 on Redhat 9: Tns Listener TNS-12545, TNS-12560, TNS-005 errors

    I have installed Oracle 8.1.7 on RH9 following Arothmel at www3.sympatico.ca/arothmel with success. The database is created, and oracle can be lunch without problem but "lsnrctl start" give errors: [oracle@padbd oracle]$ lsnrctl start LSNRCTL for Lin

  • Producer Consumer Issues

    Hi all, I'm creating my first producer-consumer program, and I've run into a few problems.  I have two producer loops (one is a pressure controller and the other is power reading loop).  I've used queues to pass data into the consumer loop which reco

  • Problem with case when statement, when doing an insert.

    Hi there,  I have written the following coding, that has got an issue, due to not being allowed null values to be inserted into a column on a table. ,Case  WHENCL.LocationISNOTNULLANDCL.[Floor]ISNOTNULLANDCL.RoomISNULLTHEN (SELECTTop1 FL.FloorIDFROMP

  • Rollover Menu buttons with audio

    I am trying to create a menu with Rollover Graphics for the highlights. So I have the buttons autoactivate to a duplicate menu with a different graphic button. (ex. Main menu button one color - auto activates to Main Menu button one black and white -