We have a service on our DMZ instance for handling inbound FTP. After upgrading to 8.2 the service no longer has the inbound stream and we get the error Error:
[ISS.0086.9167] stream is a required field
Error Type com.wm.app.b2b.server.ServiceException
Service pub.io:streamToBytes
The service is fairly straight forward but for whatever reason the ffdata stream does not appear to be there. Was there some change in the 8.2 version in the way that the data stream is passed to the service?
Hi,
The input stream available in pipeline differs based on content handler. If content type is âapplication/x-wmflatfileâ, stream will be available with the key âffdataâ. If it is âtext/plainâ, stream will be in âcontentStreamâ. As a work around, you could add a map step in the very first step which can map to a stream object with input either from ffdata or contentStream whichever is not null.