0

Is there a way to create a proxy or API with WSO2-ESB which calls a service secured with HTTP Digest authentication ?

I can't find anything on the documentation.
Thank you for your help.

Community
  • 1
  • 1
Salah
  • 501
  • 1
  • 5
  • 18

1 Answers1

1

WSO2 ESB supports authentication based on Basic authentication credentials Out of the bo. However WSO2 ESB do not provide support for "HTTP digest Authentication".

As a solution you can implementation for "HTTP digest authentication" then you can plug them in to synapse config as Class Mediator

Vanji
  • 1,696
  • 14
  • 23
  • Thank you Vanji, From what I understand, Class Mediator only deals with query headers and body, so what should I do in that custom class ? Do I need to query the digest-secured service in that class in order to build the correct header ? – Salah Jul 24 '15 at 08:30
  • Yes, by class mediator you are intersecting the mediation flow and make use of the existing payload and headers to perform your "HTTP digest authentication" logic. – Vanji Jul 24 '15 at 17:20