Previous Topic: Using a .NET ProxyNext Topic: Asynchronous Processing


Synchronous Processing

The following contains the code for a synchronous process:

...
<method-name>Import importView = new <method-name>Import();
<method-name>Export exportView;
<method-name> proxy = new <method-name>();
...
<set up importView properties as desired>
...
exportView = proxy.Execute(importView); //Perform synchronous flow
...
<retrieve exportView data>
...

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