Question in bpel.xml

Hi,
Who know the function that property name is "blockingStartStop" in bpel.xml file (10.1.3). It can't be found in Oracle document.
The part bpel.xml is
<...>
<activationAgents>
<activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="pollWRseqFromAbc">
<property name="portType">pollWRseqFromAbc_ptt</property>
<property name="blockingStartStop">false</property>
</activationAgent>
</activationAgents>
<...>
Thanks a lot
Edited by: user7352491 on Nov 14, 2012 11:57 AM

Hi Arthur,
Please verify the namespace in the xml instance matches the xsd used in BPEL. In many cases, the data cannot be copied/transformed successfully if there is a mismatch in namespace.
Eng

Similar Messages

  • Eclipse BPEl Designer -Changes to bpel.xml not saved

    Hi
    Is it possible to save changes made to bpel.xml file while using Eclipse? I was trying to set up preference properties in that file.
    Any say?

    According to our experience, JDEV BPEL Designer encoutered the same problem, you'd better modify the bpel.xml descriptor using external editor such as ultraedit, and save it.
    Modification of bpel.xml works fine for the first time, but often rolled back to the former edition once I restart the JDEV designer. Guess it is a bug.

  • Setting Preferences in bpel.xml

    Hi again, in the bpel.xml you can configure preferences
    for setting value pair properties that are defined in the deployment descriptor of a BPEL process and can be accessed at runtime by the BPEL process
    eg
    <BPELSuitcase>
    <BPELProcess id="test" src="test.bpel">
    <preferences>
    <<property name="myConstant">50</property>
    </preferences>
    </BPELProcess>
    </BPELSuitcase>
    Is there a way this can also be done at the domain level,
    where you can set preference values that can be accessed by all deployed processes? We are basically want to set global runtime "constants" which can be altered and maintained from the BPEL console for all deployed processes.
    thanks
    -Sean

    Thanks Edwin.
    I have a chicken and egg problem here in that I want to set up a list of global values
    that apply to all deployed processes. So I run something like
    ora:doc("http://www.bpel.com:9700/wscommon/globalparams.xml", "/configuration/MaxValue").
    This works fine, however I need to hardcode the full url of the file which is deployed to
    get it to get it too work.
    Is there a way of either accessing this domain wideglobal file relatively such as either
    -ora:doc("/wscommon/globalparams.xml", "/configuration/MaxValue")
    -ora:doc("../wscommon/globalparams.xml", "/configuration/MaxValue")
    -ora:doc("%hostname%/wscommon/globalparams.xml", "/configuration/MaxValue")

  • ActivationAgent in bpel.xml and Quartz Scheduler

    Hi,
    i have added to bpel.xml to schedule my BPEL process.
    <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent"
    partnerLink="FileFtpInboundPL" heartBeatInterval="10">
    <property name="schedulerCallout">DefaultSchedulerCalloutImpl</property>
    <property name="endpointScheduleOn">0 1 * * * ?</property>
    <property name="endpointScheduleOff">0 2 * * * ?</property>
    </activationAgent>
    Can anybody tell me like
    what is role of quartz scheduler in this case?
    Is this above code related to quartz scheduler?
    what is the BPM concept befing this scheduling property?
    Thanks inadvance. It would be great help.
    Edited by: PraveenT2 on Apr 16, 2009 7:15 AM
    Edited by: PraveenT2 on Apr 16, 2009 7:16 AM

    Hi,
    Thank you for the reply.
    Yes,bpel.xml is replaced by composite.xml but i was talking about sceduling the BPEL processes through bpml.xml files.
    The example of which is given in following URL but is related to 10.x version and not 11G:
    Re: How to schedule to invoke BPEL process
    Thank you.

  • Wildcard in wsdlRuntimeLocation inside of bpel.xml

    is there a way to use wildcards (e.g. %) in the property wsdlRuntimeLocation inside of the bpel.xml?
    e.g.
    <partnerLinkBinding name="RetryHandler_TUS">
    <property name="wsdlLocation">ErrorHandler.wsdl</property>
    <property name="wsdlRuntimeLocation">
    ${domain_url}/ErrorHandler/1.2.1-%/ErrorHandler?wsdl
    </property>
    </partnerLinkBinding>
    deployed are the processes:
    ErrorHander 1.2.0-1
    ErrorHander 1.2.0-2
    ErrorHander 1.2.1-1
    ErrorHander 1.2.1-2
    ErrorHander 1.2.1-3 should be used.
    background is that i want to have a mechanism for referencing versions but do not want to change each hotfix-build of my partnerlink. i also don't want to use the default version to be aware of changes in the interface of my partnerlink. and i don't want to overwrite versions because of loosing the instance-flow and the auditing.
    so it should be a mix of hard-referencing version and defaulting the build-number inside of the version.

    I've played with the wsdlRuntimeLocation a bit and I'm skeptical that you'll be able to do pattern matching.
    You might try to manipulate the property itself with an assign. There is such a thread in the forum on doing just that.

  • RejectedMessageHandlers property, can we use it 2 times in bpel.xml file

    hi'
    I have a XML file to read, if the file is incorrect then I am calling another BPEL process to catch the error by the below code
    inside the bpel.xml file
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="TestFileRead" src="TestFileRead.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="ReadFile">
    <property name="wsdlLocation">ReadFile.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    <activationAgents>
    <activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="ReadFile">
    <property name="portType">Read_ptt</property>
    *<property name="rejectedMessageHandlers">bpel://default|GetRejectedMessageBPEL|initiate|payload</property>*
    *<property name="rejectedMessageHandlers">file:///abc/test/fail</property>*
    </activationAgent>
    </activationAgents>
    </BPELProcess>
    </BPELSuitcase>
    Now what I want to do is, I also want to move the rejected file to different directory something like this,
    *<property name="rejectedMessageHandlers">file:///abc/test/fail</property>*
    however If I put both the property inside the bpel.xml file then only one is working which is the later one i.e. it simply ignores the first one. My requirement is, I also want to move the rejected file to different directory, please tell me how this can be achieved, where I want to move the error file to other directory and pass the error details to other BPEL process.
    thanks
    Yatan

    If that is the case...
    do what you are doing in second BPEL in first BPEL catch block and use the property to move the file to folder.
    Ohhhh... Sorry.... It will not go to catch right....
    Regards
    PavanKumar.M
    Edited by: pavan4s on Sep 2, 2010 12:25 AM

  • Fault Bindings using BPEL.xml

    Hi
    I have a peculiar problem with fault bindings. I have a webservice from target application hosting two different operations. I need to have the fault policy being applied to one operation and the other operation should not have any fault policy defined on it.
    I tried in the following way.
    Approach 1. In Fault Bindings.xml i have added the entry for the operation for which policy needs to be applied.
    This is working fine as expected.
    Approach 2. I have added the entries in bpel.xml and fault-bindings does not contain any entries related to this operation. In this approach the problem am facing is for both the operations the policy is getting applied.
    I need to go with the second option as all my bpel processes have fault policies at the bpel level instead of domain level.
    Can any one give me some clue on this
    Thanks
    Vamsi

    Entries in BPEL.XML file
    <faultPolicyBindings>
    <partnerLink faultPolicy="EAIFaultPolicy"/>
    <name>BSNLUpdateCollectionStatus</name>
    <portType xmlns:CollectionProvCreateSO="http://siebel.com/asi/">CollectionProvCreateSO:BSNLUpdateCollectionStatus</portType>
    Entries in Fault Binding.xml has been removed for this
    One observation i had is both the WSDLs has same SOAP Address location but the operation names are different.
    Does this have any impact for this kind of behaviour
    Thanks
    Vamsi

  • 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

  • Some questions regarding BPEL 10g to 11g migration.

    Hi All
    I have the following queries,
    1.Is it mandatory to load xsd's , wsdl's , XREF , DVM into MDS ? or is it allright to keep them in file system ? currently we have a number of xsd's and wsdl's inside each of our 10g project > bpel subfolder. If they need to be deployed to MDS , then which files in 11g will need to be modified to use the new 'oramds:/apps/..... ' reference ?
    do they get automatically loaded into MDS when a Composite is deployed on WLS or do they have to be deployed separately using ant-sca-deploy?
    2. Should we modify fault-bindings.xml , DefaultPolicy.xml before or after upgrading the 10g project ? I understand that their references in composite.xml also need changing.
    3.
    a.Is it mandatory to modify the 10g dbadapter.rar contents (convert oc4j-ra.xml to weblogic-ra.xml ) and deploy the rar on 11g ?
    b.or can we manually create data sources,outbound connection pools> jndi factories etc and redeploy the dbadapter on 11g so that its weblogic-ra.xml gets updated with the data sources,jndi that we manually created ?
    want to know if  'a' and 'b' do the same thing ,so mutually exclusive OR both need to be done .
    same question for JMSAdapter.rar, aqadapter.rar
    4. When upgrading BPEL 10g to 11g using Jdeveloper, should all the data sources used by the project be created on Jdeveloper  ?
    5. Is it necessary to copy properties from 10g domain.xml t0 11g bpel-config.xml,soa-infra-config.xml ?
    6. Should external webservices used by BPEL be up and running , while upgrading from 10g to 11g in jdeveloper , OR only during deployment to wls? if they are needed during upgrading how to link to them from jdeveloper ?
    7. Do BPEL 11g projects needs to be deployed on WLS only as a SAR or are any other formats allowed ?
    Thanks in anticipation

    Hi,
    Please find the links where you can find the most of the answers for your questions.
    http://www.slideshare.net/oracle_imc_team/oracle-soa-suite-upgrade-10g-to-11g
    Oracle soa 10g to 11g migration
    Thaknks

  • A question about BPEL data formats

    Hi everyone,
    I am new to BPEL and have a question regarding the format of data "inside" BPEL variables. Perhaps someone can clear this up?
    When defining a variable in BPEL, I can either give it an XML Schema simple or complex type - or a "WSDL message type". I am confused with regard to the last one. A WSDL message has parts, and the parts have types themselves. These types, however, can be from an arbitrary type language. XML Schema is one possibility, but there might be others. I have two questions with regard to this:
    1) If I use some proprietary schema instead of XML Schema, can I handle data in this format in the BPEL process? I.e., can I assign "literal" data to the parts in my own format, and (if it is XML-based) manipulate it with XPath?
    2) WSDL allows the definition of styles and encodings in the concrete part. How does the conversion happen between what's on the wire (in the SOAP body) and inside the BPEL variables? I.e. when using RPC/Encoded, does the Oracle BPEL engine automatically convert everything into plain-XML-Schema-validated-XML and back or does RPC/Encoded XML show up inside the variables? What if the BPEL engine doesn't understand the concrete format?
    Thanks a lot!
    Reto

    Fabio,
    I am not sure I understood you clearly. But ODI uses the underlying technology of the target database to perform the CDC. There are several KMs for each technology that let you achieve the same.
    eg. For Oracle, a trigger based CDC is available which creates triggers on the underlying tables in the database to capture the changes.
    Also for Oracle, a Logminer based CDC is available which reads the Oracle logs to capture the changes made over to tables.

  • Display extended ascii characters as question mark in xml file

    I am creating a XML file with encoding as UTF-8. Some tag values contain some extended ascii characters. When i run the java program to create the file in windows, the extended ascii characters are display correctly. But in linux it is displaying as ?(question mark).
    i am not able to rectify this. can anyone help me....
    Its urgent
    Thanks in advance.
    Message was edited by:
    Rosy_Thomas@Java

    Probably the locale is not set for the shell you are running in. The default 'C' locale uses the ASCII encoding which defines only 128 characters. See if giving the commandexport LC_CTYPE=en_US.UTF-8before starting the program fixes the issue.

  • Newbie question: Question using BPEL as websevice

    Hi
    I have a few questions related to the usage of BPEL process and Web Services. The requirement is to build a BPEL Process, which can be configured to switch the web service call based on the customer requirement. Customer could either call our web service or third party web service to get the data. This BPEL process is called by a different application to display the data on their UI. So my questions are
    1) Can we wrap this BPEL process as a webservice, so that the calling
    application call this process as a web service.
    2) Would it be possible for the customer to configure the process to switch the
    call in the BPEL process. (default will be our webservice). Is there any examples available to do a prototype?
    3) Based on the requirement, is it the right approach?
    Any help on this is highly appreciated.

    I got the answer for quesion 1 from Tutorial 7: Invoking BPEL Processes through SOAP or Java

  • Question about binary XML

    It seems the binary XML storage can be schema based or non-schema based. What are the advantages of schema based over non-schema based? My XML doc could be very big, and I need to add/modify some elements without loading the whole XML doc in memory for performance reason, should my XML doc be schema based or not?
    create table xmlOrders(
    id number primary key,
    doc xmltype,
    xmltype column doc store as binary xml
    Thanks,
    Denny

    I read to many open questions between the lines.
    Have a read here: http://www.liberidu.com/blog/?cat=23 (skip the non binary stuff) and maybe the following will also give you some insight regarding what you are looking for:
    Encoding and validation: http://www.liberidu.com/blog/?p=332
    Some of the possibilities: http://www.liberidu.com/blog/?p=264
    Choosing a applicable storage model: http://www.liberidu.com/blog/?p=203
    There are a lot of URL's in there, pointing to the appropriate sections in the XMLDB Developers Guide (=your ultimate resource for answers)
    Definitely read Marks presentation: http://www.oracle.com/technology/tech/xml/xmldb/Current/11g%20new%20features.ppt.pdf (for binary xml see: slide 23, 24, 25)
    and...what is "big" ?
    Message was edited by:
    Marco Gralike

  • Question about blocklist.xml

    OK so I was browsing thru my AppData\Roaming\Mozilla\Firefox\Profiles\********.default
    and I acdently clicked blocklist.xml and it opened in IE would have this infected my pc i noticed it had alot of blocked urls? or emails or somthing in there.
    plz answer ASAP!

    As regards the contents of the blocklist.xml, you are safe and sound, more than you would be without it. The role of the file is to avoid trouble with questionable add-ons - Mozilla collects their source URLs on a running basis and keeps them in blocklist.xml.
    For more on the subject see:
    [[Add-ons that cause stability or security issues are put on a blocklist]]

  • Question about SAPLogonTree.xml

    Hello,
    Few questions regarding the SAP Logon Pad version identification at file level (need to findout the patch level from within any SAP GUI related file).
    1) Within the SAPLogonTree.xml file, the string 7100.1.6.1050 represents
    7100 - SAPGUI 7.20
    1 - Compilation level
    6 - Patch level 6
    1050 - Build number
    Question:
    1) Does the SAPLogonTree.xml file gets updated itself whenever we update the SAP Logon Pad patch level?
    2) Is there any DOS command to findout the SAP LogonPad patch level in Windows PC?
    3) Any registry key available within Windows PC which could help in identifying the GUI patch level?
    Looking forward to expert advice.
    Thanks.

    1) Does the SAPLogonTree.xml file gets updated itself whenever we update the SAP Logon Pad patch level?
    I cannot answer this because we use a central login server which provides the necessary login infomation. Therefore I dont update the file everytime a patch goes live an the saplogontree.xml shows the "old" version which is incorrect. I guess if you use local configuration the file is updated everytime you patch your GUI but cant guarantee.
    2) Is there any DOS command to findout the SAP LogonPad patch level in Windows PC?
    No.
    3) Any registry key available within Windows PC which could help in identifying the GUI patch level?
    No.
    You can instead write a program which reads the GUI version and the patch level every time a user logs into the system. As given in this thread, it works perfectly for us: Get GUI version *and* PL of currently logged in users
    Hope this helped.
    Kind regards,
    Jann

