Serializes the business object data into an external format of the specified MIME type.
Syntax
string ItoExternalForm(string mimeType);
Parameters
Return Values
A string that contains the serialized version of the business object, in the specified MIME type.
Exceptions
Notes
The ItoExternalForm() method invokes a data handler, passing it the MIME type of the serialized data. The data handler parses and converts the IBM WebSphere Business Integration Server Express and Express Plus 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 and Express Plus Software supports or a custom data handler you have written. For more information, see the Data Handler Guide.
Example
// Serialize data into html String mimeType = "text/html"); String htmldata = exampleBusObj.ItoExternalForm(mimeType);