DspMaxRequestDepth property in bpel 10.1.3.5

Hi
Can anyone please let me know how and where do I configure dspMaxRequestDepth property in bpel 10.1.3.5 version. In BPEL 10.1.3.3 this property is set at the domain level - Domain configuration.
Thanks
Edited by: 869271 on May 10, 2013 12:44 PM

You can generate a plan for each instance.
For example in build.xml add something like this:
<target name="Generate_Deployment_Plans"
        depends="validateTask, compile, Generate_DEV, Generate_TEST, Generate_PROD"/>
    <target name="Generate_DEV">
        <generateplan planfile="DPlan_DEV.xml"
           verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
    </target>
    <target name="Generate_TEST">
        <generateplan planfile="DPlan_TEST.xml"
           verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
    </target>
    <target name="Generate_PROD">
        <generateplan planfile="DPlan_PROD.xml"
           verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
    </target>Not sure if this is what you are asking for though.

Similar Messages

  • How  to Set JMS property and Read JMS property in BPEL using JMS adapter

    Does any one know how to set or read more than one JMS property in BPEL using JMS adapter. My queue server is Oracle JMS server.
    Any help and sample is well appreciated

    Hi Van
    I have noted that only the attribute "type" is missing. It seems that when you create a "string" property, the attribute "type" is droped from the XML. If you use another type (as "integer" or "double") it stays there.
    If you try to read your properties, except for the "type" attribute, you should be successful, as I am. If you need, please tell me your email, I can send you my code.
    Source Code:
    in ASSIGN activity (process which SENDS the JMS message):
    <assign name="TESTES">
    <copy>
         <from expression="'string'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@type"/>
    </copy>
    <copy>
         <from expression="'name'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@name"/>
    </copy>
    <copy>
         <from expression="'value1'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@value"/>
    </copy>
    <bpelx:append>
         <bpelx:from>
         <Property name="" type="" value=""
              xmlns="http://xmlns.oracle.com/pcbpel/adapter/jms/"/>
         </bpelx:from>
         <bpelx:to variable="HeaderJms" part="outboundHeader"
              query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties"/>
    </bpelx:append>
    <copy>
         <from expression="'string'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@type"/>
    </copy>
    <copy>
         <from expression="'name2'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@name"/>
    </copy>
    <copy>
         <from expression="'value2'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@value"/>
    </copy>
    </assign>
    in ASSIGN activity (process which READS the JMS message)
    <assign name="Assign_1">
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[10]/@name"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[10]/@value"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[12]/@name"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[12]/@value"/>
    <to variable="temp"/>
    </copy>
    </assign>
    Note that I do not try to read the "type" attribute, otherwise it will fail.
    Here is the JMS Header Message received:
    <inboundHeader>
    <JMSInboundHeadersAndProperties xmlns="http://xmlns.oracle.com/pcbpel/adapter/jms/">
    <JMSInboundHeaders>
    <JMSCorrelationID>
    bpel://localhost/pi_lms-c001e/BpelPiAtualizacaoC001E~1.0/3200025-BpInv0-BpSeq1.6-2
    </JMSCorrelationID>
    <JMSDeliveryMode>2</JMSDeliveryMode>
    <JMSExpiration>0</JMSExpiration>
    <JMSMessageID>ID:467DFA1FA1ED459EBF37F51F596C3F12</JMSMessageID>
    <JMSPriority>4</JMSPriority>
    <JMSRedelivered>false</JMSRedelivered>
    <JMSType>com.mercurio.lms.integration.c001eip.c001EIntegrationPoint</JMSType>
    <JMSTimestamp>1201552046253</JMSTimestamp>
    </JMSInboundHeaders>
    - <JMSInboundProperties>
    <Property name="JMSXDeliveryCount" type="integer" value="1"/>
    <Property name="JMSXRecvTimestamp" type="long" value="1201552046698"/>
    <Property name="JMSXUserID" value="lms_dev_int_v1_user"/>
    <Property name="JMS_OracleDeliveryMode" value="2"/>
    <Property name="JMS_OracleTimestamp" type="long" value="1201552046253"/>
    <Property name="JMS_OracleDelay" type="long" value="0"/>
    <Property name="JMSXState" type="integer" value="0"/>
    <Property name="IAS_VERSION" value="10.1.3"/>
    <Property name="JMS_OracleDeliveryMode" value="2"/>
    <Property name="name" value="value1"/> ("type" attribute was droped!!!)
    <Property name="JMS_OracleTimestamp" type="long" value="1201552046253"/>
    <Property name="name2" value="value2"/> ("type" attribute was droped!!!)
    </JMSInboundProperties>
    </JMSInboundHeadersAndProperties>
    </inboundHeader>
    Regards
    Marcelo

  • TimeOut Property in BPEL

    Hi,
    We have a requirement to Indroduce a Timeout Property to 60 secs at BPEL Process level. Usually TimeOut Property will be placed at Partner Link level. Is there any way to introduce the Timeout Property at BPEL Process level? We can change the BPEL Property in BPEL Console but it will apply this property for all the BPEL processes deployed in the instance.
    Any help on this will be highly helpful.
    Thanks,
    Saravana

    Hi:
    Is it for BPEL 10g?
    If it so, take a look to the BPEL Best Practices Guide http://download.oracle.com/technology/tech/soa/soa_best_practices_1013x_drop3.pdf
    there is a very clear explanation about the time out parameters.
    thx
    best

  • Access composite level property in BPEL

    Hi,
       I have a composite level "auditLevel" property defined in composite.xml as given below. Can anyone suggest a way to access that property in BPEL process ?
    <composite name="SetInstanceTitle"
                   revision="1.0"
                   label="2015-04-12_18-52-43_897"
                   mode="active"
                   state="on"
                   xmlns="http://xmlns.oracle.com/sca/1.0"
                   xmlns:xs="http://www.w3.org/2001/XMLSchema"
                   xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
                   xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
                   xmlns:ui="http://xmlns.oracle.com/soa/designer/">
          <import namespace="http://xmlns.oracle.com/CompositeSamples/SetInstanceTitle/SetInstanceTitleWithCondition"
                  location="SetInstanceTitleWithCondition.wsdl" importType="wsdl"/>
          <service name="setinstancetitlewithcondition_client_ep"
                   ui:wsdlLocation="SetInstanceTitleWithCondition.wsdl">
            <interface.wsdl interface="http://xmlns.oracle.com/CompositeSamples/SetInstanceTitle/SetInstanceTitleWithCondition#wsdl.interface(SetInstanceTitleWithCondition)"/>
            <binding.ws port="http://xmlns.oracle.com/CompositeSamples/SetInstanceTitle/SetInstanceTitleWithCondition#wsdl.endpoint(setinstancetitlewithcondition_client_ep/SetInstanceTitleWithCondition_pt)"/>
          </service>
         <property name="auditLevel" many="false">Off</property>
      <component name="SetInstanceTitleWithCondition" version="1.1">
        <implementation.bpel src="SetInstanceTitleWithCondition.bpel"/>
       </component>
    Thanks in advance,
    Saba

    Hi AnatoliAtanasov,
      Thank you for your reply.
    My requirement is to set composite instance title by retrieving SOA Audit Level settings in BPEL process.
    Need to set composite instance title If "auditLevel" is not "Off" or "Inherit".
    If I use this composite level property "<property name="auditLevel" many="false">Off</property>", it is getting reflected in EM Console. Also this property value get change if do auditLevel change from EM console.
    So I thought, I can use this property to control composite instance title setting in BPEL process dynamically.
    Please advise me any possible solution to achieve my requirement.
    Thanks in advance,
    Saba

  • Revision property in bpel.xml file in jar

    Hi!
    I've been trying to set revision property for my BPEL process in JDeveloper but had no success. Even if I set this property in bpel.xml file like this:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase revision="1.0">
    </BPELSuitcase>This property is not set in bpel.xml file in jar file after the build, but it is composed of date, time and build number.
    I can change this property by renaming jar file to zip, unpack, change the property in bpel.xml, pack back to zip and rename back to jar. This way the deployed version is 1.0 as I want it to be.
    Isn't there a way to set this in JDeveloper while developing the process?
    Thanks.
    BB

    Hi Dietrich!
    Thanks for your help. I did what you suggested but had to provide some more property values in build.properties:
    admin.user
    admin.password
    http.hostname and
    http.port
    Without this I couldn't make the build.
    But I don't like this solution, the admin.password is now in clear-text in this file plus I can't use the same jar file for our development server, test server and then production server.
    Is there another way just to set revision property and leave others default?
    BB

  • Question about the usage of wsdlRuntimeLocation property in BPEL process

    Hi,
    I have a BPEL process P1. And then I also have a BPEL process P2. Within P2, I invoke the process P1 using P1.wsdl in the following way -
    <partnerLinkBinding name="WshGetRefDataPL">
    <property name="wsdlLocation">http://rvishnuv-PC2:9700/orabpel/default/WshSendLocRefDataToOtm/WshSendLocRefDataToOtm?wsdl</property>
    </partnerLinkBinding>
    Then I tried adding the following property -
    <property name="wsdlRuntimeLocation">${domain_url}/WshSendLocRefDataToOtm/WshSendLocRefDataToOtm?wsdl</property>
    Then, when I try to deploy my process P2 after adding this in my bpel.xml I keep getting the error -
    Error:
    [Error ORABPEL-10903]: failed to read wsdl
    [Description]: in "bpel.xml", Error loading schemas from wsdl.
    Error while loading schemas from wsdl file at location "file:/H:/jdevhome/jdev/mywork/BPELProj/WshSendRefDataStlToOtm/WshSendRefDataStlToOtm.wsdl". The reason is The specified network name is no longer available.
    Please verify the schemas defined in wsdl.
    [Potential fix]: If your site has a proxy server, then you may need to configure your BPEL Server, designer and browser with your proxy server configuration settings (see tech note on http://otn.oracle.com/bpel for instructions).
    I also tried - <property name="wsdlRuntimeLocation">${domain_url}/WshSendLocRefDataToOtm/WshSendLocRefDataToOtm?wsdl/1.0</property>
    With this change, the process P2 gets deployed successfully, but I am running into the following runtime issue -
    <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    <part name="code">
    <code>WSDLReadingError</code>
    </part>
    <part name="summary">
    <summary>Failed to read wsdl. Failed to read wsdl at "http://rvishnuv-PC2:9700/orabpel/default/WshSendLocRefDataToOtm/WshSendLocRefDataToOtm?wsdl/1.0", because "WSDLException: faultCode=INVALID_WSDL: The document: http://rvishnuv-PC2:9700/orabpel/default/WshSendLocRefDataToOtm/WshSendLocRefDataToOtm?wsdl/1.0 is not a wsdl file or does not have a root element of "definitions" in the "http://schemas.xmlsoap.org/wsdl/" namespace or the "http://www.w3.org/2004/08/wsdl" namespace.". Make sure wsdl is valid. You may need to start the OraBPEL server, or make sure the related bpel process is deployed correctly.</summary>
    </part>
    </remoteFault>
    I have also pasted process P2's bpel.xml below.
    Can you please let me know what I might be missing here?
    Thanks a lot for your help.
    Thanks
    Ravi
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="WshSendRefDataStlToOtm" src="WshSendRefDataStlToOtm.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">WshSendRefDataStlToOtm.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="WshGetRefDataPL">
    <property name="wsdlLocation">http://rvishnuv-PC2:9700/orabpel/default/WshSendLocRefDataToOtm/WshSendLocRefDataToOtm?wsdl</property>
    <property name="wsdlRuntimeLocation">${domain_url}/WshSendLocRefDataToOtm/WshSendLocRefDataToOtm?wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="SendRefDataToGC3PL">
    <property name="wsdlLocation">GLogXML.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>

    there is a nice article on this issue.
    http://www.oracle.com/technology/products/ias/bpel/pdf/bpel-admin-webinar.pdf
    Try another property to see if you have the same issue:
    Deployment in 10.1.2, String substitution, Only have support for:
    • server_url
    • domain_url
    • suitcase_url
    • suitcase_path
    bpel.xml
    <BPELSuitcase>
    <BPELProcess id="OrderBooking" src="OrderBooking.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="CreditRatingService">
    <property name="wsdlLocation">
    http://$(server_url)/orabpel/default/CreditRatingService?wsdl
    </property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>

  • How to set UOO(bea_unitoforder) property within BPEL Adapter property

    Hi,
    In oracle documentation JMS message payload field values can be used as correlation properties.
    Correlation property aliases are used to define from which payload field the correlation property value is taken.
    I need to set the correlation property value from a JMS message header field instead of payload fields. (=JMS JCA Adapter properties).I have a UOO value set same for all messages.Now I need to set this WL property to JMS JCA Adapter property and then create one single instance for all messages in queue.
    Routing a New message to a (New or) Existing Instance:
    http://docs.oracle.com/cd/E28389_01/dev.1111/e10224/bp_correlate.htm#CHDDJEAI
    How is it possible in BPEL???
    Thanks
    Souvik

    Hi,
    In oracle documentation JMS message payload field values can be used as correlation properties.
    Correlation property aliases are used to define from which payload field the correlation property value is taken.
    I need to set the correlation property value from a JMS message header field instead of payload fields. (=JMS JCA Adapter properties).I have a UOO value set same for all messages.Now I need to set this WL property to JMS JCA Adapter property and then create one single instance for all messages in queue.
    Routing a New message to a (New or) Existing Instance:
    http://docs.oracle.com/cd/E28389_01/dev.1111/e10224/bp_correlate.htm#CHDDJEAI
    How is it possible in BPEL???
    Thanks
    Souvik

  • How to increase SyncMaxWaitTime property at BPEL process level

    Hi,
    I want to increase SyncMaxWaitTime property specific to my BPEL process to avoid timeout for a request/response operation. Example: Invoking a plsql procedure from BPEL is taking much time to send response back than the timeout set in server.
    Thanks in advance

    Hi,
    I have changed the synmaxwaitTime in Server as you said...
    So if i said to 900, And in a Simple request/reply process, i am waiting for 10 minutes, the process is timing out after 303 seconds. If i wait for 300 seconds, its getting executed successfully. Can you tell what its exactly happening ?
    Thanks,
    N

  • Get the JMS Queue property in BPEL

    Hi,
    Does anyone have idea on how to get the value of JMSXDeliveryCount which is a prorerty of JMS queue in BPEL. I want that value in the bpel flow to control the Flow on the basis of it. Plz suggest its urgent.
    TIA.
    Best Regards,
    Amit Jain

    Hi,
    I have got the solution to above issue.
    Once my JMS adapter picks the message, it passed the message to BPEL through mediator.
    In Mediator assign, by using $in.property.jca.jms.JMSProperty.JMSXDeliveryCount I got the value.
    Thanks & Regards,
    Amit Jain

  • Where to set SET_MAX_TIME property in BPEL?

    I am writing a simple synchronous service in my jdeveloper. i want to change the max waiting time property(default 45 sec) to 2 min. where can i set this?

    I'm supposing you are talking about 11g version.
    You can set the SyncMaxWaitTime parameter in MBean Browser, from Enterprise Manager.
    Click with the right mouse button on soa-infra > SOA Administration > BPEL Properties
    In this page follow the link at the page botton to open More BPEL Configuration Properties, to open the MBean browser filtering by oracle.as.soainfra.config:name=bpel,*
    In the right pane you will find the SyncMaxWaitTime  property.
    Please have a look on this page:http://docs.oracle.com/cd/E15523_01/integration.1111/e10224/bp_sync.htm#BABCAGIA

  • What is the use correlations property inside bpel invoke activity ?

    Hi all,
    There is a tab called correlations inside invoke activity,what is the use of correlations.What is the significance of its paramaters "set" "initiate" "properties" "pattern".
    And also kindly provide some links how to use it ?

    There is a topic called Correlation Sets. Read about that. There is an example in soa suite around 'mid process receive'. Here you can see an example of how the correlation tab is used.

  • Roll back in Adapter DataBase using Polling | BPEL 11g

    Hello Guys,
    I'm having a problem with roll back for polling "Update a field in Table(Logical Delete)" in DataBase Adapter BPEL 11g.
    My process is:
    Does polling in the table from the database changed the value in column from 0 for 1 and then put the message on a JMS queue.
    The problem is:
    When an exception occurs in the process, for example, exception when posting message in the queue, he does not roll back the database, then the value in the table column is changed to 1 and not 0 as it should.
    Adapter Data Base:
    Oracle XA
    Properties BPEL(Composite):
    <binding.jca config="XXXX_db.jca">
        <property name="singleton">true</property>
    </binding.jca>
    <component name="XXXXX" version="2.0">
        <implementation.bpel src="XXXXX.bpel"/>
        <property name="bpel.config.transaction" type="xs:string" many="false">required</property>
        <property name="bpel.config.oneWayDeliveryPolicy">sync</property>
    </component>
    Properties JCA of Data Base:
    <property name="DescriptorName" value="XXXXXXXXX"/>
          <property name="QueryName" value="XXXXXXSelect"/>
          <property name="MappingsMetaDataURL" value="XXXXXX-or-mappings.xml"/>
          <property name="PollingStrategy" value="LogicalDeletePollingStrategy"/>
          <property name="MarkReadColumn" value="STATUS"/>
          <property name="MarkReadValue" value="1"/>
          <property name="MarkReservedValue" value="2${weblogic.Name}-${IP}"/>
          <property name="MarkUnreadValue" value="0"/>
          <property name="PollingInterval" value="5"/>
          <property name="MaxRaiseSize" value="1"/>
          <property name="MaxTransactionSize" value="10"/>
          <property name="NumberOfThreads" value="1"/>
          <property name="ReturnSingleResultSet" value="false"/>
    Its roll back?
    Could anyone please help me on this.
    Tks,
    Azevedo, Artur.

    You need to ensure that your process is working in a single transaction.
    You are correctly using the XA datasource.
    Next you need to ensure that you do not have a dehydration point in the process and if there is a call to another BPEL process they are in a same transaction.

  • BPEL Archive directory {0} not found

    Hello,
    I have created deploy.xml,to deploy bpel processes on SOA server which is on unix based machine.
    xml is like
    <?xml version="1.0" encoding="windows-1252" ?>
    - <project default="Install" xmlns:oracle="antlib:oracle" basedir=".">
    <property name="process.dir" value="${basedir}" />
    <property name="package.dir" value="${basedir}/Package" />
    <echo>$(basedir) $(process.dir) $(package.dir)</echo>
    - <!-- Accounts Payable WorkFlow Version
    -->
    <property name="FlowVersion" value="1.0" />
    <property environment="env" />
    - <!-- First override from build.properties in process.dir, if available
    -->
    - <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME
    -->
    - <condition property="bpel.home" value="${env.BPEL_HOME}">
    <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
    </condition>
    <xmlproperty file="${process.dir}/bpel/bpel.xml" />
    <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}" />
    - <!-- If bpel.home is not yet using env.BPEL_HOME, set it for JDev
    -->
    - <!--      <property name"bpel.home" value="/apps/soa/product/10.1.3.1/OracleAS_1/bpel">
    -->
    <property name="bpel.home" value="C:/product/10.1.3.1/OracleAS_1/bpel" />
    <property name="bpel.home" value="${oracle.home}/integration/bpel" />
    <property file="${bpel.home}/utilities/ant-orabpel.properties" />
    <property name="bpel.home" value="${bpel.home}" />
    - <!-- import custom ant tasks for the BPEL PM
    -->
    <import file="${bpel.home}/utilities/ant-orabpel.xml" />
    - <!-- Use deployment related default properties
    -->
    - <!--
    This Task is Used to Unjar the jar file & replace the Token value,but needs to identify
    required or not. & if required from where it is get called.
    -->
    - <!-- Define the deployer URL
    -->
    <echo>Deployer URI : deployer:oc4j:opmn://${j2ee.hostname}:${opmn.requestport}/${oc4jinstancename}</echo>
    <property name="deployer.url" value="deployer:oc4j:opmn://${j2ee.hostname}:${opmn.requestport}/${oc4jinstancename}" />
    <echo>------------------------------------------------------------------- | ${env.BPEL_HOME} | Deploying to Server deployer:oc4j:opmn://${j2ee.hostname}/${oc4jinstancename} -------------------------------------------------------------------</echo>
    <property name="process" value="process1" />
    - <target name="FixURLLocations">
    <echo>------------------------------------------------------------------- | Updating Web Service Location Information | JAR file to update: ${p.jarfile} | Web Service Location base: http://${http.hostname}:${http.port} -------------------------------------------------------------------</echo>
    <delete dir="${package.dir}/temp" verbose="no" quiet="yes" failonerror="no" />
    <mkdir dir="${package.dir}/temp" />
    <mkdir dir="${package.dir}/Save" />
    <copy file="${p.jarfile}" todir="${package.dir}/Save" />
    <unjar src="${p.jarfile}" dest="${package.dir}/temp" overwrite="yes" />
    <!-- Code to replace some hardcoded values -->
    <delete file="${p.jarfile}" verbose="no" quiet="yes" failonerror="no" />
    <jar destfile="${p.jarfile}" basedir="${package.dir}/temp" update="yes" />
    <delete dir="${package.dir}/temp" verbose="no" quiet="yes" failonerror="no" />
    </target>
    <target name="Test">
    <echo>---------------------------------------------------------------- | Deploying process GWT_SP_L1WipBPELProcess ----------------------------------------------------------------</echo>
    <antcall target="FixURLLocations">
    <param name="p.jarfile" value="${package.dir}/Test.jar" />
    </antcall>
    <deployProcess user="${admin.user}" password="${admin.password}" domain="${domain}" process="${process.name}" rev="${rev}" dir="${package.dir}/output" hostname="${http.hostname}" httpport="${http.port}" verbose="${verbose}" isSSL="${isSSL}" trustStore="${trustStore}" trustPassword="${trustPassword}" />
    </target>
    <target name="Install" depends="bpel, apps_webservice">
    <tstamp />
    <echo>--------------------------------------------------------- | Deployed all process ---------------------------------------------------------</echo>
    </target>
    <target name="apps_webservice" depends="Test">
    <tstamp />
    <echo>--------------------------------------------------------- | Webserivces and application Installation completed directory "{0}" ---------------------------------------------------------</echo>
    </target>
    <target name="bpel" depends="">
    <tstamp />
    <echo>--------------------------------------------------------- | BPEL Process Installation completed ---------------------------------------------------------</echo>
    </target>
    </project>
    but when I try to run this xml using Ant It,unjar file files replaces code ,make jar again and on deploying it gives following error
    BPEL Archive directory {0} not found.
    Could you please tell me why this error is coming and how i can resolve it?

    Hello,
    Could any one help regarding this.
    Please suggest why d<deployprocess> is failing and giving BPEL Archive directory {0} not found.
    Could
    <copy file="${p.jarfile}" todir="C:\product\10.1.3.1\OracleAS_1\bpel\domains\default\deploy" />
    replace <deployprocess>
    Thanks & Regards,
    Jignya

  • BPEL 10.1.3 - TCP tunneling issue

    Hi,
    this my config:
    SOA Suite 10.1.3
    Jdeveloper 10.1.3 (with web browser and proxy set to null)
    I don't understand how to configure obtunnel.bat to see sopa message between a webs ervice (deployed on localhost:80) and his parterlinks. This is what I did:
    1. stop BPEL server
    2. change obsetenv.bat:
    set PROXY_SET=true
    @REM Where has the JDK (supporting 1.4.1 or higher) been installed on
    @REM this machine?
    set JAVA_HOME=D:\oracle\SOASuite\jdk
    if %PROXY_SET% == "true" goto set_proxy
    set OB_JAVA_PROPERTIES=
    goto end_set_proxy
    :set_proxy
    set OB_JAVA_PROPERTIES="-Dhttp.proxySet=true" "-Dhttp.proxyHost=localhost" "-Dhttp.proxyPort=1234" "-Dhttp.nonProxyHosts=[HTTP_NON_PROXY_HOSTS]"
    :end_set_proxy
    3. start BPEL server
    4. change optSoapShortcut parameter to false
    5. defining a Configuration Property in bpel.xml
    <configurations>
    <property name="localtion" encryption="plaintext">http://localhost:1234/orabpel/default/UtilisateurService</property>
    </configurations>
    6. deploy web service using Jdev
    7. stop BPEL server
    8. start obtunnel.bat with 2 listeners:
    listen port # 1234
    targer hostname 127.0.0.1
    target port # 80
    9. start BPEL server
    but I don't see any message ... :(( what did I miss ?
    Cyryl

    Hi all,
    can anyone please respond to my issue. Its sort of urgent.
    thanks,

  • File Adapter Write: Howto read partnerLinkBinding "logical path"-property?

    A process writes a file to a fileserver, and further down the process I'd like to publish the path+filename of the written file to an external partnerLink.
    I'm looking for something similar to ora:getPreference(), but instead reading a spesific partnerLinkBinding property not just the preferences-section property of bpel.xml.
    alternative 1) From within the BPEL-process I configure a logical path, but I can't see any api for reading that value (my property "OutBoundFiles").
    The value is read and used by the jca:operation within the FileWriter, and I supply a static value for it in the bpel.xml, like in:
    <partnerLinkBinding name="OutboundFileWriter">
    <property name="wsdlLocation">FileWriter.wsdl</property>
    <property name="OutBoundFiles">\\fileserver\OutboundDir</property>
    </partnerLinkBinding>
    alternative 2) The FileWriter wsdl OutboundHeader_msg has the one-and-only element "fileName", which also contains what I'm looking for.
    But I can't see how to read this element either, probably because the BPEL-team don't expose the value, due to the fact that they don't support writing to the element (there is no support for writing files to a dynamic path in version 10.1.2).
    Current workaround:
    Currently I use a preference property in which I copy the "OutBoundFiles"-value, and read it runtime using ora:getPreference(). Not a beauty.

    alternative 3)
    One could use a simple copy rule, by reading the bpel.xml-file:
    <copy>
    <from expression="ora:doc( 'bpel.xml', '/BPELSuitcase/BPELProcess/partnerLinkBindings/partnerLinkBinding[ @name = &quot;OutboundFileWriter&quot; ]/property[ @name = &quot;OutBoundFbFiles&quot; ]') "/>
    <to variable="emailpayloadUNCPath"/>
    </copy>

Maybe you are looking for