Maybe you are looking for

  • I poofed away my address bar and can't get it back

    I was trying to get a URL for an image this morning, but for some reason couldn't drag the picture up to my address bar. Everything just kept highlighting instead. This was frustrating, so I tried "right" clicking and saving the image address, which

  • Slow scanning with photosmart 7520

    I am scanning a bunch of old photos for a collage.   Often you hear the scanner quickly scan the photo.  Then it gets hung up for a long time showing a partial of the photo and a box that says "scanning" and a green progress bar.  Sometimes it hangs

  • Appending to internal tables

    HI BW Experts, MONITOR. MONITOR-msgno = '005'. MONITOR-msgid = 'SDBW'. MONITOR-msgty = c_msgty_e    Above programme in 3.5 version no errors has came while wrote in routine,   That error was coming in 7.0 version .Please give me advise,how to do it?

  • Sound check (volume leveling) not working newest ipod

    Dear Apple community, Thank you for your help with this problem. I am extremely disappointed with my new iPod. I have been using iPods for 15 years. Many years ago I solved the problem with volume leveling by using a fantastic program called iVolume.

  • "Unable to unprepare application" error in weblogic 10

    Hi, I'm trying to deploy an application in weblogic 10.3.2 and am getting the following error: ####<Jun 16, 2011 10:20:17 PM GMT-00:00> <Error> <Deployer> <drh00068.com> <Server1> <Thread-1> <<WLS Kernel>> <> <> <1308262817084> <BEA-1 49250> <Unable