0 Replies Latest reply on Jul 6, 2014 4:42 PM by aha001

    jBPM6 how to map REST Task Service json/xml response

    aha001

      I have a process containing a REST task service (see attached) which calls a back end REST service (Java service), the service returns XML response such as

      <?xml version="1.0" encoding="UTF-8" standalone="yes"?>

      <customer>

           <firstname>Jack</firstname>

           <lastname>Lee</lastname>

           <title>Mr</title>

      </customer>

       

      Instead of getting this as a whole string, I want to map this into separate fields. Is this achievable? It will be much appreciated if you can show me how to do that. Thanks.

      i.e

      String firstname = customer.firstname;

      String lastname = customer.lastname;

      System.out.println(firstname);