Create an endpoint from a wsdl

Hello


We have the need in the project to create a service (not a process model) with a wsdl passed to us by the customer. So that we then pass the end-point and invoke us.
Is it possible from Appian to generate an end-point from a wsdl?


Thank you
Alex ACG

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to alexc0007

    A typical SOAP service exposes its WSDL when you add a "?WSDL" to the endpoint URL. For this to work, you just need to check the first request parameter and create a proper HttpResponse that includes the right headers and the XML.

    The manual part: The actual API call will receive some XML sent by the client. You need to parse the XML, run your logic and return an appropriate XML response.

Children