Hi,
I have a service that receives edidata (Data Type is String) as input. I invoke the service from an FTP client (Command line DOS for now) as follows -
- cd to the service directory
- put ;application/EDI
This invokes the service with the edidata populated. No problems there.
I want to change the edidata to an InputStream (As some of the edi data we receive could be large). So I did the following -
- Changed edidata input type to Object and Java Wrapper Type to UNKNOWN.
- In the FTP session,
a. cd to the service directory
b. put ;application/EDIstream
Here is the problem. I am getting an error in the IS as
[ISC.0076.0007W] XMLCoder decode invalid data type: wm.server.net.FTPInputStream
The pipeline with edidata (Stream) is null.
I am not sure what I am missing.
Anil