Previous Topic: Using a Java (Classic Style) ProxyNext Topic: Asynchronous Processing


Synchronous Processing

The following contains the code for a synchronous process:

op=Beans.Instantiate(. . .)
...
op.addCompletionListener(. . .)
op.addExceptionListener(. . .)
...
<set up import views and communications/system attribute information>
...
op.Execute() //Perform synchronous flow
...
<check results for errors>
...
<retrieve export view data>
...

Note: If required, you can substitute ExecuteXML method for the synchronous Execute method.