To create a MATLAB® Production Server™ client:
Obtain the client run-time files installed in
.$MPS_INSTALL
/client
In consultation with the MATLAB programmer, agree on the MATLAB function signatures that comprise the services in the application.
Configure your system with the appropriate software for working with .NET.
Based on your requirements, decide if the client uses a static proxy or a dynamic proxy.
A static proxy uses an object implementing an interface that mirrors the deployed MATLAB functions. You provide the interface for the static proxy.
A dynamic proxy creates server requests based on the MATLAB function
name provided to the invoke()
method. You provide
the function name, the number of output arguments, and all of the
input arguments required to evaluate the functions.
Write a the .NET code to instantiate a proxy to a MATLAB Production Server instance and call the MATLAB functions.
Create a dynamic proxy for communicating with the service hosted by MATLAB Production Server software.
Declare and throw exceptions as required.
Free system resources using the close
method
of MWClient
, after making needed calls to your
application.