Blue prism integration

Hi All,

 

I am trying to integrate blue prism from Appian the process is working fine in blueprism. but when I try to call from Appian I am getting below soapfault:

[statusLine=HTTP/1.1 200 OK, statusCode=200, headers=[object Object], contentType=text/xml; charset=utf-8, body=<?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><soap:Fault><soap:faultstring>Couldn't process soap inputs - Could not process parameter OrderNumber</soap:faultstring></soap:Fault></soap:Body></soap:Envelope>]

Any help would be appreciated.

  Discussion posts and replies are publicly visible

Parents Reply
  • Hi Sunny -

    You got an HTTP 200 so the call is good, but the body is bad.

    I wonder if the use of fn!toXML() is adding unnecessary complexity to your use case.

    See the attached screens.  If you use fn!toXML() without stripping out certain tags, there's going to be extra content in the body that I don't think you want.

    Perhaps simple string manipulation will get this working, (for starters).

    instead of this:



    try this:


    (obviously this is only the partial string, but I think you get the idea.)

    I hope that helps!

Children