Deployment of ESB for 10.1.3.4 (trying to amend Endpoint properties)

I have downloaded the new deployment code (esbdeploymentautomation) to enable you to deploy an ESB between environments.
I am deplying an ESB process from Dev to Systest.
I have amended the build_tst.properties file to include all the relevant info and the build.properties.
At the bottom of this file I have added
# Values required for replace tasks.
code_dir=C:\Project\Client\jdev\jdev\mywork\dii\esbInt110Flow
search_text=/u01/esb/out/XX/int110_01
replace_text=/u01/esb/XX/INT110/out
These lines are trying to change the Endpoint property of a FileAdapter where the directories are different in the new environment.
I run extract.sh and it successfully creates a deploymentPlan_tst.xml. Great!!
I can then successfully run the deploy.sh and it deploys my ESB into the new environment but it doesn't change the Endpoint property.
When you look at the log files generated it doesn't even appear to try and run the replaceToken process.
Any ideas if this replaceTokens actually works?
When the extract.sh is run it also generates logging which seems to suggest the replaceTokens runs after the DeployESBSuitcase:
*Build sequence for target(s) `ExtractESBDeploymentPlan' is [ExtractESBDeploymentPlan]*
*Complete build sequence is [ExtractESBDeploymentPlan, DeployESBSuitcase, replaceTokens, usage, UndeployESBEntities, ]*
But from what I can see when you finally run the deploy.sh it only runs the DeployESBSuitcase process and nothing else.
The only reason for using this automaytion process is so that we can amend Endpoint properties and URLs as we deploy but this is the part that doesn't seem to work....
Help!!
Regards
Stuart

You need to run the replaceToken before the deployESBSuitecase.
Here is my example, it does a find and replace on host name
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<project name="ESBDeploymentProject" default="usage">
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<property environment="env"/>
<property name="esbProjectToDeploy" value="${basedir}/deployment"/>
<property name="deploymentPlanFilename" value="${esbProjectToDeploy}/deploymentPlan.xml"/>
<property name="ImportFilename" value="${env.ORACLE_HOME}/Deployment/deploy/lib/ESBMetadataMigrationTaskdefs.xml"/>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Environment specific properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<echo>Property Files ${env.ORACLE_HOME}/Deployment/deploy/resources/esb.${env.paramtarget}.properties</echo>
<property file="${env.ORACLE_HOME}/Deployment/deploy/resources/esb.${env.paramtarget}.properties" />
<property name="targetDeploymentPlanFilename" value="${esbProjectToDeploy}/${esb.deployTargetPlan}"/>
<target name="param-target-chk" unless="env.paramtarget">
<fail message="Target deployment environment parameter not set" />
</target>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Import, to enable the custom ESB Metadata Deployment ant tasks
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<echo>Import ${ImportFilename}</echo>
<import file="${ImportFilename}"/>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- ESB Deployment Automation
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<target name="DeployESBProject" depends="param-target-chk">
<deployESBProjects
esbMetadataServerHostname="${soa.suite.hostname}"
esbMetadataServerPort="${soa.suite.port}"
userName="${soa.suite.admin.username}"
password="${env.soapassword}">
<esbProject directory="${basedir}"/>
</deployESBProjects>
</target>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- List the GUID's for the UndeployESBEntities target e.g.:
<system guid="8D61C3F0871111DB8F2675C60E6C31C6"/>
<serviceGroup guid="0EB5F380896111DBBFBC9530C01627AC"/>
<service guid="0547F370841611DBBFCF2D9BF80323FA"/>
<serviceGroup guid="B90E6B70895F11DBAF1483EEF470B835"/>
<system guid="A62C91C1841511DBBFCF2D9BF80323FA"/>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<target name="UndeployESBEntities" depends="param-target-chk">
<undeployESBEntities
esbMetadataServerHostname="${soa.suite.hostname}"
esbMetadataServerPort="${soa.suite.port}"
userName="${soa.suite.admin.username}"
password="${env.soapassword}">
<system guid="ED8243D1B9A211DCAF33D38D99DD8682"/>
<service guid="63085310B9A311DCAF33D38D99DD8682"/>
</undeployESBEntities>
</target>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Metadata Promotion to different ESB Metadata Servers (environments)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<target name="ExtractESBDeploymentPlan">
<mkdir dir="${esbProjectToDeploy}"/>
<delete file="${deploymentPlanFilename}" verbose="true"/>
<extractESBDeploymentPlan
sourceDir="${basedir}"
deploymentPlanFile="${deploymentPlanFilename}"/>
</target>
<target name="ModifyESBDeploymentPlan" depends="param-target-chk">
<!-- <xmltask source="${deploymentPlanFilename}" dest="${targetDeploymentPlanFilename}">
<replace path="/deploymentPlan/systemDeploymentPlan/properties/property[@name = 'Host']/@value" withText="${soa.suite.hostname}" />
<replace path="/deploymentPlan/systemDeploymentPlan/properties/property[@name = 'Port']/@value" withText="${soa.suite.port}" />
</xmltask> -->
<copy file="${deploymentPlanFilename}" tofile="${targetDeploymentPlanFilename}"/>
<replaceregexp file="${targetDeploymentPlanFilename}"
match="http://[^/]*/"
replace="http://${soa.suite.hostname}:${soa.suite.port}/"
byline="true" />
</target>
<target name="DeployESBSuitcase"
depends="param-target-chk, ExtractESBDeploymentPlan, ModifyESBDeploymentPlan">
<deployESBSuitcase
esbMetadataServerHostname="${soa.suite.hostname}"
esbMetadataServerPort="${soa.suite.port}"
sourceDirectory="${basedir}"
deploymentPlanFilename="${targetDeploymentPlanFilename}"
forcedDeployment="true"/>
</target>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Usage
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<target name="usage">
<echo>
======== Environment =====================================================
SOA_DA_HOME = ${env.SOA_DA_HOME}
CLASSPATH = ${env.CLASSPATH}
ANT_HOME = ${env.ANT_HOME}
ENVIRONMENT = ${env.paramtarget}
======== Properties =====================================================
basedir = ${basedir}
SOA Suite server = ${soa.suite.hostname}:${soa.suite.port}
OC4J instance = ${soa.suite.oc4j.instancename}
==============================================================================
</echo>
<exec executable="ant" dir="${basedir}" vmlauncher="false">
<arg value="-projecthelp"/>
</exec>
</target>
</project>
cheers
James

Similar Messages

  • How do I create only SOAP WSDL bindings when deploying my ESB?

    Currently when I use either jDeveloper or the ant deployESBSuitcase task to deploy the ESB that is the entry point to my application I get two bindings in the deployed wsdl. One soap binding that my client will be using and another esb binding. Is it possible to modify the deployment plan to only generate the SOAP binding? Do I need to have the esb binding for an esb that is only used as the entry point to my application? I would prefer to have the wsdl that is exposed to my clients to not have the vendor extensions if possible.
    thanks

    I have experienced the exact same problem. There is no good solution to these poorly designed and overly complex login protocols. After unsuccessfully trying to retrieve my password or change my password  I finally set up a new email account, a new Apple ID and a new iTunes account.
    I know it is not a good solution, but it worked.

  • BizTalk Architecture using ESB for High Performance for 10000 requests per minute

    Hi All,
    I need to design an architecture for BizTalk ESB for high performance.
    We are expecting 10000 requests per minute at peak time.
    There is no much business logic but rather messaging scenarios.
    Please suggest.
    Regards,
    vikingsss

    Thanks Johns,
    When I said Clone, I meant We will have 2 BizTalk Nodes, Application deployed on Both just to balance the Load using F5 Load balancer.
    And Yes I have considered the SQL Clustering, but is my idea regarding this is correct if I say:
    One Cluster 1 Node 1 Message Box will sit
    On Cluster 2 Node 1 Other BizTalk DB's will sit
    In case of failure on Cluster 1 Node 1(Message box) It will failover to Cluster 1 Node 2
    In case of any other failure on Cluster 2 Node 1 (Other DB's) it will failover to Cluster 2 Node 2
    Regards,
    vikingss

  • Deploy JDBC driver for SQL server 2005 on PI 7.1

    How to deploy JDBC driver for SQL server 2005 on PI 7.1
    We are in SAP NetWeaver 7.1 Oracle 10G
    Third party system is  SQL server 2005
    There are different JDBC versions are available to download for SQL server 2005.
    I am not sure about the applicable version for the PI 7.1 SP level. Again JMS Adapter needs to be deploy along with this.
    Please help

    Hi,
    Hope this How to Guide help you.
    How To Install and Configure External Drivers for the JDBC & JMS Adapters from
    www.sdn.sap.com/irj/sdn/howtoguides
    Regards,
    Karthick.
    Edited by: Karthick Srinivasan on Apr 13, 2009 4:07 PM

  • Deploying JDBC driver for SQL Server 2005 on PI 7.1

    How to Deploy JDBC driver for SQL Server 2005 on PI 7.1 on Windows 2003 server
    We are in NW PI 7.1 and third party db is sql server 05.
    Found How-to Guide SAP NetWeaver u201804 but unable to find for NW PI 7.1
    Can any one help me on this? (looking for guide step by step procedure)
    Regards
    Mahesh

    Hi,
    Check these:
    Re: Installing JDBC Drivers for PI 7.1
    how to deploy MS Sql Server 2005 and 2008 jdbc driver
    Mention of a SAP Note in the first link or refer this note [831162|https://service.sap.com/sap/support/notes/831162]
    Regards,
    Abhishek.

  • WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?

    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?
    I have installed KB2734608, but when I search MS13-101 , no patch for Win 2012.
    Can you help me resolve this problem ?
    Thanks

    On Thu, 10 Apr 2014 06:01:48 +0000, fujitsu08 wrote:
    WSUS 3.2 work on Win2008 R2, how to use it deploy MS patch for Win 2012 ?
    WSUS has its own, dedicated forum where the WSUS experts answer questions.
    You should repost your question here:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverwsus
    Paul Adare - FIM CM MVP
    Aibohphobia: n. Fear of Palindromes

  • Error deploying JDBC driver for SQL Server 2005

    Hi all
    I'm trying to deploy a JDBC driver for MS SQL Server 2005 (downloaded [here|http://www.microsoft.com/downloads/details.aspx?familyid=C47053EB-3B64-4794-950D-81E1EC91C1BA&displaylang=en]). When I try to deploy it according to the instructions found [here|http://help.sap.com/saphelp_nwce10/helpdata/en/51/735d4217139041e10000000a1550b0/frameset.htm] it fails.
    The error in the logs doesn't give any useful information though. It only says Error occurred while deploying component ".\temp\dbpool\MSSQL2005.sda".
    Has anyone else deployed a driver for SQL Server 2005, or perhaps have any suggestions of what else I could try?
    Thanks
    Stuart

    Hi Vladimir
    That's excellent news! Thanks for the effort you've put into this. I'm very impressed with how seriously these issues are dealt with, specifically within the Java EE aspects of SAP.
    May I make two suggestions on this topic:
    1. Given that NWA has such granular security permissions, please could the security error be shown when it is raised? This would help immediately identify that the problem isn't actually a product error, but rather a missing security permission (and thus save us time and reduce your support calls).
    2. Please could the role permissions be clearly documented (perhaps they already are, and I just couldn't find the docs?) so we know what is and isn't included in the role. The name is very misleading, as a "superadmin" is generally understood to have no limitation on their rights - so clear documentation on what is in-/excluded would be most helpful.
    On a related topic, I came across another issue like this that may warrant your attention (while you're already looking into NWA security issues). I logged a support query about it (ref: 0120025231 0000753421 2008) in case you can retrieve details there (screenshots, logs, etc.). It's basically a similar security constraint when trying to create a Destination. I'm not sure if this is something you would like to include as standard permissions within the NWA_SUPERADMIN role or not, but I think it's worth consideration.
    Thanks again for your help!
    Cheers
    Stuart

  • Soa-infra deployment is down for one of the servers in Cluster

    Hi All,
    We have upgraded our system from PS2 to PS5.
    It is a Cluster environment which is having 2 nodes (soa_server1 and soa_server2)
    We have figured out that soa-infra deployment for soa_server2 displaying 'Down (Down red color arrow)' in em.
    When I try to start up trough the em, getting below error.
    Invoking Start Up operation for application soa-infra on target soa_server2.
    [Deployer:149193]Operation 'start' on application 'soa-infra' has failed on 'soa_server2'
    [Deployer:149034]An exception occurred for task [Deployer:149026]start application soa-infra on soa_server2.: Exception preparing module: EJBModule(oracle.bpm.bpm-services.ejb.jar)
    Unable to deploy EJB: SecurityServiceBean from oracle.bpm.bpm-services.ejb.jar:
    [EJB:011055]Error deploying the EJB 'SecurityServiceBean(Application: soa-infra, EJBComponent: oracle.bpm.bpm-services.ejb.jar)', the JNDI name 'ejb/bpm/services/SecurityServiceBean' is already in use. You must set a different JNDI name in the weblogic-ejb-jar.xml deployment descriptor or corresponding annotation for this EJB before it can be deployed.
    Operation Start Up on target soa-infra Failed. Please see error logs for details.
    Below error is there in the server log files.
    <Error><Cluster><BEA-000140><Failed to deserialize statedump from server <IP of primary server><IP of secondary server> domain:soa_server1 with java.lang.ClassNotFound
    java.lang.ClassNotFoundException.oracle.bpm.bpmn.engine.instanceManagementServiceRemote ............
    We have done the steps in doc ID 1474558.1 also.
    Still getting the error.
    We cannot deploy bpmn projects since
    Any quick Response greatly appreciated.
    Thanks,
    Nir....

    Hi Vishal ,
      Thanks for your reply. I tried searching for  them but couldn't find any.
    Regards,
    Tripti.

  • Deploy Task form for Human Task gives Exception

    Hi,
    I created a simple asynchronous process having just a human task to test the features of JDeveloper.
    This project compiled successfully.However at the time of deployment I am facing a java.lang.SecurityException.
    I am using :
    JDeveloper :10.1.3.4
    Ant Build O/p:
    Buildfile: E:\BPEL\Examples\handson\SampleHumanTask\build.xml
    [java] Java Result: 1
    validateTask:
    [echo]
    | Validating workflow
    [validateTask] url is file:/E:/BPEL/Installables/JDeveloper/integration/bpm/support/files/WorkflowTaskDefinition.xsd
    [validateTask] Validation of workflow task definitions is completed without errors
    deployProcess:
    [echo]
    | Deploying bpel process SampleHumanTask on localhost, port 8888
    [deployProcess] Deploying process E:\BPEL\Examples\handson\SampleHumanTask\output\bpel_SampleHumanTask_1.0.jar
    [deployProcess] Successfully deployed the process "SampleHumanTask" on server "localhost" and port "8888"
    deployTaskForm:
    [echo]
    | Deploying workflow form for SampleHumanTask on localhost, port 8888
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Application Deployer for default_SampleHumanTask_1_0_Approver STARTS.
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Copy the archive to E:\BPEL\Installables\OracleAS_1\j2ee\home\applications\default_SampleHumanTask_1_0_Approver.ear
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initialize E:\BPEL\Installables\OracleAS_1\j2ee\home\applications\default_SampleHumanTask_1_0_Approver.ear begins...
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Unpacking default_SampleHumanTask_1_0_Approver.ear
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Done unpacking default_SampleHumanTask_1_0_Approver.ear
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Unpacking workflowform.war
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Done unpacking workflowform.war
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initialize E:\BPEL\Installables\OracleAS_1\j2ee\home\applications\default_SampleHumanTask_1_0_Approver.ear ends...
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Starting application : default_SampleHumanTask_1_0_Approver
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initializing ClassLoader(s)
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initializing EJB container
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Loading connector(s)
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Starting up resource adapters
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initializing EJB sessions
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Committing ClassLoader(s)
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initialize workflowform begins...
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Initialize workflowform ends...
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Started application : default_SampleHumanTask_1_0_Approver
    [deployTaskForm]
    [deployTaskForm] 08/09/16 09:45:54 Notification ==>Application Deployer for default_SampleHumanTask_1_0_Approver COMPLETES. Operation time: 188 msecs
    [deployTaskForm]
    [deployTaskForm]
    [deployTaskForm] BindWebApp error: javax.management.ReflectionException
    [deployTaskForm]
    BUILD FAILED
    E:\BPEL\Examples\handson\SampleHumanTask\build.xml:97: Error while deploying the form on server "localhost" Error message :
    java.lang.SecurityException
    at oracle.ide.IdeCore$7.checkExit(IdeCore.java:177)
    at java.lang.Runtime.exit(Runtime.java:88)
    at java.lang.System.exit(System.java:868)
    at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.executeCommand(Oc4jAdminCmdline.java:141)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployIAS(DeployForm.java:818)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployForm(DeployForm.java:578)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployForms(DeployForm.java:849)
    at com.collaxa.cube.ant.taskdefs.DeployForm.execute(DeployForm.java:875)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at oracle.jdevimpl.ant.runner.AntLauncher.launch(AntLauncher.java:321)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter.runAnt(InProcessAntStarter.java:295)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter.mav$runAnt(InProcessAntStarter.java:43)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter$1.run(InProcessAntStarter.java:71)
    Total time: 17 seconds
    Can anybody point out where I am going wrong?
    Thanks
    Dileep

    Hi,
    I tried that but did not work.
    Build.properties file:
    platform = ias_10g
    hostname = localhost
    http.hostname = localhost
    http.port = 8888
    cluster = false
    oc4jinstancename = home
    j2ee.hostname = localhost
    rmi.port = 12401
    opmn.requestport = 6003
    admin.user = oc4jadmin
    admin.password = welcome1
    jndi.user = ${admin.user}
    jndi.password = ${admin.password}
    asinstancename =
    domain = default
    rev = 2.0
    verbose = false
    apps = E:/BPEL/Installables/OracleAS_1/j2ee/home/applications
    default-web-app.dir = E:/BPEL/Installables/OracleAS_1/j2ee/home/applications/../default-web-app
    bpeltest.minCoverage = 100%
    bpeltest.timeout = 90
    bpeltest.numWorkers = 1
    bpeltest.package =
    bpeltest.results.dir = ${default-web-app.dir}${file.separator}results
    bpel.version = 10.1.3.1.0
    bpel.build = PCBPEL_10.1.3.1.0_GENERIC_061009.0802
    bpel.home = E:/BPEL/Installables/OracleAS_1/bpel
    oracle.home = E:/BPEL/Installables/OracleAS_1/bpel/..
    j2ee.home = E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home
    jndi.url = opmn:ormi://HTIPL-40130:6003:home
    jndi.InitialContextFactory = com.evermind.server.rmi.RMIInitialContextFactory
    soapServerUrl = http://LOCALHOST:8888
    client.classpath = E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/oc4jclient.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/../../lib/xml.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/rmic.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/../../lib/dms.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/oc4j.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/lib/jmxri.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/lib/javax77.jar;E:/BPEL/Installables/OracleAS_1/bpel/../j2ee/home/admin_client.jar;E:/BPEL/Installables/OracleAS_1/bpel/lib/orabpel.jar;E:/BPEL/Installables/OracleAS_1/bpel/lib/orabpel-common.jar;E:/BPEL/Installables/OracleAS_1/bpel/lib/orabpel-thirdparty.jar
    Is there some other thing I should take care of?
    Thanks
    Dileep
    Edited by: user10230482 on Sep 18, 2008 1:44 AM

  • I can deploy Oracle XE for production in the Web?

    I can deploy Oracle XE for production on web site with support for 100 users or more?

    I run Oracle 10g XE on a home computer with 2GB of memory, and when I have a web browser, email, and SQL Developer open I am using more than 1GB of memory. If you're running Microsoft Office and other software on this machine while multiple users are accessing the database, my guess is that you're running out of physical memory and the operating system is running on swap/pagefile space (using the hard disk to emulate physical memory, which is extremely slow in comparison).
    You could take a look at this by opening the Windows Task Manager (CTRL+SHIFT+ESC), watching the graphs/numbers in the Performance tab, and seeing if the "Commit Charge" number at the bottom is exceeding the amount of physical memory you have installed (check by viewing System Properties: WINKEY+BREAK).
    My suggestion is, at the least, to run the XE database on a standalone PC/server (probably one with better CPU than a Celeron, which doesn't have much CPU cache), and make sure all the switches in your workplace are running at 100Mbps or 1Gbps speed, so that users pulling large datasets will have decent response times.

  • CISCO NAC deployment with ASA for internal servers (DMZ)

    We have deployed cisco ASA for our clients access to DMZ servers few months ago. Now we want to integrate cisco NAC solution without removing ASA
    from infrastructure. What will be the best deployment mode of cisco NAC so that clients can also pass through cisco ASA access list also for filtering before reaching to dmz servers.
    what gateway clients will use. Plz help.
    Should i use Virtual Gateway or Real Gateway for NAC. Client should first come to NAC(CAS) and then through ASA to reach DMZ servers.

    Hello,
    This should work. Please review the attached PDF for more clarity on this topic: https://supportforums.cisco.com/docs/DOC-9102
    HTH,
    Faisal

  • Help!! Auto-Deploy and Check For Updates in an OPMN-managed instance

    I'm trying to use the auto-deploy and check for updates functions in an OAS 10.1.0.3 but I can not make it work.
    I don't Know if this functions are only availables for a standalone OC4J instance.
    Can anyone help me??
    Thanks!!! and sorry for my poor english.

    Auto-Deploy is not really designed for an OPMN managed instance -- in earlier releases, this would not even work correctly since deployments where stored in the DCM subsystem and any subsequent configuration changes made via DCM would overwrite the config and you'd lose the "auto-deployed" application.
    In 10.1.3.x where DCM is no longer in the picture, and the auto-deploy polling is a function of Oc4J itself, it may work. Be aware that this is not something that is tested in OPMN managed environments.
    What configuration changes have you made?
    You need to ensure you have modified server.xml so the attribute check-for-updates="all" and you've added the attribute application-auto-deploy-directory and have it pointing at a directory to watch.
    -steve-

  • Windows Assessment and Deployment Kit (ADK) for Windows 2012 Server

    Hi
    I need to download Windows ADK for Windows 2012 Server. The link mentioned on microsoft website "http://www.microsoft.com/en-in/download/details.aspx?id=30718" is not reachable. Can anyone please tell me, from where I can download Windows ADK for
    2012 Server.
    Thanks
    Manik Bansal

    Hi Johan, Hi Manik,
    Your reply with the link for the Windows Assessment and Deployment Kit (ADK) for Windows® 8 at http://www.microsoft.com/en-us/download/details.aspx?id=30652 has been very much appreciated.
    I have also found a new and updated link to the *NEW* Windows Assessment and Deployment Kit (Windows ADK) for Windows 8.1 at http://www.microsoft.com/en-us/download/details.aspx?id=39982 that was released and published on 2013-Oct-17.
    Please note that this ADK can be used with Windows Server 2012, but there are some important differences between the Windows 8 ADK and the Windows Server 2012 ADK. The TechNet summary of the ADK may be explored at the link http://technet.microsoft.com/en-us/library/jj200116.aspx
    The details of the ADK for Windows 8 may be explored at the link http://go.microsoft.com/fwlink/?LinkId=248647
    Thank you,
    Michael C.

  • Deploying the JRA for the Mobile Administrator

    Hi All,
    I am trying to Deploy the JRA for the Mobile Administrator
    below is the procedure as per document
    Procedure
    1. Start the deploy tool (see Getting Started [External]).
    2. Create a new project and name it.
    3. Switch to the Deployer tab page.
    4. Choose Deploy &#8594; EAR &#8594; Load Module.
    5. Navigate to the file sapjra.rar in the directory \usr\sap\<SID>\SYS\global\ra,
    select it, and confirm with OK.
    But when i press OK it is not able to proceed further.
    what could be the reason ??
    Best Regards,
    AjitR

    when i navigate to sapjra.rar in \usr\sap\<SID>\SYS\global\ra, and press OK
    it doesntcome out of screen it just hangs ,.

  • How are you tracking deployed software versions for traceabili​ty?

    I am curious how others are tracking deployed software versions in automated test environments.
    I am working on a medical device tester and we have a somewhat inefficient method for keeping track of all version numbers. I would like to know what tools are available to automate tracking version throughout a project, from build to viewing later. Or, what methods are typical in this type of environment.
    Essentially, we need to be able to say at any given moment what software version is running at 3 remote locations on several deployed systems.
    For simply automating the process of viewing the version number programmatically, I found this, but we've had issues with it:
    http://digital.ni.com/public.nsf/allkb/D45E3A1E694​815AD86257173005CFD36
    This solution requires a "separate" installer to get the .NET framework onto the target PC. Also, it doesn't work (to my knowledge) with the Help>>About window.
    Comments?
    Dan Richards
    Certified LabVIEW Developer

    Dennis,
    Thanks for replying. We are using SVN. The exact ECO process for this project is under construction as it is a relatively new project and deployments will be at our customer's site. We use JIRA for tracking specific change requests.
    Here's an example of our basic process:
    - Software changes made (according to JIRA tasks) and source code checked in
    - Builds released per schedule with version numbers (from JIRA projects) hard-coded into the application
    - Builds deployed at different locations & times
    Here's what I'd like to see to improve things:
    - Builds released with version numbers generated from one of the following:
       1. Loaded from JIRA release numbers - maybe auto-generated for reference by LabVIEW when building the application
       2. Part of a custom build launcher
             >> This would be a custom interface that runs functions like those in Application Builder palette while also sending version info
             >> Perhaps it could prompt the user for version info or read from something auto-generated.
    - Builds should automatically make version numbers visible within the application (for example, LabVIEW has the Help>>About window)
    - Build numbers should be programmatically/dynamically accessible without having to install an additional .NET framework that isn't listed in 'Additional Installers'
    Curious if there are any tools that support these kinds of things. I am aware of Deploy by Wirebird Labs and Proligent by Averna, although I am lacking in knowledge about specific features.
    Regards,
    Dan
    Dan Richards
    Certified LabVIEW Developer

Maybe you are looking for

  • Cycle Couting for Consignment Stock?

    How to perform Cycle Couting for Consignment Stock at the Customer??

  • Why is Lightroom 5 Crop tool so slow?

    Having this problem all the time. Sluggish crop tool making it impossible to make fine adjustments. Sole solution is to NOT use the 2nd monitor view. It seems this is causing the problem. Except I WANT to use the 2nd monitor-option as a part of my wo

  • How to active my phone

    i fotgot my ID apple and can't log in my g.mail.how to active my phone when i can't log in my ID  ,Imei 013328008428229

  • Hyperlink in VC

    Hello, I have a problem with a hyperlink address in the visual composer. I would like to integrate a hyperlink in the Toolbar in a Tabelview with the following URL: '/irj/servlet/prt/portal/prtroot/com.sap.portal.appintegrator.sap.bwc.Transaction?Sys

  • QAS and Virtual server advice

    Hi all, I am after a little advice I will soon be implementing a QAS system for both our ERP and BI system landscapes, our current setup is that our system landscape has no virtualisation in place, I was wondering if anyone would recommend either hav