Previous Topic: Using a COM ProxyNext Topic: Asynchronous Processing


Synchronous Processing

The following is the code for a synchronous process:

...
op=CoCreateInstance(. . .)
...
<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 the ExecuteXML method for the synchronous Execute method.