* The ArrayTest server.
*/
public class Server {
public static void init_server (org.omg.CORBA.ORB orb) {
_tie_ArrayTest ArrayTestImpl = null;
ArrayTestImpl = new _tie_ArrayTest(new ArrayTestImplementation());
FileOutputStream ior_file;
try {ior_file = new FileOutputStream("C:\\Temp\\ArrayTest.ior");
String ior_string = orb.object_to_string(ArrayTestImpl);
PrintStream print_stream = new PrintStream(ior_file);
print_stream.print(ior_string);