Expand my Community achievements bar.

SOLVED

Consuming SOAP services in AEM

Avatar

Level 4

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

1 Accepted Solution

Avatar

Correct answer by
Level 4

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.  

View solution in original post

3 Replies

Avatar

Correct answer by
Level 4

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.  

Avatar

Level 10

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

Avatar

Level 4

Thank you all for the support.