Hi all, I have created a web service for parsing a document which is taking two request parameters:
Key : “Authorization”
Value : (xyz 123456) // just an example
Key : “file”
Value : (Base64 data)
When I test it within the Web Service section by providing both the parameters, it is working fine and giving the expected output in json format.
Now, when I use the same web service in Business Process and pass the parameters correctly by storing it in process parameters, the process always gives an error on that web service element.
Error is as follows:
Terrasoft.Common.UnsupportedTypeException: Type "System.Collections.Generic.List`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" is not supported.
I am getting base64 data correctly from Business Process. Please help regarding this error.