Calling AEM Forms JEE RESTful from SoapUI | Community
Skip to main content
Level 2
December 5, 2024
Solved

Calling AEM Forms JEE RESTful from SoapUI

  • December 5, 2024
  • 1 reply
  • 568 views

Using SoapUI to call an AEM JEE process using REST/JSON.   Process is enabled for REST.  

On running through SoapUI it comes back with HTTP 200...however it looks like my json variables are not being picked up in Adobe.  Using the VariableLogger in workbench shows that my expected variables are empty.  

 

JSON

{

variable: "test"

variable1: "this is a test"

}

 

Any idea how to successfully pass these to AEM?

 

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 Vijay_Katoch

Are you parsing the json data received from SOAP UI? It will not be set directly to variable in the workbench.

You need to use an Execute Script activity or another supported mechanism to parse the JSON string and set the data to your workbench variable in the process.

 

1 reply

Vijay_Katoch
Community Advisor
Vijay_KatochCommunity AdvisorAccepted solution
Community Advisor
December 10, 2024

Are you parsing the json data received from SOAP UI? It will not be set directly to variable in the workbench.

You need to use an Execute Script activity or another supported mechanism to parse the JSON string and set the data to your workbench variable in the process.

 

Level 2
December 11, 2024

No I am not parsing.  Thanks for the response!