Consuming SOAP services in AEM | Community
Skip to main content
Level 3
July 10, 2016
Solved

Consuming SOAP services in AEM

  • July 10, 2016
  • 3 replies
  • 3208 views

Hi 

I have successfully tested consuming a soap web service by following the helpx website. https://helpx.adobe.com/experience-manager/using/creating-cxf-bundles-consume-web.html. Here the webservices are open to public

We have a requirement to implement the same approach using SOAP webservices. This data will be exposed as a web service with 'Data Power' encryption.Could anyone please let me know if there will be any configurations required at AEM level to consume these secured web services.

Thanks 

Paul

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 stevec2515680

This requirement would be done at the Java level. So in your Java proxy classes, ensure you have the correct application logic to consume the encrypted SOAP call. There is no configuration setting on the AEM side. All the logic has to be within Java app logic.  

3 replies

stevec2515680Accepted solution
Level 4
July 10, 2016

This requirement would be done at the Java level. So in your Java proxy classes, ensure you have the correct application logic to consume the encrypted SOAP call. There is no configuration setting on the AEM side. All the logic has to be within Java app logic.  

Lokesh_Shivalingaiah
Level 10
July 10, 2016

As Steve mentioned, there is no specific configs for SOAP web services. You can write bundles to consume similar to the java app.

Level 3
July 10, 2016

Thank you all for the support.