Retrieve response from REST API | Community
Skip to main content
Adobe Champion
August 7, 2017
Solved

Retrieve response from REST API

  • August 7, 2017
  • 18 replies
  • 10725 views

When using an adaptive form, is it possible to retrieve the response from the rest service I'm invoking?  My adaptive form is invoking a sling servlet which then invoked my 3rd party rest api.  The rest api is returning a payload but I'm unable to access the payload when looking at the guideResultObject that is returned.  Any pointers would be helpful.

Thanks!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by smacdonald2008

So in the object that is returned - you are not seeing the data correct?

"It doesn't have the response in the data property"

Looks like a bug - i recommend opening a bug and report this. ANother apprach you can take is to write the form as an HTL component and then use WCMUsePojo and call the service. Then you can update your form fields with the returned data set.

18 replies

smacdonald2008
August 8, 2017

The only thing i can think of for this is to write a custom component for use in an Adaptive form. Then invoke the 3rd party Restful service and get back the data and write the results to the form.

We have a use case for AEM and 3rd party Restful service - however - its using HTL component -not an adaptive form.

Scott's Digital Community: Creating an AEM HTML Template Language Component that displays data from a Restful Web Servic…

Adobe Champion
August 8, 2017

Scott,


Do Adaptive Forms not support retrieving the rest response in the guideResultObject?  Also, I'm using AEM 6.2.

smacdonald2008
August 8, 2017

I have never tried that use case with an Adaptive form. I am asking other ppl within Adobe if this is the case.

Adobe Employee
August 8, 2017

If you are using 6.3 then you can use the new data feature to build this into your form. However, if you're on 6.2 or are just more familiar with JavaScript, then simply write an AJAX call in a client library (or in the rules but not ideal) to make the call for you. Then use the AF API's to update the form and form data that you need from your JSON response.

smacdonald2008
August 8, 2017
Adobe Champion
August 8, 2017

Thanks Scott but that link looks like it's for invoking SOAP based services where as I'm invoking a REST based service.

Adobe Employee
August 8, 2017

What format is your REST service returning and what are you trying to pre-fill? (then can provide appropriate sample)

Adobe Champion
August 8, 2017

lesutton1,

We are on 6.2  I'm using the submit button click rules and I have the following.  Shouldn't my REST service response come back in the guideResultObject? It's null when I try logging it.

window.guideBridge.submit({

    validate: true,

    error : function (guideResultObject) {

        handleErrorSubmission("There was an error.  Please try again later.");

    },

    success : function (guideResultObject) {

        console.log('guideResultObject: ' + guideResultObject);

        console.dir('guideResultObject: ' + guideResultObject);

        var msg = guideResultObject.getNextMessage();

        while (msg != null) {

            console.error(msg.message);

            msg = guideResultObject.getNextMessage();

        }

    }

})

Adobe Employee
August 8, 2017

it should contain any error messages but is your rest call taking place server side? i.e.: you're populating the response object and looking for those results in your form?

Adobe Champion
August 8, 2017

My REST service is returning JSON.  Here is the response I'm logging in my Sling Servlet.  I want to be able to acccess the leadId in the success callback handler.

{"status":"OK","encoding":null,"data":{"leadId":"3dc2eb71-d40a-4bdd-a16d-510636098b1d"},"apiErrorList":null}