FME Server .NET API

IFMEServerSession.CreateTransformationRequest Method (String, String, String)

Creates a new IFMETransformationRequest. No validation is performed on this method's parameters; thus, if the specified keyword or path does not exist, this will not be discovered until the user attempts to run the transformation.

[Visual Basic]
Function CreateTransformationRequest( _
   ByVal subsectionName As String, _
   ByVal repositoryName As String, _
   ByVal workspaceName As String _
) As Safe.FMEServer.API.IFMETransformationRequest
[C#]
IFMETransformationRequest CreateTransformationRequest(
   string subsectionName,
   string repositoryName,
   string workspaceName
);

Parameters

subsectionName
The name of an FME Server subsection to be used for this request.
repositoryName
The name of the repository in which the workspace resides.
workspaceName
The name, including the ".fmw" extension, of the workspace to be used. The name must not include a filepath. Examples: "roads.fmw" and "reduceAllParcels.fmw". The workspace must reside in the specified repository.

Return Value

Returns a new IFMETransformationRequest instance.

See Also

IFMEServerSession Interface | IFMEServerSession Members | Safe.FMEServer.API Namespace | IFMEServerSession.CreateTransformationRequest Overload List