Wednesday, 30 July 2014

Install MFT 12c (Managed File Transfer 12.1.3.0.0)


Install MFT (Managed File Transfer 12.1.3.0.0) 12c
     1) Install Certified Database for MFT version
     2)   Run RCU to create required schemas in Database.
    %Oracle_Home%\oracle_common\bin\rcu.bat (comes with installation of OFM12c)
     3)  Set JAVA_HOME environment variable to JDK1.7
     4)  Download Files from the below location 
        (http://www.oracle.com/technetwork/middleware/mft/downloads/index.html)
     5)  Install MFT (Oracle Managed File Transfer requires an existing Oracle Fusion 
        Middleware Infrastructure installation and must be installed in the same 
        Oracle home.)
     Command: %JAVA_HOME%\bin\java -jar fmw_12.1.3.0.0_mft.jar
     6)  Create Domain by running the config.cmd  located in
     %ORACLE_HOME%/oracle_ common/common/bin

   7)   Start Servers

Friday, 4 July 2014

SOA Composite Deployments using ANT commands


In General we all Deploy SOA Composites using J Developer. Jdeveloper uses ant scripts to deploy the composites. These scripts will added when you update the J Developer with SOA plugin. These scripts are located at  %Jdeveloper Home% / bin folder.

Here I will show you deployment of SAR file into SOA server using simple ant commands.

Step1: Open Command Prompt.
Stpe2: Navigate to the Jdeveloper installed folder and in Jdeveloper go to ant folder.
Step3: type the below command in the command prompt.
   ant -f ant-sca-deploy.xml
-DserverURL=http://localhost:8001   -> SOA server url and portnumber
-DsarLocation=C:\deploy\sca_POProcessing_rev6.jar->Jar file with location
-Doverwrite=true   >it will overwrite if already composite exists in server
-Duser=weblogic   >server user name and it will ask for password at runtime
-DforceDefault=true   > Making this composite as default
-Dconfigplan=C:\POProcessing\demed_cfgplan.xml  -> apply configurationPlan
 -Dpartition=partitionname   > Partition name to deploy, if not it will deploy into default partition

Featured post

SOA 12c- Runtime faults project error ( "faultMessageType" is set to "bpel:RuntimeFaultMessage" on this <bpel:catch> activity but it cannot be resolved)

I have used catch for runtime fault and I created the variable for the fault type invalidVariables. While compiling the ...

Popular Posts