3 Replies Latest reply on Nov 10, 2005 10:40 AM by jworkflow

    advice on my issue please...

    jworkflow

      Hi friends,

      I have a requirement for a service orchestration.
      I have a request in this form:
      <?xml version="1.0" encoding="UTF-8"?>
      <msg xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xxx.xsd">

      Text
      Purchase
      rewrewrwe
      Text
      Text
      Text



      Text
      Text
      Text
      Text
      Text




      Once I get this request, I need to do 4 actions:
      1. Get the Acc ID
      2. Add a work order
      3. Get the address
      4. consolidate my response.

      I need to do this workflow in a configuration file. I.e when my workflow changes, i dont need to change the implementation code, but just only the configuration file.

      Can you pl help me, how I can achieve this using the jBPM. I am a newbie.

      thanks a lot for your advices.


        • 1. Re: advice on my issue please...
          kukeltje

          please post your code in bracketed code tags, otherewise we cannot see it.

          • 2. Re: advice on my issue please...
            jworkflow

            Sorry about that!!
            This is my request!!

            [ <?xml version="1.0" encoding="UTF-8"?>
            <!--Sample XML file generated by XMLSPY v5 rel. 3 U (http://www.xmlspy.com)-->
            <msg xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xxxx.xsd">

            Text
            Purchase
            ewrtewr
            Text
            Text
            Text



            Text
            Text
            Text
            Text
            Text



            ]

            • 3. Re: advice on my issue please...
              jworkflow

              Apologies again!!!

              <?xml version="1.0" encoding="UTF-8"?>
              <!--Sample XML file generated by XMLSPY v5 rel. 3 U (http://www.xmlspy.com)-->
              <msg xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="Request.xsd">
               <header>
               <SchemaVersion>Text</SchemaVersion>
               <Action>Purchase</Action>
               <OrigSystemID>aaaaaaaaa</OrigSystemID>
               <TransactionPrioirty>Text</TransactionPrioirty>
               <EchoBack>Text</EchoBack>
               <TransactionID>Text</TransactionID>
               </header>
               <body>
               <Request>
               <PurchaserID>Text</PurchaserID>
               <Address>Text</Address>
               <EventID>Text</EventID>
               <Price>Text</Price>
               <Title>Text</Title>
               </Request>
               </body>
              </msg>