FME Server .NET API

IFMETransformationManager.TransactJob Method (IFMETransformationRequest)

Perform a synchronous translation transaction with the connected FME Server. This method will block until results are delivered. A free port will be dynamically allocated for result delivery. If you need to specify a particular port to be bound, specify requesterResultPort as a directive in the translation request.

[Visual Basic]
Function TransactJob( _
   ByVal request As Safe.FMEServer.API.IFMETransformationRequest _
) As Safe.FMEServer.API.IFMETransformationResult
[C#]
IFMETransformationResult TransactJob(
   IFMETransformationRequest request
);

Parameters

request
A valid FME translation request.

Return Value

Returns the translation result for this request.

Exceptions

Exception TypeCondition
Safe.FMEServer.API.FMEServerExceptionInternal FME Server exception occurred, or input parameter is a null reference (Nothing in Visual Basic).

See Also

IFMETransformationManager Interface | IFMETransformationManager Members | Safe.FMEServer.API Namespace | IFMETransformationManager.TransactJob Overload List