string ItoExternalForm(string mimeType);
A string that contains the serialized version of the business object, in the specified MIME type.
The ItoExternalForm() method invokes a data handler, passing it the MIME type of the serialized data. The data handler parses and converts the InterChange Server Express business object into serialized data of the requested MIME type, returning the serialized data to the access client. The format of the serialized data must be of a type that IBM WebSphere Business Integration Server Express software supports or a custom data handler you have written. For more information, see the Data Handler Guide.
// Serialize data into html String mimeType = "text/html"); String htmldata = exampleBusObj.ItoExternalForm(mimeType);